opencv
디스플레이 이미지 OpenCV
수색…
이미지의 기본 읽기 및 표시
import cv2
image_path= #put your image path here
#use imread() function to read image data to variable img.
img = cv2.imread(image_path)
#display image data in a new window with title 'I am an image display window'
cv2.imshow('I am an image display window',img)
#wait until user hits any key on keyboard
cv2.waitKey(0)
#close any windows opened by opencv
cv2.destroyAllWindows()
화면의 표시 창의 크기를 제어하려면 cv2.imshow 명령 전에 다음 명령을 추가하십시오.
window_width=800 #size of the display window on the screen
window_height=600
#open an empty window with a title.
#The flag cv2.WINDOW_NORMAL allows the window to be scaleable.
cv2.namedWindow('I am an image display window', cv2.WINDOW_NORMAL)
#scale the image display window to desired size
cv2.resizeWindow('I am an image display window', window_width, window_height)
자세한 내용은 openCV 문서 를 참조하십시오.
IP 카메라에서 MJPEG 읽기
import cv2
import numpy as np
import urllib
stream=urllib.urlopen('http://96.10.1.168/mjpg/video.mjpg')
bytes=''
while True:
bytes+=stream.read(1024)
a = bytes.find('\xff\xd8') # JPEG start
b = bytes.find('\xff\xd9') # JPEG end
if a!=-1 and b!=-1:
jpg = bytes[a:b+2] # actual image
bytes= bytes[b+2:] # other informations
# decode to colored image ( another option is cv2.IMREAD_GRAYSCALE )
img = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8),cv2.IMREAD_COLOR)
cv2.imshow('Window name',img) # display image while receiving data
if cv2.waitKey(1) ==27: # if user hit esc
exit(0) # exit program
모든 JPEG
시작 0xff 0xd8
과 함께 끝 0xff 0xd9
. 그것들 사이에는 실제 이미지가 있습니다. 이 SO 응답에 대한 자세한 정보
이미지 표시 OpenCV Java
자바에서 기본 독서 이미지
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;
//Load native library
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
//Mat object used to host the image
Mat imageArray;
//Read image file from vile system
imageArray=Imgcodecs.imread("path/to/image");
OpenCV-java에는이 방법이 없기 때문에 이미지를 보려면 imshow를 사용할 수 없습니다. 대신 다음 메소드를 작성할 수 있습니다.
private static BufferedImage ConvertMat2Image(Mat imgContainer{
MatOfByte byteMatData = new MatOfByte();
//image formatting
Imgcodecs.imencode(".jpg", imgContainer,byteMatData);
// Convert to array
byte[] byteArray = byteMatData.toArray();
BufferedImage img= null;
try {
InputStream in = new ByteArrayInputStream(byteArray);
//load image
img= = ImageIO.read(in);
} catch (Exception e) {
e.printStackTrace();
return null;
}
return img;
}
Jframe, Jlabel (jlabel 아이콘) 등에서 결과 개체를 볼 수 있습니다.
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow