Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7159789
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:17:23+00:00 2026-05-28T13:17:23+00:00

I am new to the image processing.I want to know that how i can

  • 0

I am new to the image processing.I want to know that how i can add the effects to the image using EmguCV or any other technique.Just like Microsoft LifeCam.(ex. showing hat on the head,showing name on the head etc.)

Please help,thanks in advance.

Update::I am now working with the code

face recognition x86

in that i am using the function currentFrame.Draw(…) to drow the image.
now i want to add the new bitmap image with the current image but it showing me the exception.

OpenCV: The operation is neither 'array op array' (where arrays have the same size and the same number of channels), nor 'array op scalar', nor 'scalar op array'

So anything which i will do with the Image myimg.Add()

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T13:17:24+00:00Added an answer on May 28, 2026 at 1:17 pm

    A good start would be to read the documentation.

    I have used Emgu CV and there is a face detection module, which returns the Rectangle of the persons face. (Haar Cascades)

    Once you have that information it would be easy to position a graphic on top of the image in a location relative to the face.

    The library also supports eye detection so you could draw on glasses using the same method as above.

    It’s very easy to use and the documentation is excellent so I would start there.

    Update:

    I found the code I used (Emgu CV) which detects every face in an image and returns a list of rectangles with their locations. (please excuse any poor code quality)

    You will also need to tweak the parameters to suit your needs.

    public List<Rectangle> detect(Bitmap inputImage)
            {
                inImage = new Image<Bgr, byte>(inputImage);
                grayImage = inImage.Convert<Gray, Byte>();
    
                List<Rectangle> faceRects = new List<Rectangle>();
    
                var faces = grayImage.DetectHaarCascade(haar, 1.1, 1, HAAR_DETECTION_TYPE.DO_CANNY_PRUNING, new Size(inImage.Width, inImage.Height))[0];
    
                grayImage.Dispose();
    
                foreach (var face in faces)
                {
                    faceRects.Add(face.rect);                
                }
    
                inImage.Dispose();
                return faceRects;
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found that using BmpBitmapEncoder to render any type of image works, the only
Im using EMGU (opencv wrapper) for image processing. I want to load images one
I am new in the Image processing, and I want to identify the QRCode
I'm pretty new to Image Processing and found out that the FFT convolution speeds
I am quite new to image processing and I am looking for a solution
If I write something like this: var img = $(new Image()).attr('src', image.src); How can
image naturalWidth return zero... that's it, why ? var newimage = new Image(); newimage.src
i'm new to image processing and opencv, but so far the easy to understand
I am new to image processing and matlab. I am trying to extract the
I am using EmguCV in WPF and i found this example tp capture image

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.