Using Image Recognition to DESTROY Fruit Ninja

  Рет қаралды 523,155

CodeNoodles

CodeNoodles

Күн бұрын

To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/CodeNoodles/. You’ll also get 20% off an annual premium subscription.
This project has been a long time in the making. I set out last year to automate Fruit Ninja with image recognition, but I ran into a couple of road blocks along the way. But luckily, this year I decided to try it again, and it worked out fantastically to say the least!
This video was sponsored by Brilliant
LINKS
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Support the channel: ko-fi.com/codenoodles
Itch.io: codenoodles.itch.io/
GitHub: github.com/OfficialCodeNoodles
MUSIC
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Shoutout to @qumumusic for making wonderful remixes of some of my favorite video game songs! Check out their channel if you haven't already!
• The Legend of Zelda - ...
Roboskater by Audionautix is licensed under a Creative Commons Attribution 4.0 license. creativecommons.org/licenses/...
Investigations by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. creativecommons.org/licenses/...
█▀ █ █ █▄▄ █▀ █▀▀ █▀█ █ █▄▄ █▀▀
▄█ █▄█ █▄█ ▄█ █▄▄ █▀▄ █ █▄█ ██▄

Пікірлер: 385
@CodeNoodles
@CodeNoodles 2 ай бұрын
To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/CodeNoodles/. You’ll also get 20% off an annual premium subscription.
@deltadeltagrand2842
@deltadeltagrand2842 Ай бұрын
I feel like something that could improve it is if you had the code specifically look for any black spots that would mark a Bomb and label areas around them as dangerous, that could help the code avoid bombs as well as make sure it doesn’t try to hit fruits too close to bombs. I would also make it so that it doesn’t scan too close to the bottom of the screen as a bomb could come up right after or at the same time as a fruit and get hit.
@gaco577
@gaco577 2 ай бұрын
if object = bomb is bad else is good
@CodeNoodles
@CodeNoodles 2 ай бұрын
Basically
@catWithFunkyFace
@catWithFunkyFace 2 ай бұрын
if only it was this easy
@IgsihziysPleazure
@IgsihziysPleazure 2 ай бұрын
That looks like something from scratch.
@cybi124
@cybi124 Ай бұрын
if (object = bomb) { donttouch } else{ destory }
@Duckless137
@Duckless137 Ай бұрын
==*
@lukeseaman2994
@lukeseaman2994 Ай бұрын
The somewhat unoptimized nature of the program gives it a lot of personality and comedic value 10/10
@CodeNoodles
@CodeNoodles Ай бұрын
Thanks, that makes me feel better 😆
@IntrovertSinceBirth
@IntrovertSinceBirth 22 күн бұрын
Programming also makes mistakes like humans do?!
@Dusti_buns
@Dusti_buns 17 күн бұрын
​@@CodeNoodlesGreat video. I loved it
@johnsimpsen5
@johnsimpsen5 2 ай бұрын
It would be cool if the program waited a while before the fruits were on screen and then calculate how many there are. If there are more than one, it tries to slice them in one go instead of a bunch of slices.
@Rjciralli
@Rjciralli 2 ай бұрын
I can already imagine that constantly catching bombs in the big slices
@dylanherrera5395
@dylanherrera5395 2 ай бұрын
​@@Rjciralliperhaps a pathfinding algorithm to avoid the bombs, although this might be too slow
@advance64bro
@advance64bro 2 ай бұрын
The program does what’s efficient
@TheStolenBattenberg
@TheStolenBattenberg Ай бұрын
@@advance64broit uses python…
@inakiorozco881
@inakiorozco881 Ай бұрын
@@advance64bro the program does what is designed to do, It can be efficent with fewer slides if its designed that way
@rockinggamerdude
@rockinggamerdude 2 ай бұрын
The problem I see is it doesn’t wait for all the fruit to make sure to get a combo for a points bonus
@mateuszpragnacy8327
@mateuszpragnacy8327 2 ай бұрын
IT is possible to train ai that way just Smart genetic algorithm or other
@advance64bro
@advance64bro 2 ай бұрын
It doesn’t even know how the game works, it’s a program that does what is told
@mateuszpragnacy8327
@mateuszpragnacy8327 2 ай бұрын
@@advance64bro yes but no. You can train it just genetic algorithm and train 10 ai at time and ai with biggest score replicates like natural selection and there is a chance that ai learns to mąkę a combo
@Cozumii
@Cozumii Ай бұрын
Isn’t that lost score made up by how many critical it gets?
@ethanperry8
@ethanperry8 7 күн бұрын
@@mateuszpragnacy8327that would take a long ass time and processing though
@zobiah6263
@zobiah6263 Ай бұрын
This feels like a strong candidate for reinforcement learning imo. Just give it the average color values you have already collected, a reward function based off the in-game score system (obviously make bombs a high negative), and watch it go.
@4_real_bruh
@4_real_bruh 29 күн бұрын
Could also just use a single convolution operation with a filter of 7x7 since the bombs always have a minimum size, then compute the average of the colors as he did and if its not white or black, slice the fruit by going 10 pixels in either direction from the pixel
@soothingstationW
@soothingstationW 5 күн бұрын
@@4_real_bruh Yeah i had the same idea. I thought about going by size as well. He could add this on top of the color to prevent more false positives.
@ryans3979
@ryans3979 2 ай бұрын
Being somebody who works in the computer vision field, I feel like it would've been simpler for you to convert the image to HSV, take the value (lightness) channel, and then binarize the image by checking if it's less than a certain threshold. From there you can see how many connected pixels there are, and if there are more than say 1000 black pixels, its a bomb.
@cvabds
@cvabds 2 ай бұрын
This could be better optimized if you didn't based it on color recognition but actually on moving pixels on the grid you created. Based on that principle, you should need to only recognize the black color of the bomb, everything shouldn't be biased on only color. I saw it bug on the background splashed fruit some times
@ryans3979
@ryans3979 2 ай бұрын
This would add a small delay because he'd always be one frame behind (need to take the current frame and subtract the previous frame pixels that didn't move), but I do agree that the optimization would probably speed it up enough to be worthwhile. He should also not be processing the full RGB image, especially because he's in python, that's obviously going to be slow. Turning it into a grayscale or HSV (lightness channel) 2D array and doing some sort of processing to check for the darkest pixels would definitely be faster.
@cvabds
@cvabds Ай бұрын
@@ryans3979 nice! Thanks for the input! That makes sense!
@ilovecoffee4978
@ilovecoffee4978 Ай бұрын
​@ryans3979 could he not make it identify the position and type in one frame, wait like 3 frames, and then identify the same objects position for average velocity, then swipe afterwards based on delay?
@madhuchowdary8826
@madhuchowdary8826 23 күн бұрын
Wont that be pretty hard, as the program needs to calculate a path to slice, a path which does not include any bombs in between
@emanuelemanzoni5191
@emanuelemanzoni5191 18 күн бұрын
how would you detect moving pixels
@shadow_blader192
@shadow_blader192 2 ай бұрын
You are writing functions without space between them 😭
@Trevorus1
@Trevorus1 2 ай бұрын
May I ask what’s happening in your profile picture with the mimi sentry?
@aaronking2020
@aaronking2020 2 ай бұрын
​@@Trevorus1 mini sentry meets big thing
@trystankitty5393
@trystankitty5393 2 ай бұрын
@@aaronking2020why
@romancatholicgameing
@romancatholicgameing 2 ай бұрын
​@@Trevorus1 It takes someone with experience to recognize that pfp's image and what happened in it... I don't know if I should be horrified or impressed.
@letter_o_hyphen_letter_o
@letter_o_hyphen_letter_o 2 ай бұрын
is bro's argument invalidated by deranged pfp?
@sbd2639
@sbd2639 2 ай бұрын
I have made a program in python to automatically complete tasks in among us and wrote code for almost all tasks for the first map. I faced the same problem in some tasks ( like clean vent, clear asteroids etc) where the image recognition would not work properly due to random rotations of the sprites on screen. Your solution to the problem might be perfect in my program and I am gonna try that soon. It might be even better suited since there is even less chance of false positives ( which was caused by the splattering of the fruits on the wall in fruit ninja ).
@TheFurry
@TheFurry 2 ай бұрын
awesome project! Are you going to do a video on it?
@sbd2639
@sbd2639 2 ай бұрын
@@TheFurry ​nah probably not. I just made it because my USB mouse broke and using laptop's mousepad was very annoying. If you are interested, I could give you the code but since I made it just for me, I didn't take the screen resolution into consideration, so it only works on the monitor with the exact resolution of 1920x1080.
@HarshWeave9487
@HarshWeave9487 2 ай бұрын
Interesting.... Would you mind if I could see the code? If you can share the link, I would be grateful.
@sbd2639
@sbd2639 2 ай бұрын
​@@HarshWeave9487 This is my first time using github so sorry if there is any mistakes.. Also, since I just made it for me, almost every pixel coordinate is hardcoded so there are just random numbers everywhere. If you have any questions, you can just ask here, I am online pretty regularly.
@sbd2639
@sbd2639 2 ай бұрын
​@@HarshWeave9487 I commented the link here but I think it got deleted by youtube. Are there any other way to share the link???
@McTuber42
@McTuber42 2 ай бұрын
The rhythm of the slicing syncs surprisingly well with the music after 8:25
@-ShoeCat
@-ShoeCat 2 ай бұрын
i haven’t heard about this game in a long time, when i saw this, it reminded me about how i got around 1390 while playing this in a daycare
@CodeNoodles
@CodeNoodles 2 ай бұрын
That's impressive!
@-ShoeCat
@-ShoeCat 2 ай бұрын
@@CodeNoodles thanks
@ElementEvilTeam
@ElementEvilTeam 19 күн бұрын
would've been useful 14 years ago
@ShockedTaiLung
@ShockedTaiLung 2 ай бұрын
Aw yeah it’s noodling time
@TVDemonstro
@TVDemonstro 2 ай бұрын
Loved the part where he said "noodling time" and noodled all over the place
@GreatDynamics
@GreatDynamics Ай бұрын
I also loved the part where he said "noodling time" and noodled all over the place
@gummybread
@gummybread 2 ай бұрын
8:37 8:59 *RUUUUULES OF NAAAATURE*
@lingeprune2373
@lingeprune2373 Ай бұрын
yeah it's swinging at the speed of raiden crackhead mode
@SuadoCowboy
@SuadoCowboy 2 ай бұрын
why don't you just instead check if it's a bomb or not? as far as i know the bomb is the most different from them and by only checking the bomb you could optimize this code alot and then you only pass the mouse on things that are on movement except the recognized(s) bomb(s) maybe you could even try using grayscale images or something idk
@melody-v-
@melody-v- 2 ай бұрын
IF ONLY
@advance64bro
@advance64bro 2 ай бұрын
Dude, do you not know how hard that is
@SuadoCowboy
@SuadoCowboy 2 ай бұрын
@@advance64bro do you?
@advance64bro
@advance64bro 2 ай бұрын
@@SuadoCowboy yes
@SuadoCowboy
@SuadoCowboy 2 ай бұрын
@@advance64bro and don't you think it's worse checking each type of fruit instead of just checking if it's a bomb or not?
@ODISeth
@ODISeth 2 ай бұрын
Oh wow you've been at this one for quite some time, excited to see how it turned out!
@trystankitty5393
@trystankitty5393 2 ай бұрын
Hi
@ODISeth
@ODISeth 2 ай бұрын
@@trystankitty5393 hi?
@trystankitty5393
@trystankitty5393 2 ай бұрын
@@ODISeth hi?
@ODISeth
@ODISeth 2 ай бұрын
@@trystankitty5393 you replied to me lol
@trystankitty5393
@trystankitty5393 2 ай бұрын
@@ODISeth nope
@affegpus4195
@affegpus4195 Ай бұрын
The color recognition is a clever idea. The fact it is fast it can be used in combination with other methods for increasing accuracy
@wChris_
@wChris_ Ай бұрын
I thought you would use image recognition with a neural net for object detection, but maybe that could be v2 if you ever want to do that again.
@JamesTDG
@JamesTDG 2 ай бұрын
I feel like this system could be expanded more if used right. Like for example, if the system detects high red pixel counts in a region, have it take a screenshot and use image recognition to see if it can detect a red arc at around 75% completion, use an or function with it so it can also check the image for an X. If either result comes true, it will determine the region to be dangerous for the next x-amount of frames. Should help improve the system by a bit, and even can use fewer resources if it is able to know the danger region before doing the bomb check.
@vitatreat9037
@vitatreat9037 2 ай бұрын
I feel honoured to get this video on my feed. This video made me excited for sure 👍
@CodeNoodles
@CodeNoodles 2 ай бұрын
Thanks, I really appreciate it!
@CarlosRoxo
@CarlosRoxo 2 ай бұрын
You can try using something like a yolo network for the fruit recognition. Most recent models run very fast with a medium capacity gpu and are pretty accurate
@ofridaniel2127
@ofridaniel2127 19 күн бұрын
Exactly what i thought
@juliusblomgreen
@juliusblomgreen 14 күн бұрын
I'm trying to do this right now. My problem is the slicing function. I can't seem to make the mouse fast enough. I'd like to see how he did that
@skmiraj1549
@skmiraj1549 24 күн бұрын
I don't know what is going on but I love it
@Mossy_Dahlia
@Mossy_Dahlia 2 ай бұрын
I’m not too savvy on machine learning, but would it be possible to extract the UV maps from the fruit and use that to differentiate them from the bombs? The UV map has their whole texture so would it be possible to use that to understand and recognize a fruit at all angles?
@Jayrenzyx
@Jayrenzyx Ай бұрын
I gotta admit that segue was clean
@KirbyCoder
@KirbyCoder 2 ай бұрын
Now I wonder what it’d be like to train an AI to play this game
@Bodoczky
@Bodoczky 10 күн бұрын
That Temple of Nadia soundtrack hits hard ❤
@mateuszpragnacy8327
@mateuszpragnacy8327 2 ай бұрын
You can lower the screenshot resolution so network can have whole screen as input and train it if game is laggy while training just make game run slower
@Mehbem
@Mehbem 15 күн бұрын
Bro being a student working on segmenting quantum dots with dog noise this is so relatable 😭
@fadlanal-amsi9839
@fadlanal-amsi9839 2 ай бұрын
Its magical to see a fresh half brick games content these days
@never_dre
@never_dre 12 күн бұрын
The music 😮 it took me a minute to understand that something was sooo familiar here!
@linkmastr
@linkmastr Ай бұрын
2:50 nice explanation of kernels in an image recognition model
@midtech168
@midtech168 Ай бұрын
If I had this back in 2011 I would have seen so popular in school lol
@yanglightheart
@yanglightheart Ай бұрын
Now that's an actual fruit ninja, my personal best is 694 though... in the arcade mode.
@krischarles4326
@krischarles4326 19 күн бұрын
How is your IDE not SCREAMING at you…? PyCharm would be kicking in my door at the first lack of whitespace 😅
@mrcooltree3566
@mrcooltree3566 2 ай бұрын
Why not have the ai focus on the background color and bomb color and when thag color is over the screen it does not attack there? Sure you couldn’t get combos but I think theoretically it would work easier faster and longer since instead of picking out a fruit it is just picking out a difference in what is normally there
@nasirgrant4271
@nasirgrant4271 20 күн бұрын
Never thought I would see TAS for Fruit Ninja
@I_am_Itay
@I_am_Itay 2 ай бұрын
I think it would be fun to optimize it, here is sime idea that would maybe improve it- Waiting with slicing and calculating where each object is not just frame by frame so it would include the speed, direction, where the object would get in the next frames and I think it would give better accuracy + would give the compatibility to plan combos with smooth slices instead of just spamming
@advance64bro
@advance64bro 2 ай бұрын
It does what is efficient, don’t be that harsh just because you’re dissatisfied
@I_am_Itay
@I_am_Itay 2 ай бұрын
@@advance64bro I am not harsh, I really like it and the video and I just want to add suggestions so maybe he would do another video and improve it or to inspire someone else who interested in this for example I started building my own version to this bot
@advance64bro
@advance64bro 2 ай бұрын
@@I_am_Itay doing something like that would have to make the fruit identifying program to be more complex which you already saw was really hard to do
@I_am_Itay
@I_am_Itay 2 ай бұрын
@@advance64bro Of course it would be a bit more complex but it's well within the capabilities of code noodles, he did much harder things. The preprocessing he did would really help, it would be more work on how the bot play than on the identification
@real1cytv
@real1cytv Ай бұрын
5:23 this code is my absolute nightmare... Why didn't you put newlines inbetween the functions but put them around the while loop?
@harkiratsingh3967
@harkiratsingh3967 19 күн бұрын
It made me remember a scene from tge dark forest where the droplet is destryoing the the space fleet , its drscribed as God 's scribbling as the droplet is ramming objects taking sharp turns which are zero in accordance to our aerodynamics
@racingfarmer053
@racingfarmer053 Ай бұрын
Would it be possible to code it so if it detects any black on am object at all to steer clear of it. It not because of other dark spots on the background and such
@gdclemo
@gdclemo 2 ай бұрын
Very good. Next project: build a robot arm with a samurai sword that chops up fruit you throw at it (but not bombs)
@equalent
@equalent Ай бұрын
your naming convention in Python should be illegal
@kelvinluk9121
@kelvinluk9121 21 күн бұрын
Would it be easier and more accurate to fine tune an image segmentation model for this task?
@ramadhanisme7
@ramadhanisme7 Ай бұрын
The chopping is unreal 🤣🤣
@lukraniom8731
@lukraniom8731 20 күн бұрын
You could also just hold your finger in one spot and if a fruit passes by it it splits
@Ramzi65ok
@Ramzi65ok Ай бұрын
Combos would be so cool
@jordancrouse714
@jordancrouse714 2 ай бұрын
Yay! Excited to see you post 🥰 only place I'm interested in code 😂
@notchpoodles5864
@notchpoodles5864 24 күн бұрын
0:45 I️ remember this from CodeBullet (an angry Australian man who also programs robots to play games for him)
@zeroinfinius
@zeroinfinius Күн бұрын
You could have created a program to identify colours other than brown and black hence it could identify a new colour- fruit
@L_tlu
@L_tlu Ай бұрын
1:44 me: just use machine learning
@fishygaming2554
@fishygaming2554 Ай бұрын
One of the best games.
@SleepyV3rt
@SleepyV3rt 17 күн бұрын
Nice program. Had you considered using the indexed version of screenshots, might improve the accuracy. Also maybe look into the YOLO model, it's open source and pretty good with image recognition.
@angelfire9622
@angelfire9622 2 ай бұрын
if you have a good enough pc you could have used YOLO for object recognition and have a better accuracy more easly
@bachoulekikoune
@bachoulekikoune 2 ай бұрын
yes, small yolo models can even run on crappy pcs pretty well
@jasonorjoshlee7607
@jasonorjoshlee7607 Ай бұрын
The bot even got a 5 fruit combo😮
@paradoxcorporated2906
@paradoxcorporated2906 2 ай бұрын
Bro is code bullet 2.0
@GimmeMyHandleBack
@GimmeMyHandleBack 2 ай бұрын
Could you edit the color mixing program to favor black more heavily than other colors? That should help with the bomb identification
@ExploringNew1
@ExploringNew1 Ай бұрын
How did you get a video of what the program sees?
@CodeNoodles
@CodeNoodles Ай бұрын
I wrote some code to create a video file where I could draw objects on top of the image to display information.
@ranarehanqaisar2266
@ranarehanqaisar2266 19 күн бұрын
Bro is going to be a genius one day.
@shivanshmathur
@shivanshmathur 17 күн бұрын
Wait, is that bgm from the old Pokemon game?? Feels like remnants from a core memory
@user-js4xl7pw7l
@user-js4xl7pw7l Ай бұрын
You can change the background, your blade color and splashes on the dojo in Srttings, as well as try to instantly revoke any area containing black pixels or i dunno, just (if any of this place in a screenshot has black bad No black Good, slice)
@AuraAcorn
@AuraAcorn 13 күн бұрын
Final program wasn't a fruit ninja, it was a fruit samurai
@noahnash7265
@noahnash7265 Ай бұрын
Would there be a way to remove the fruit juice in the background to make it perform better?
@cinnamonsugarcourtney6073
@cinnamonsugarcourtney6073 2 ай бұрын
Oh hey, I was wondering why you didn't just use color averages at the beginning, looks like you figured it out though! :3
@feffy380
@feffy380 Ай бұрын
I'm thinking the color sampling code could have been massively simplified by just scaling the image down, which is a highly optimized operation in most image processing libraries
@elicooper5233
@elicooper5233 Ай бұрын
we need code bullet to do this
@pierpaolopinna6301
@pierpaolopinna6301 Ай бұрын
considering an impunt based on 2 succesful screenshot (instead of 1) would make the program too slow? good job thought, nice project
@memeboi6913
@memeboi6913 2 ай бұрын
Finally, the first Fruit Ninja TAHS (Tool Assisted High Score)
@godofall332
@godofall332 18 күн бұрын
Can we use Ultralytics YOLOv8 for this? I understand the processing time would increase, and it would need some program optimizations (what you did at 6:11), but it might be able to avoid bombs completely, making it better at play. Creating a dataset for this is easier than normal; let me know your take on this. By the way a great video, it helped knowing how you approached this problem from a problem-solving point of view 😊.
@konothomasda7430
@konothomasda7430 Ай бұрын
Maybe implementing sound extraction might help?
@cosmilitebar6772
@cosmilitebar6772 Ай бұрын
For screenshots i tent to use mss library, its much faster than pyautoguis screenshot method. Maybe you could do a v2 with machine learning, yolo 5 or really any version of it would probably perform much more accurate. And also extremly fast as that stuff runs on the gpu. Nice Video, its cool to see games being automated.
@cruncyart
@cruncyart Ай бұрын
bro update your profile picture that's an extremely old cosmilite sprite
@rbbr08
@rbbr08 26 күн бұрын
Bro, just use deep learning. If you want it to be fast you can use some mobilenet network along with some rpn detection heads... Faster R-CNN or something like that. Like a 2 stage network.
@user-px2we6di1w
@user-px2we6di1w 20 күн бұрын
using A* pathfinding can be good choice for finding the right path for the mouse
@charlierogers98
@charlierogers98 18 күн бұрын
Make a bot to destroy Candy Crush and win every level without doing any single micro-transaction.
@lonelyPorterCH
@lonelyPorterCH Ай бұрын
Has been a long while since I played this^^
@robertstevensii4018
@robertstevensii4018 2 ай бұрын
7:55 watch the left side of the screen and imagine a very angry Beatrix Kiddo
@collincatmull1369
@collincatmull1369 2 ай бұрын
Code noodling time :) I always have loved your videos.
@CodeNoodles
@CodeNoodles 2 ай бұрын
Thanks!
@collincatmull1369
@collincatmull1369 2 ай бұрын
@@CodeNoodles Wow, Ive never had a youtuber near this popular even get close to talking to me. Thanks :)
@piercegames4577
@piercegames4577 2 ай бұрын
even in the image that had a blur effect I could tell you were using Visual Studio and Python
@Happy_Koopa_boi
@Happy_Koopa_boi 2 ай бұрын
You should do an image recognition thing but for suika game
@silver2797
@silver2797 Ай бұрын
your fruit killing skills are remarkable
@niji4894
@niji4894 22 күн бұрын
The most real part in this video. 5:20 the naming
@lolnt6103
@lolnt6103 2 ай бұрын
3:47 is that a gd reference
@king_ian_yt
@king_ian_yt 2 ай бұрын
its coincidence
@lolnt6103
@lolnt6103 2 ай бұрын
@@king_ian_ytwoah really, i could never have guessed it was a coincidence!!!!111!!!!11!
@user-fh3wg8oj6q
@user-fh3wg8oj6q Ай бұрын
Indeed, there is no need in ML. Pixelperfect analysis is enough
@strawsEXE
@strawsEXE 2 ай бұрын
Can you make a video about using image recognition to get the best possible scores on the human benchmark website?
@CodeNoodles
@CodeNoodles 2 ай бұрын
That's a good idea!
@kmyau_2583
@kmyau_2583 18 күн бұрын
2:44 The background music sounds familiar 🤫
@wewuwewu
@wewuwewu Ай бұрын
fruit ninja says "G太ME OVER"
@makxs4818
@makxs4818 Ай бұрын
what is the font You use on 0:16
@ontoya1
@ontoya1 2 ай бұрын
You should tag the dude that created Fruit Ninja, he's on KZbin!
@some_guy1990
@some_guy1990 Ай бұрын
Toriel got stuck in the dummy room
@navoddakshina767
@navoddakshina767 2 күн бұрын
Can you bring a video of how to make an auto clicker for the Bloom game(air drop)
@usptact
@usptact Ай бұрын
You can try to use computer vision algorithms for object detection to detect and track objects. Look into detectors like SIFT for example. Warning: it’s a DEEP rabbit hole.
@inciampare9083
@inciampare9083 Ай бұрын
8:27 funny green splatter
@ghb323
@ghb323 Ай бұрын
so the secret difficulty mode is AUTOMATING the gameplay
@ExplosiveGames
@ExplosiveGames 2 ай бұрын
Nice, super cool bro
@CodeNoodles
@CodeNoodles 2 ай бұрын
Thanks!
@00_ontop
@00_ontop 19 күн бұрын
The animatronics do get a little quirky at night…
@Bostumo
@Bostumo 7 сағат бұрын
PLEASE I'M BEGGING YOU I NEED TO KNOW WHAT 2:45 MUSIC IS I REMEMBER IT FROM MY CHILDHOOD BUT CAN'T PUT MY FINGER ON IT, THE MUSIC SECTION DOESNT SAY ANYTHING!
@ThegreatLynix
@ThegreatLynix Ай бұрын
Now,Do it with snake eating fruit game 😈
@danveverita3077
@danveverita3077 Ай бұрын
The edges of the bomb is always red, you could yes that as an identifier
@salvadormilanesbraniff3511
@salvadormilanesbraniff3511 2 ай бұрын
That second song and the fact I recognize where it from 💀
@SmokeyyYT
@SmokeyyYT Ай бұрын
it sounds so familiar but cant remember from where
@e_gorrr
@e_gorrr 25 күн бұрын
No one will say that the program chops pomegranates like in anime?
Image Recognition DESTROYS Mario Minigames
13:35
CodeNoodles
Рет қаралды 731 М.
I Played the HARDEST Skyblock
25:16
Lord Jon25
Рет қаралды 4,8 МЛН
КАКОЙ ВАШ ЛЮБИМЫЙ ЦВЕТ?😍 #game #shorts
00:17
Poopigirl
Рет қаралды 11 МЛН
Eccentric clown jack #short #angel #clown
00:33
Super Beauty team
Рет қаралды 31 МЛН
Omega Boy Past 3 #funny #viral #comedy
00:22
CRAZY GREAPA
Рет қаралды 36 МЛН
High precision speed reducer using rope
20:19
Aaed Musa
Рет қаралды 945 М.
Coding an AI to Play Fruit Ninja
24:23
TwoPoint Code
Рет қаралды 2,7 М.
A.I. Learns To PERFECT Flappy Bird
4:44
Tyler Mommsen
Рет қаралды 2 М.
7 DEVS Make a GAME without COMMUNICATING! (centipede edition)
17:16
Blackthornprod
Рет қаралды 965 М.
Optimizing my Game so it Runs on a Potato
19:02
Blargis
Рет қаралды 378 М.
How Speedrunners Conquered The World's Hardest Game
54:46
Maximum
Рет қаралды 4,1 МЛН
I Made a Neural Network with just Redstone!
17:23
mattbatwings
Рет қаралды 486 М.
Can You Beat Poly Bridge 2 Using One Road?
11:58
Reid Captain
Рет қаралды 6 МЛН
I Made Fruit Ninja Into a REAL 8-Bit NES Game
11:03
Inkbox
Рет қаралды 256 М.
cool watercooled mobile phone radiator #tech #cooler #ytfeed
0:14
Stark Edition
Рет қаралды 8 МЛН
Карточка Зарядка 📱 ( @ArshSoni )
0:23
EpicShortsRussia
Рет қаралды 705 М.
iPhone 15 Pro vs Samsung s24🤣 #shorts
0:10
Tech Tonics
Рет қаралды 11 МЛН
ПК с Авито за 3000р
0:58
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 2 МЛН