- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Yuri_Zhavoronkov,
Can I know the API you use to load the images?
In Intel® Developer Cloud for the Edge, you can use MatplotLib imshow() to load the images.
Further information can be obtained from OpenCV_Primer_Tutorial under the tutorial section.
Sample API to use MatplotLib imshow();
import cv2
import matplotlib.pyplot as plt
plt.figure() # create new image for display
plt.title('Loading Image')
imageRGB = cv2.cvtColor(imageBGR,cv2.COLOR_BGR2RGB)
plt.imshow(imageRGB)
Hope this information help
Thank you
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Yuri_Zhavoronkov,
Can I know the API you use to load the images?
In Intel® Developer Cloud for the Edge, you can use MatplotLib imshow() to load the images.
Further information can be obtained from OpenCV_Primer_Tutorial under the tutorial section.
Sample API to use MatplotLib imshow();
import cv2
import matplotlib.pyplot as plt
plt.figure() # create new image for display
plt.title('Loading Image')
imageRGB = cv2.cvtColor(imageBGR,cv2.COLOR_BGR2RGB)
plt.imshow(imageRGB)
Hope this information help
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Yuri_Zhavoronkov
This thread will no longer be monitored since we have provided a solution. Please submit a new question if you need any additional information from Intel.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page