ImageStatistics.cs
Description du code
ImageStatistics.cs est un fichier du projet PhotoBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/photobrol/.
Projet PhotoBrol :
Editeur d'images en CSharp.
Code source ou contenu du fichier
Code c# (ImageStatistics.cs) (300 lignes)
using System; using System.Collections.Generic; using System.Text; using System.Drawing.Imaging; using System.Drawing; using be.gaudry.model.math; using be.gaudry.model.config; using be.gaudry.model.drawing.colors.converter; namespace be.gaudry.photobrol.model.image { /// <summary> /// Gather statistics about the image in RGB color space /// </summary> /// /// <remarks></remarks> /// public class ImageStatistics { private Histogram red; private Histogram green; private Histogram blue; private Histogram gray; private Histogram redWithoutBlack; private Histogram greenWithoutBlack; private Histogram blueWithoutBlack; private Histogram grayWithoutBlack; private int pixels; private int pixelsWithoutBlack; private bool grayscale; /// <summary> /// Histogram of red channel /// </summary> /// public Histogram Red { get { return red; } } /// <summary> /// Histogram of green channel /// </summary> /// public Histogram Green { get { return green; } } /// <summary> /// Histogram of blue channel /// </summary> /// public Histogram Blue { get { return blue; } } /// <summary> /// Histogram of gray channel (intensities) /// </summary> /// public Histogram Gray { get { return gray; } } /// <summary> /// Histogram of the channel excluding black pixels /// </summary> /// public Histogram RedWithoutBlack { get { return redWithoutBlack; } } /// <summary> /// Histogram of green channel excluding black pixels /// </summary> /// public Histogram GreenWithoutBlack { get { return greenWithoutBlack; } } /// <summary> /// Histogram of blue channel excluding black pixels /// </summary> /// public Histogram BlueWithoutBlack { get { return blueWithoutBlack; } } /// <summary> /// Histogram of gray channel (intensities) channel excluding black pixels /// </summary> /// public Histogram GrayWithoutBlack { get { return grayWithoutBlack; } } /// <summary> /// Total pixel count of the image /// </summary> /// public int PixelsCount { get { return pixels; } } /// <summary> /// Total pixel count of the image excluding black pixels /// </summary> /// public int PixelsCountWithoutBlack { get { return pixelsWithoutBlack; } } /// <summary> /// Value wich specifies if the image is color or grayscale /// </summary> /// public bool IsGrayscale { get { return grayscale; } } /// <summary> /// Initializes a new instance of the <see cref="ImageStatistics"/> class /// </summary> /// /// <param name="image">Image to gather statistics about</param> /// /// <remarks>24 bit per pixel or 8 bit indexed (grayscale) images /// are supported only.</remarks> /// public ImageStatistics(Bitmap image) { PixelFormat fmt = (image.PixelFormat == PixelFormat.Format8bppIndexed) ? PixelFormat.Format8bppIndexed : PixelFormat.Format24bppRgb; // lock bitmap data BitmapData imageData = image.LockBits( ImageLockMode.ReadOnly, fmt); // gather statistics ProcessImage(imageData); // unlock image image.UnlockBits(imageData); "AForge.NET", this.ToString(), "http://aforge.googlecode.com/svn/trunk/Sources/", "Informations générales sur le traitement d'images" ) ); } /// <summary> /// Initializes a new instance of the <see cref="ImageStatistics"/> class /// </summary> /// /// <param name="imageData">Image data to gather statistics about</param> /// /// <remarks>24 bit per pixel or 8 bit indexed (grayscale) images /// are supported only.</remarks> /// public ImageStatistics(BitmapData imageData) { ProcessImage(imageData); "AForge.NET", this.ToString(), "http://aforge.googlecode.com/svn/trunk/Sources/", "Informations générales sur le traitement d'images" ) ); } /// <summary> /// Gather statistics about specified image /// </summary> /// /// <param name="imageData">Image data</param> /// private void ProcessImage(BitmapData imageData) { // get image dimension int width = imageData.Width; int height = imageData.Height; pixels = pixelsWithoutBlack = 0; // check pixel format if (grayscale = (imageData.PixelFormat == PixelFormat.Format8bppIndexed)) { // alloc arrays byte value; int offset = imageData.Stride - width; // do the job unsafe { byte* p = (byte*)imageData.Scan0.ToPointer(); // for each pixel for (int y = 0; y < height; y++) { // for each pixel for (int x = 0; x < width; x++, p++) { // get pixel value value = *p; g[value]++; pixels++; if (value != 0) { gwb[value]++; pixelsWithoutBlack++; } } p += offset; } } // create historgram for gray level } else { // alloc arrays byte rValue, gValue, bValue; int offset = imageData.Stride - width * 3; // do the job unsafe { byte* p = (byte*)imageData.Scan0.ToPointer(); // for each line for (int y = 0; y < height; y++) { // for each pixel for (int x = 0; x < width; x++, p += 3) { // get pixel values rValue = p[RGB.R]; gValue = p[RGB.G]; bValue = p[RGB.B]; r[rValue]++; g[gValue]++; b[bValue]++; pixels++; if ((rValue != 0) || (gValue != 0) || (bValue != 0)) { rwb[rValue]++; gwb[gValue]++; bwb[bValue]++; pixelsWithoutBlack++; } } p += offset; } } // create histograms } } } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1732468784 24/11/2024 18:19:44 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/10/2009 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/cs-photobrol-source-rf-model/Image/ImageStatistics.cs.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.