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 6574287
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:14:32+00:00 2026-05-25T15:14:32+00:00

I would like to split an image which is captured from a webcam into

  • 0

I would like to split an image which is captured from a webcam into N*N squares, so that I can process those squares separably.

  • 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-25T15:14:33+00:00Added an answer on May 25, 2026 at 3:14 pm

    You need to use a ROI (Region Of Interest) option of OpenCV image structures.
    In C interface you need a function cvSetImageROI, in C++ it will be operator() of cv::Mat class. Here is a simple C++ sample for processing image by NxN blocks:

    cv::Mat img;
    capture >> img;
    
    for (int r = 0; r < img.rows; r += N)
        for (int c = 0; c < img.cols; c += N)
        {
            cv::Mat tile = img(cv::Range(r, min(r + N, img.rows)),
                         cv::Range(c, min(c + N, img.cols)));//no data copying here
            //cv::Mat tileCopy = img(cv::Range(r, min(r + N, img.rows)),
                         //cv::Range(c, min(c + N, img.cols))).clone();//with data copying
    
            //tile can be smaller than NxN if image size is not a factor of N
            your_function_processTile(tile);
        }
    

    C version:

    IplImage* img;
    CvRect roi;
    CvSize size;
    int r, c;
    
    size = cvGetSize(img);
    for (r = 0; r < size.height; r += N)
        for (c = 0; c < size.width; c += N)
        {
            roi.x = c;
            roi.y = r;
            roi.width = (c + N > size.width) ? (size.width - c) : N;
            roi.height = (r + N > size.height) ? (size.height - r) : N;
    
            cvSetImageROI(img, roi);
    
            processTile(img);
        }
    cvResetImageROI(img);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a url (http://www.something.com/subdirectory/image.jpg) and I would like to split the url into
I am writing many files to disk, and I would like to split them
I have a large source repository split across multiple projects. I would like to
Would like to make anapplication in Java that will not automatically parse parameters used
I have some data represented in a 1300x1341 matrix. I would like to split
I started to create a script that allows me to split a big image
I have a problem that I would like to merge a large number of
I'm currently developing a website, into which I've included a filter that attempts to
I'm a person that learns best from example. Currently, I'm diving into the field
My client would like to create an iPhone & Android app that turns custom

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.