اذهب إلى المحتوى

السؤال

Recommended Posts

  • 0
نشر

يمكن جلب نصف الصورة العلوي كاتالي:

height, width, channels = image.shape
croppedImage = image[0:int(height/2), 0:width]

الوسيط الأول هو الارتفاع، نقوم بأخذه من 0 حتى نصف الارتفاع.

ثم نستخدم مكتبة مثلا openCV لرسم الهستوغرام.

import matplotlib.pyplot  as plt
import cv2 as cv

image=cv.imread("image.jpg",-1)

height, width, channels = image.shape
croppedImage = image[0:int(height/2), 0:width]

image=croppedImage

color = ('b','g','r')
for i,col in enumerate(color):
    histr = cv.calcHist([image],[i],None,[256],[0,256]) # عمل هستوغرام لجميع الألوان
    plt.plot(histr,color = col)
    plt.xlim([0,256])
plt.show()

تأكد من رسم القنوات اللونية الثلاث، حيث قمنا بالمرور عليهم في حلقة for

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...