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
General configuration for OpenCV 4.3.0 ===================================== | |
Version control: unknown | |
Extra modules: | |
Location (extra): /home/ssunil/mywork/install_from_web/opencv/opencv_contrib-4.3.0/modules | |
Version control (extra): unknown | |
Platform: | |
Timestamp: 2020-05-02T17:27:26Z | |
Host: Linux 4.9.140-tegra aarch64 |
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
mport cv2 as cv | |
import time | |
rootdir = '/home/ssunil/mywork/ml_opencv_code/' | |
tfmodeldir = "model_configs/ssd_mobilenet_v2_coco_2018_03_29/" | |
tfgraph = "frozen_inference_graph.pb" | |
tfconfig = "ssd_mobilenet_v2_coco_2018_03_29.pbtxt" |
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
handleChange = event => { | |
event.persist(); | |
this.setState({ | |
searchterm: event.target.value | |
}); | |
}; |