浩瀚猫

Results 28 comments of 浩瀚猫

![image](https://user-images.githubusercontent.com/19968935/83869006-6d419380-a75e-11ea-9d07-9df24c3d0fa3.png) And also some interesting bugs, use `A_{B}` to replace `A_B` one by one: original: $$\mathbf{x}_0, \mathbf{x}_1 = A \mathbf{x}_0, \mathbf{x}_2 = A \mathbf{x}_1$$ replace 1 works $$\mathbf{x}_{0}, \mathbf{x}_1 =...

> What happens when you do the following? > > ``` > git clone https://github.com/wkentaro/labelme > labelme labelme/examples/semantic_segmentation/data_annotated/ > ``` Cloning to local, `pip install -r requirements-dev.txt`, and then `python...

```python (labelme) E:\Github\labelme>pip install pyqt5 Requirement already satisfied: pyqt5 in c:\programdata\miniconda3\envs\labelme\lib\site-packages\pyqt5-5.15.7-py3.9-win-amd64.egg (5.15.7) Requirement already satisfied: PyQt5-sip=12.11 in c:\programdata\miniconda3\envs\labelme\lib\site-packages\pyqt5_sip-12.11.0-py3.9-win-amd64.egg (from pyqt5) (12.11.0) Requirement already satisfied: PyQt5-Qt5>=5.15.0 in c:\programdata\miniconda3\envs\labelme\lib\site-packages\pyqt5_qt5-5.15.2-py3.9-win-amd64.egg (from pyqt5) (5.15.2)...

**Please skip this and check the next comment** # create new conda env [failed] ```bash E:\Github\labelme> conda create -n lbtest python=3 qt pyqt pyside2 -y Collecting package metadata (current_repodata.json): done...

Succeed by the following: ```bash (labelme) C:\Users\CREST>conda create -c conda-forge -n lbtest python=3 qt pyqt pyside2 (labelme) C:\Users\CREST>conda activate lbtest # cd to path (lbtest) E:\Github\labelme>python setup.py build running build...

Successfully on Python 3.7 ![image](https://user-images.githubusercontent.com/19968935/176337259-23137c8d-c8ad-4c0a-bfd4-9182173dfc85.png) The file list works for your examples (**which json and img put together**). ![image](https://user-images.githubusercontent.com/19968935/176338003-f8de0d9a-3791-4cba-821c-ce5fc973ff42.png) However, for our applications, which json and image at different folders,...

It does not work (because scanAllImages() filters image filename to processing list first, folders with only json labels will return an empty processing list). ![image](https://user-images.githubusercontent.com/19968935/176376438-f774b74d-50a3-4a85-8ac4-9c151877f9f2.png) I have fixed that by...

> You also need to specify the directory of images. something like below: > > ``` > labelme JpegImageFiles/ --output AnnotatedJsonFiles/ > ``` Thank you for sharing this point, this...

The Error log to open this image: ```python Traceback (most recent call last): File "C:\ProgramData\Miniconda3\envs\labelme37\lib\site-packages\PIL\JpegImagePlugin.py", line 630, in _save rawmode = RAWMODE[im.mode] KeyError: 'P' The above exception was the direct...

> seems `qt` is not installed properly. try `conda install qt` or re-create env with `conda create -n new_env python=3 qt pyqt pyside2 -y` In case someone meet the conda...