Click here to Skip to main content
Click here to Skip to main content

Mango, Photo Editor with OpenCV

By , 10 Dec 2008
 

Introduction

I made a simple but nice photo editor with OpenCV. It can be used to edit photos, such as, adding simple effects, changing the brightness and the contrast, histogram equalization, face detection, etc. For the GUI, I use wxWidgets so it can be easily ported to the Linux operating system.

Background

OpenCV is an open source computer vision library in C/C++. It provides us many APIs for image data manipulation. It is OS independent and optimized for real-time applications. Go to the OpenCV website and download the latest version. Install and check sample directory. Find some tutorials and enjoy.

wxWidgets is an OS independent open source GUI library. By using this library we can make an OS independent application. Check here at the wxWidgets website.

The Plan

Here is the plan. We are going to make a photo editor software that is capable of:

  • Converting an image to grayscale and black and white.
  • Do per channel adjustment of brightness and contrast based on its color space.
  • Change color space: RGB, YCrCb, HSV, and HLS.
  • Rotate, flip, or resize an image.
  • Do histogram equalization.
  • Show histogram graph.
  • Detect faces.
  • Generate erode and dilate effects.
  • Have "UNDO" capability.

The Code

The class for image manipulation is allocated in files mango.h and mango.cpp with name CMango.

class CMango
{

public:
    enum type{
        IM_AUTOMATIC,
        IM_GRAYSCALE,
        IM_BLACKNWHITE,
        IM_RGB,
        IM_HSV,
        IM_HLS,
        IM_YCrCb,
        IM_ZOOMIN,
        IM_ZOOMOUT,
        IM_HORIZONTAL = 25,
        IM_VERTICAL,
        IM_DILATE = 40,
        IM_ERODE,
        IM_FACE1,
    };

    CMango(void);
    ~CMango(void);

    int LoadImageFromFile(char *FileName);
    void ShowActiveImage(char *WindowName);
    int SetProperty();
    std::string GetProperty();
    void LoadPrestoredImage(int type);
    void PushImage(IplImage *Image){ImageList.push_front(Image);};
    void PopImage(){ if (!ImageList.empty()) ImageList.pop_front();};
    int SaveToFile(char *FileName);

    void Rotate(int angle);
    void ZoomImage(int flag);
    int GetImageElement(int channel, int brightness, int contrast);
    void FlipImage(int flag);
    void ApplyEffects(int flag);
    void FaceDetect(int flag);
    void ShowHistogram();
    int HistogramEqualization();
    int ChangeColorSpace(int flag);

private:
    static IplImage *Automatic;
    static IplImage *Blacknwhite;
    static IplImage *Grayscale;
    static IplImage *Buf;

    static std::list<IplImage *> ImageList;
    static std::list<std::string> PropertyList;

    static int ColorSpace;
};

When an image is loaded, it is kept in data member Automatic. Actually we have three pre-stored images here: Automatic, Blacknwhite, and Grayscale. Every operation we perform will push an active image (image that is being displayed) to ImageList so we can perform "undo." The "undo" command basically will popup an image from ImageList to be displayed.

I also did some experiments on color spaces. Adjusting the per-channel brightness and contrast of an image can give us an awesome effect depending on its color spaces. I used an algorithm that I found in this site. Since OpenCV will only put RGB on display, I have to do these: Convert image to target color space, do the adjustment that I want, and finally, convert it back to RGB to be displayed.

Unfortunately, I encountered a problem. The problem is that the algorithm is for RGB color space. I can't just use it for other color spaces. But, take a look at this:

    Range
RGB R 0 - 1
  G 0 - 1
  B 0 - 1
YCrCb Y 0 - 1
  Cr -0.5 - 0.5
  Cb -0.5 - 0.5
HSV H 0-360
  S 0 - 1
  V 0 - 1
HLS H 0-360
  L 0 - 1
  S 0 - 1

Based on this table I think it is possible to apply the same algorithm for other color spaces besides RGB as long as they are in the same range.

Please notice that I only implemented the histogram curve for RGB color space only. If you change the color space, the histogram curve is no longer valid because of difference in range.

Points of Interest

I implemented many basic functions of OpenCV here. I hope It might be useful for you to start learning about OpenCV.

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

auralius manurung
Other Gyeongsang National University, South Korea
Indonesia Indonesia
Member
from Indonesia with love... Smile | :)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralError: Cannot Initialize OLEmemberGiampy8215 Oct '09 - 13:43 
GeneralRe: Error: Cannot Initialize OLEmemberauralius15 Oct '09 - 22:39 
Generalat compilation: can't find wx/foldbar/foldpanelbar.h [modified]memberLudoTW23 Apr '09 - 16:38 
GeneralRe: at compilation: can't find wx/foldbar/foldpanelbar.hmemberauralius1 May '09 - 3:34 
GeneralRe: at compilation: can't find wx/foldbar/foldpanelbar.hmemberollydbg2313 May '09 - 15:32 
GeneralLinux/Ubuntu doesnt workmemberDansveen20 Jan '09 - 6:06 
GeneralRe: Linux/Ubuntu doesnt workmemberauralius22 Jan '09 - 19:08 
GeneralRe: Linux/Ubuntu doesnt workmemberDansveen23 Jan '09 - 1:41 
GeneralRe: Linux/Ubuntu doesnt workmemberauralius23 Jan '09 - 15:30 
GeneralRe: Linux/Ubuntu doesnt workmemberDansveen24 Jan '09 - 11:42 
GeneralRe: Linux/Ubuntu doesnt workmemberauralius26 Jan '09 - 11:47 
GeneralI can't build it in codeblocks and mingwmemberzyh2324 Dec '08 - 2:53 
GeneralRe: I can't build it in codeblocks and mingwmemberauralius25 Dec '08 - 9:32 
GeneralRe: I can't build it in codeblocks and mingwmemberzyh2325 Dec '08 - 15:29 
QuestionRe: I can't build it in codeblocks and mingwmemberMartin Dale13 May '09 - 10:08 
AnswerRe: I can't build it in codeblocks and mingwmemberollydbg2313 May '09 - 15:30 
GeneralRe: I can't build it in codeblocks and mingwmemberMartin Dale13 May '09 - 20:43 
QuestionDid you use OpenCV?memberXiaoming Huang21 Dec '08 - 22:40 
AnswerRe: Did you use OpenCV?memberzyh2324 Dec '08 - 2:05 
GeneralGerat article!memberzyh2316 Dec '08 - 2:25 
GeneralRe: Gerat article!memberauralius16 Dec '08 - 15:31 
GeneralRe: Gerat article!memberzyh2317 Dec '08 - 3:22 
GeneralThe demo cannot start on WinXPmemberTage Lejon11 Dec '08 - 1:10 
GeneralRe: The demo cannot start on WinXP [modified]memberauralius11 Dec '08 - 18:05 
GeneralThe demo runs with the downloading, thanksmemberTage Lejon11 Dec '08 - 22:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 10 Dec 2008
Article Copyright 2008 by auralius manurung
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid