This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| author : Peb Ruswono Aryan | |
| Automatic selection of ROI rectangle based on single point (assumed target center) selection on the image | |
| Automatic scale selection performed by selecting scale which maximizes laplacian of gaussian in the selected point across scales | |
| intended use : simplifying object tracking target selection, output rectangle can be used as initial target | |
| """ | |
| import os | |
| import sys | |
| import cv2 | |
| import numpy as np |