a3d9bc215e53f696664feb3d5e86b4540ce9cab4,plantcv/plantcv/roi/roi_methods.py,,multi,#,210

Before Change


            x = coord[i][0]
            rois.append(circle(img=img, x=x, y=y, r=radius))
            // Draw the circle on the binary image
            cv2.circle(all_roi_img, (x, y), radius, 255, -1)
            circle_img = cv2.circle(bin_img, (x, y), radius, 255, -1)
            overlap_img = overlap_img + circle_img
            //  Make a list of contours and hierarchies
            roi_contour.append(cv2.findContours(np.copy(all_roi_img), cv2.RETR_EXTERNAL,

After Change


            x = coord[i][0]
            rois.append(circle(img=img, x=x, y=y, r=radius))
            // Draw the circle on the binary image
            all_roi_img = cv2.circle(all_roi_img, (x, y), radius, 255, -1)
            circle_img = cv2.circle(bin_img, (x, y), radius, 255, -1)
            overlap_img = overlap_img + circle_img
            //  Make a list of contours and hierarchies
            roi_contour.append(cv2.findContours(np.copy(all_roi_img), cv2.RETR_EXTERNAL,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: danforthcenter/plantcv
Commit Name: a3d9bc215e53f696664feb3d5e86b4540ce9cab4
Time: 2019-10-30
Author: haleyschuhl@gmail.com
File Name: plantcv/plantcv/roi/roi_methods.py
Class Name:
Method Name: multi


Project Name: danforthcenter/plantcv
Commit Name: c54ea80df914210df4ea434df3219485e44c99d2
Time: 2019-10-30
Author: haleyschuhl@gmail.com
File Name: plantcv/plantcv/roi/roi_methods.py
Class Name:
Method Name: multi


Project Name: danforthcenter/plantcv
Commit Name: c1f3427e05a40aef725c4e1edbe389524b4c3a21
Time: 2019-10-30
Author: haleyschuhl@gmail.com
File Name: plantcv/plantcv/roi/roi_methods.py
Class Name:
Method Name: multi