浩瀚猫
浩瀚猫
May also work if reading the last page of pyramid geotiff.
> You are changing the "ms.photos.label". However, when using the `roi.back2raw()` function, the parameter passed is "ms.photos.item_label", which is a dictionary, different from "ms.photos.label" So to change the labels correctly,...
```python def to_open3d(idp_pcd): final_pcd = o3d.geometry.PointCloud() final_pcd.points = o3d.utility.Vector3dVector(idp_pcd._points) color_np = idp_pcd.colors/255 # color_np = np.insert(color_np, 2, 0.5, axis=1) # print(color_np) final_pcd.colors = o3d.utility.Vector3dVector(color_np) return final_pcd ```
Already implemented, but not showing in the documents ```python >>> ms id label ---- ------- -> 0 Chunk 1 ```
This is a problem happens at reading the raw image but could not find it using the metashape project recorded image path. In the metashape project files, `project.files/0/0/frames.zip/docs.xml` There is...
> Suppose the size of the image is 1600_900, and the coordinates of a vertex in the ROI are (1200, 1000). The existing method seems to change the vertex coordinates...
Provide a folder changing function: ```python # how to change the demo detaset ms = idp.Metashape( fb.metashape.project, chunk_id=0, raw_img_folder=fb.data_dir / "Hidden_Little_03_24_2022") # the string like 'c:/path/to/new/folder/' should also work ```...
如果词库过多,在循环遍历添加辅助码的时候可能存在性能问题。当然也有可能是nightly版本修改了什么逻辑导致的
@xiaoyixiao369 windows好像有个功能,记住不同程序用不同的输入法,把那个功能关了看看呢?
主要考虑到需要排序,就得吧输入法的候选全部遍历一遍,如果词库非常多,遍历起来就时间很长会很卡 或许可以优化的点,如果当前词库候选超过某个值,则添加辅码仅在输入 `;` 符号后触发,这样应该只会在输入那个符号卡一下,而不是会影响全程的打字体验