May-09-2017, 07:40 PM
(This post was last modified: May-09-2017, 07:50 PM by brizflysdrones.)
Needing to make a this os call happen stuck on how to do it.
print fname+ " %d Plants Detected" % len(keypoints)
need to preform the following
exiftool -description="%d" fname
print fname+ " %d Plants Detected" % len(keypoints)
need to preform the following
exiftool -description="%d" fname
# Detect.
reversemask=255-mask
keypoints = detector.detect(reversemask)
if keypoints:
print fname+ " %d Detected" % len(keypoints)
call([exiftool -description="%d" fname])
else:
print "No Found"
