In region growing algorithms, the seed point remains fixed throughout the process of growing the region. The seed point is typically chosen as the starting point for the region growing process, and it does not change as the region expands. Once the seed point is specified, the algorithm iteratively examines neighboring pixels and decides whether to include them in the region based on certain criteria (e.g., similarity to the seed point). However, the seed point itself remains unchanged, serving as a reference point for the region growing process. Changing the seed point during the region growing process could lead to inconsistent segmentation results and may not adhere to the intended segmentation criteria. Therefore, it's common practice to keep the seed point fixed throughout the region growing algorithm.
@rishirajsinghrathorepgi19c562 жыл бұрын
for those having confusion in ques 1 , the reason why 4 is not included is that we will check the difference from the initial element which is 7 so only elements included are 5,,6,5 satisfying the minimum threshold
@aishwaryakubasad83732 жыл бұрын
S
@HemantBansal_Ki_Mummy2 жыл бұрын
as per you ans How can we include 5 since it already given 4connectivity
@indranilmondal1270 Жыл бұрын
But 5 is included , in that case we checked 5-6 and not 5-7
@bhuppidhamii Жыл бұрын
thnku
@krish8804 Жыл бұрын
no
@saitama-kun92532 жыл бұрын
If I crack my Internal assessment with this help, I'll like the whole playlist's videos individually. I'll recommend to my friends as well since it has been helpful for me. Date: 10/04/2022 21:39
@yadnenbairagi98992 жыл бұрын
+1
@saitama-kun92532 жыл бұрын
Consider it done. Thanks once again 😃
@collegefriendly2 жыл бұрын
Thank you😊
@anidj351711 ай бұрын
Thank you for this playlist, my syllabus completed from here, many many many thanks 😊
@nkbanerjee25497 ай бұрын
Came here to thank you di...today I have had my dip question paper and all the topics that you'd covered were there in the question paper...without yoh I can't even think how can I pass...now I've attempted all the questions correctly...thank you so much di...you're truely amazing ✨
@SunnySingh-cw7so2 жыл бұрын
Thanking You For Teaching this , You are better than our college professor - HN VERMA
@pawanesh_mnnit8 ай бұрын
exactly❤
@maheshkumarjadhav511 Жыл бұрын
Ohhh my goodness Very good explanation ❣️
@dr.parthasarathide4290 Жыл бұрын
there is a difference between 5-4=1 which satisfies the condition
@ankitkw10 ай бұрын
Same doubt at 8:20
@rudranathpalit99482 жыл бұрын
@CollegeFriendly Hi! Nice video but I guess there is a key misconception here. The seed point should not change during region growing. This is because while handling 5, 4 will come into the region which means in the next step 2 and 1 will get absorbed followed by 0 and so on. Hence, the entire image will become a single segment. For a simpler understanding assume there are 256 points on a line with values 0,1,2,..., 255. Then 0 is similar to 1, 1 is similar to 2, 2 is similar to 3... 254 is similar to 255. If we keep changing the seed point, this will mean 0 and 255 will lie in the same segment even though they are separate both spatially and in intensity.
@anmol32 жыл бұрын
thanks. now i know question 1 was wrong.
@krishnakumarduraikkannu66422 жыл бұрын
@@anmol3 Yes, there was committed mistakes while handling 5 and 4
@danishzia81922 жыл бұрын
ma'am 5-4 is 1 which is less than the threshold value. So shouldn't it be the part of our grown region?
@fahadmirza84972 жыл бұрын
yes it should be...i think she made a mistake
@tihsrah61452 жыл бұрын
@@fahadmirza8497 actually there's mistake in the concept here...we are checking with the original point 7 all the time...as if you are taking adjacent pixels every time then whole image would come under 1 segment...so just check the value with 7 and so it would be 7-4 =3 so it cant be taken....
@rahul.jadav12 жыл бұрын
Mam thank you so much for such great teaching it helped a lot
@giteshkamble4424 Жыл бұрын
Except that one mistake, u taught so well☺️
@kajolkhatwani374 Жыл бұрын
nice explanation , helped me a lot thank youu!!
@mohammedmehdi19408 ай бұрын
at 14:04 shouldnt the pixels with 3 also be a part of the segment. because (6-3)
@gareer24367 ай бұрын
3 is not an 8 way neighbour of any of the 6 valued Pixels. Since coordinates of seed point are not given, we will only grow the region based on neighbours of the seed value provided (6 here). Thus we do not include them in this example. However if the question was like Q1 where seed point coordinates were given, then we would have included 3 in our region.
@blasenashvaz89452 жыл бұрын
Uzzo video miss love you keep up the good work
@Aryabhatta_9129 күн бұрын
5:30 value 4 is also come Don't be confuse.
@saptarshidas4882 жыл бұрын
This is wrong, changing the seed point would end up covering the entire image. Please upload a corrected version
@Sam-uo6xk2 жыл бұрын
so do we have to check the difference with respect to initial seed point only
@x33rak2 жыл бұрын
@@Sam-uo6xk yes
@redbull1235053 жыл бұрын
In question 1 , for the element 5 in position (1,1) , while checking the absolute differences between its neighbours , isn’t the element 4 which is in position (2,1) will be in the region? I am having doubt in this part.
@collegefriendly3 жыл бұрын
Yes you are right Sayan! Thanks for pointing this out. Element 4 will also be included in the region.
@redbull1235053 жыл бұрын
@@collegefriendly Okay thank you for clarifying. Your contents are very easy to understand as your topic has explanations as well as examples together.
@ayanmandal82573 жыл бұрын
also element 2 which is below 4 at psoition(3,2) will also be in region bcoz it is coonected to 4?
@anmol32 жыл бұрын
@ayan You mean the position (3,1). Yes, I've the same doubt. If that's the case, whole image would get 'a'.
@anmol32 жыл бұрын
@@collegefriendly Wouldn't then all the elements will get 'a' since difference between the two neighbouring pixels is ≤ 2. Perspective 2 - When 4 is compared with value 7. It'll be given a value 'b' that is 0 and will thus not participate further. Real solution - seed value doesn't change and will only be applied to 6.
@ITB_ISHAANDWIVEDI2 жыл бұрын
Thank you so much! Great explaination :D
@ramankumar41 Жыл бұрын
Very nice explanation, keep it up !!!
@Adarshparmar182 жыл бұрын
hi i have doubt in second region ki umsi max=5 min=0 {c,d1,b3,d3}
@आम्हीकोकणी-न6ट7 ай бұрын
Can we make more than 2 region in region splitting and merging
@pavanprasad30615 ай бұрын
the elemnt (2,1) iss not included why?
@khushboopandya97442 жыл бұрын
Plz make a video on Rule based and motion based segmentation
@samirgiri80702 жыл бұрын
I think all pixels of questions number 1 lies in growing region
@kuchkuch822 жыл бұрын
Kindly confirm whether seed point will change in region growing?
@Sam-uo6xk2 жыл бұрын
did you get any answer
@swipethestressaway70772 жыл бұрын
no
@aravind9432 Жыл бұрын
Thank you thank you thank you soo much 🙏🙏🙏 I don't know your name but I think you are a goddess 🙌🙌
@moninmodi74402 жыл бұрын
Mam we have to check aal pixel values from seed only but you are changing the seed values. Can you please reply on this.
@vivekiyer94822 жыл бұрын
On what basis u have decided ki how many pixels are there in 4 sub region??
@tithipaul51353 жыл бұрын
In question 2, why (4,6) point(3 value) is not in the region?
@anmol32 жыл бұрын
You mean (3,5) and not (4,6). No it doesn't satisfy the condition (absolute difference≤3).
@lakshyamittal837829 күн бұрын
Mam why we do not considered 5-3=2
@immrhrrАй бұрын
In example 1st all the pixels in this example will eventually be included in the region!
@EscapeThirty Жыл бұрын
I think solution is incorrect because here merging of region will depend on the order we select to compare the regions. So different users will get different values
@pavanprasad30615 ай бұрын
isnt 5-4
@AkashShaw-l4t8 ай бұрын
very nice😇
@trusharpatel58738 ай бұрын
They give us 5*5 image to split 😢😢
@shreyashagrawal9650 Жыл бұрын
Which pen u r using ?
@kartikforwork7 ай бұрын
😞
@jaiswalrohan Жыл бұрын
a real creator would have commented their mistake and pinned it! Bruh u can't just teach wrong stuff and let it pass even after knowing! f* now there's no point in even disliking the video, imma straight away report this video! Edit 1: bruh i was going through the comments and realized the question one wasn't wrong she didn't just explain. So ideally i should have deleted my comment but upon scrolling a little more she literally accepted the mistake and said she made a mistake and 4 needs to be included which surely doesn't have to be. But she accepted it as her mistake. This beacher doesn't even know what she's teaching! Edit 2: jaa nhi kar raa report aaj mood nhi h!
@MoralTown Жыл бұрын
hey mam you haven't included the geometric transformation in the series of digital image processing..rotation of image,translation of image,shearing of image etc..these are the most important topics you haven't covered
@vkgamer9305 Жыл бұрын
vo cgm me aata hai
@kevian1822 жыл бұрын
Excellent vídeo! Thanks!
@shenbajanar57703 жыл бұрын
Watershed segmentation video I need
@xsuritox10582 жыл бұрын
Anushree op , kaal hi exam hai mera, 6 din ki chutti thi , lekin nai padhna toh last din hi hai(T_T)
@hannahlutfiahramadona817 Жыл бұрын
Gak ada subtitle Indonesia nya kah😭 mau belajar tapi ora paham😭🤣
@getknowledge9267 Жыл бұрын
You are doing mistake here 5-4 =1 the condition is satisfied here
@ElectricalResearcher2 жыл бұрын
low lightining
@PradeepKumar-tl7dd9 ай бұрын
misguided video .Half knowledge is disaster
@theautumnleaves3438 ай бұрын
totally a trash. don't run over half cooked knowledge.
@22singhcharu9 күн бұрын
Ari tu samjha Rahi hai ya reading kar rahi hai bas ,log kitab mein se na padh sake the apne aap.
@fahadmirza84972 жыл бұрын
ma'am 5-4 is 1 which is less than the threshold value. So shouldn't it be the part of our grown region?