├── .fossa.yml ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── background_3x3.png ├── background_wafer.png ├── clocignore.txt ├── cross_stitcher.py ├── dark_spot_mapper.py ├── dark_spot_mapper2.py ├── devices ├── __init__.py ├── camera.py ├── camera_ni.py ├── camera_opencv.py ├── simplemotion.py ├── stage.py ├── stage_dummy.py ├── stage_simplemotion.py └── stagecontrol2.py ├── dsm_exceptions.py ├── dsm_gui.py ├── lib ├── 99-simplemotion.rules ├── build │ ├── libdc1394_windows │ │ ├── Dockerfile │ │ └── build_libdc1394_windows.sh │ ├── opencv_linux │ │ └── Dockerfile │ ├── opencv_rpi │ │ └── Dockerfile │ ├── opencv_windows │ │ ├── Dockerfile │ │ ├── Install.cmd │ │ └── patch_opencv.txt │ ├── simplemotion_arm32 │ │ └── Dockerfile │ ├── simplemotion_arm64 │ │ └── Dockerfile │ ├── simplemotion_linux │ │ └── Dockerfile │ └── simplemotion_windows │ │ └── Dockerfile ├── simplemotion.dll ├── simplemotion64.dll ├── simplemotion64.so ├── simplemotion_arm32.so └── simplemotion_arm64.so ├── logs └── .gitkeep ├── mount_tuni.py ├── pylintrc ├── pyqtgraph_examples.py ├── requirements.txt ├── run.ps1 ├── run.sh ├── stagecontrol.py └── tests ├── test_camera_ni.py ├── test_camera_opencv.py └── test_simplemotion.py /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | *.pyc 4 | logs/*.txt 5 | venv 6 | .directory 7 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/README.md -------------------------------------------------------------------------------- /background_3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/background_3x3.png -------------------------------------------------------------------------------- /background_wafer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/background_wafer.png -------------------------------------------------------------------------------- /clocignore.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cross_stitcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/cross_stitcher.py -------------------------------------------------------------------------------- /dark_spot_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/dark_spot_mapper.py -------------------------------------------------------------------------------- /dark_spot_mapper2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/dark_spot_mapper2.py -------------------------------------------------------------------------------- /devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/camera.py -------------------------------------------------------------------------------- /devices/camera_ni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/camera_ni.py -------------------------------------------------------------------------------- /devices/camera_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/camera_opencv.py -------------------------------------------------------------------------------- /devices/simplemotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/simplemotion.py -------------------------------------------------------------------------------- /devices/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/stage.py -------------------------------------------------------------------------------- /devices/stage_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/stage_dummy.py -------------------------------------------------------------------------------- /devices/stage_simplemotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/stage_simplemotion.py -------------------------------------------------------------------------------- /devices/stagecontrol2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/devices/stagecontrol2.py -------------------------------------------------------------------------------- /dsm_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/dsm_exceptions.py -------------------------------------------------------------------------------- /dsm_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/dsm_gui.py -------------------------------------------------------------------------------- /lib/99-simplemotion.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/99-simplemotion.rules -------------------------------------------------------------------------------- /lib/build/libdc1394_windows/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/libdc1394_windows/Dockerfile -------------------------------------------------------------------------------- /lib/build/libdc1394_windows/build_libdc1394_windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/libdc1394_windows/build_libdc1394_windows.sh -------------------------------------------------------------------------------- /lib/build/opencv_linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/opencv_linux/Dockerfile -------------------------------------------------------------------------------- /lib/build/opencv_rpi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/opencv_rpi/Dockerfile -------------------------------------------------------------------------------- /lib/build/opencv_windows/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/opencv_windows/Dockerfile -------------------------------------------------------------------------------- /lib/build/opencv_windows/Install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/opencv_windows/Install.cmd -------------------------------------------------------------------------------- /lib/build/opencv_windows/patch_opencv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/opencv_windows/patch_opencv.txt -------------------------------------------------------------------------------- /lib/build/simplemotion_arm32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/simplemotion_arm32/Dockerfile -------------------------------------------------------------------------------- /lib/build/simplemotion_arm64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/simplemotion_arm64/Dockerfile -------------------------------------------------------------------------------- /lib/build/simplemotion_linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/simplemotion_linux/Dockerfile -------------------------------------------------------------------------------- /lib/build/simplemotion_windows/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/build/simplemotion_windows/Dockerfile -------------------------------------------------------------------------------- /lib/simplemotion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/simplemotion.dll -------------------------------------------------------------------------------- /lib/simplemotion64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/simplemotion64.dll -------------------------------------------------------------------------------- /lib/simplemotion64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/simplemotion64.so -------------------------------------------------------------------------------- /lib/simplemotion_arm32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/simplemotion_arm32.so -------------------------------------------------------------------------------- /lib/simplemotion_arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/lib/simplemotion_arm64.so -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mount_tuni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/mount_tuni.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/pylintrc -------------------------------------------------------------------------------- /pyqtgraph_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/pyqtgraph_examples.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- 1 | ./venv/Scripts/activate.ps1 2 | python .\dark_spot_mapper.py 3 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/run.sh -------------------------------------------------------------------------------- /stagecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/stagecontrol.py -------------------------------------------------------------------------------- /tests/test_camera_ni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/tests/test_camera_ni.py -------------------------------------------------------------------------------- /tests/test_camera_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/tests/test_camera_opencv.py -------------------------------------------------------------------------------- /tests/test_simplemotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orc-tuni/dark-spot-mapper/HEAD/tests/test_simplemotion.py --------------------------------------------------------------------------------