Bijan Krishna Paul
VILL- DEBANDI, AMTA, HOWRAH PIN-711410 Phone-9836357266
Total Pageviews
Thursday, August 13, 2026
3. Get number of pixel, dimension of image
import cv2
img = cv2.imread('im1.jpg')
cv2.imshow("Cute Kitens", img)
print("Image Properties")
print("- Number of Pixels: " + str(img.size))
print("- Shape/Dimensions: " + str(img.shape))
OUTPUT:
Image Properties - Number of Pixels: 489402 - Shape/Dimensions: (318, 513, 3)
2. image input and display (color)
import cv2
img = cv2.imread("im.jpeg", cv2.IMREAD_COLOR)
cv2.imshow("Cute Kitens", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
output:
1. image input and display
CODE :
import cv2
img = cv2.imread("im.jpeg")
cv2.imshow("Cute Kitens", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
Monday, August 10, 2026
Monday, August 3, 2026
Image Processing using Python OpenCV
1. Image input and display. CLICK
2. Image input and display (color). CLICK
3. Get number of pixel, dimension of image CLICK
4. image input and display (gray scale) CLICK
5. OpenCV image reading and save. CLICK
6. OpenCV image reading and writing. CLICK
7. Image Thresholding using OpenCV (or Image Binarization). CLICK
8. Image Thresholding using OpenCV (or Image Binarization). CLICK
Friday, July 17, 2026
CHAPTER 2 QUIZ CLASS VI
Chapter 2: File Management & Organisation of Data
Class Evaluation Quiz
📋 Quiz Performance Summary
Student Name:
Roll Number:
Class & Section:
Review the comprehensive key verification guides appended to each question below.
QUIZ CHAPTER 1 CLASS VI
Chapter 1: Types of Computers and Languages
Class Interactive Assessment
Quiz Results Processed
Student Name:
Roll Code:
Target Grade Class:
Your Final Computational Score:
Scroll down to review the fully corrected answer key directly below.








