Write recursive function for blobDetect in picture through this code provided. #include #include int blobDetect(int ** picture, int x, int y, int limit); int main() //setup randomness int x; printf("Enter seed: "); scanf ("%d", &x); srand (x); //set seed printf("Enter the size of the picture: "); int size; scanf ("%d", &size); int *. picture - (int **) malloc(size sizeof (int *)); for (int x - e; x < size; ++x) picture[x] (int ) malloc(size sizeof (int)); for (int test = 1; test <= 5; ++test) printf("Test xd\n", test); for (int r- e; r< size; ++r) for (int c - e; c < size; ++c) picture[r][c] rand() % 2; //generate random number between e and 1 int numblobs - 0; for (int r = e; r < size; ++r) for (int c e; c < size; ++c) if(blobDetect (picture, r, c, size) > 0) printf("There are xd blob(s) in the picture.\n", numblobs); //Super important! I don't think I can emphasize how important this is to do! for (int x - e; x < size; ++x) free(picture[x]); free(picture); return e;

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
icon
Related questions
Question

Try to do it asap

 

 

Computer Science
Write recursive function for blobDetect in picture through this code provided.
#include<stdio.h>
#include<stdlib.h>
int blobbetect(int * picture, int x, int y, int limit);
int main()
//setup randomness
int x;
printf("Enter seed: ");
scanf ("%d", &x);
srand (x); /set seed
printf("Enter the size of the picture: ");
int size;
scanf ("%d", &size);
int ** picture (int ) malloc(size sizeof (int ));
for (int x - 0; x < size; ++x)
picture[x] - (int *) malloc(size sizeof (int));
for (int test = 1; test <= 5; ++test)
{
printf("Test %d\n", test);
for(int r - e; r< size; ++r)
for (int c - 0; c < size; ++c)
picture[r][c] - rand() % 2; //generate random number
between o and 1
int numblobs - 0;
for (int r - e; r < size; ++r)
for (int c - e; c < size; ++c)
if (blobDetect(picture, r, c, size) > 0)
printf("There are xd blob(s) in the picture. \n", numblobs);
//super important! I don't think I can emphasize how important this is to do!
for (int x - 0; x < size; ++x)
free(picture[x]);
free(picture);
return e;
Transcribed Image Text:Computer Science Write recursive function for blobDetect in picture through this code provided. #include<stdio.h> #include<stdlib.h> int blobbetect(int * picture, int x, int y, int limit); int main() //setup randomness int x; printf("Enter seed: "); scanf ("%d", &x); srand (x); /set seed printf("Enter the size of the picture: "); int size; scanf ("%d", &size); int ** picture (int ) malloc(size sizeof (int )); for (int x - 0; x < size; ++x) picture[x] - (int *) malloc(size sizeof (int)); for (int test = 1; test <= 5; ++test) { printf("Test %d\n", test); for(int r - e; r< size; ++r) for (int c - 0; c < size; ++c) picture[r][c] - rand() % 2; //generate random number between o and 1 int numblobs - 0; for (int r - e; r < size; ++r) for (int c - e; c < size; ++c) if (blobDetect(picture, r, c, size) > 0) printf("There are xd blob(s) in the picture. \n", numblobs); //super important! I don't think I can emphasize how important this is to do! for (int x - 0; x < size; ++x) free(picture[x]); free(picture); return e;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Knowledge Booster
Randomized Select Algorithm
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr