Skip to content

trying to crop the original part of the image for the excersice... #289

Open
@mv-fm

Description

@mv-fm

import cv2
import numpy as np
from matplotlib import pyplot as plt

img = cv2.imread('../../pictures/threshold.jpg')
img = img[17:159,3:147]
cv2.namedWindow('image',cv2.WINDOW_NORMAL)
cv2.imshow('image',img)

MY PROBLEM STARTS AT THIS POINT OF THE CODE (SOMETHING DOES NOT GO RIGHT WITH THE
CV2.WAITKEY(0) AND THE K==115 OR K==ORD('S') .

_**while(1):
k = cv2.waitKey(0) & 0xFF

if k == 27 :          #wait ESC key to exit
    break
elif k == 115 : #wait for 's' key to save and exit
    cv2.imwrite('../../pictures/threshold.jpg',img)
    break

cv2.destroyWindow('image')**_

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions