I love what you've done, keep up the good work and be awesome!
@stefanopadoanart18984 жыл бұрын
Thank you so much!
@sarojdhungana82394 жыл бұрын
Make a video how you made this drawing machine. By the way, its great. I subscribed. ❤️
@njorogekamau38208 ай бұрын
This is inspiring. I love it
@eduardos.p.28363 жыл бұрын
I really like this art a lot. congratulations!!!
@lucasRJ11 Жыл бұрын
Hello friend, I am a coder, and machine builder. I am wondering what code and products you used. I am going to try to build one myself. Help would be appritated.
@nathanaugusto11973 ай бұрын
Your work is really incredible, you should really show how to build this
@sugiono28013 жыл бұрын
very nice, where can i learn to build something like this?
@aygun013 жыл бұрын
Can you share the Code, diagrams and How did you do it?
@flawlesskayleo7058 Жыл бұрын
Do you sell the machine or share process of making one?
@johnrichards32352 жыл бұрын
Would love to build one to my friend. Do u have the materials list and instructions for your project ?
@OxygenGenesis3 жыл бұрын
This is super cool! Do you have a plan to make a machine like this but for brushes that need tilt and pen pressure???
@amallaamach23633 жыл бұрын
c'est vraiment géniale quelle logiciel t'a utiliser pour traiter les image svp
@3dgiftz3 жыл бұрын
How many it will take to complete one drawing
@taarek20213 жыл бұрын
My heart is melting, I love this
@rr7fireflyАй бұрын
How long does the ink in one pen last? Will it always be able to complete an entire drawing? It seems like a lot of ink goes into each of these images.
@AlejandroCastiblanco17122 күн бұрын
hola, normal despues de muchos trabajos calculas muy bien la duracion de la tinta, dependiendo de los esferos, los de gel escarchados y metalizados en mi caso duran 3 dibujos aproximadamente, depende del color, el negro siempre gasta mas, para dibujos prueba o economicos, uso tinta semigel un esfero offiesco puede durar mas de 10 dibujos, los marcadores acrilicos tampoco duran mucho, pero llenan muy rapido el espacio..
@hsuryakant2 жыл бұрын
please guide to make this machine. I am quite interested in building own. I have seen this type of machine in Kuala Lumpur, Malaysia
@eduardolima54953 жыл бұрын
Simply amazing!! I would add a camera in front of the board some temperature, light, wind and noise sensors. An algorithm that mix all that information and with the image of the person in front creates a unique artwork based on the current conditions. Your idea is simply amazing!!! I would love to be able one day to do something similar!
@julianmorguet25753 жыл бұрын
Had some similar Ideas. Think its awesome when you combine some sensors so every art piece is complete unique. At the moment i build something you describe but my project is about music and digital visualisations wich change by sensors. Just take you some time to learn the stuff you need for it and you will be so glad when its done :)
@AlejandroCastiblanco17122 күн бұрын
@@julianmorguet2575 buenas ideas, pero van perdiendo lo figurativo, copiar la imagen tal cual no es lo mas artistico, pero perderse en lo abstracto tampoco lo es.........siempre puedes agregar a mano o desde inkscape esas variaciones, el arte debe llevar sangre y alma del artista no todo son herramientas ni lo contrario solo ideas, es una combinacion de ambas
@3dprinterdrawing8878 ай бұрын
Podrías compartir el código?
@wifi-cheddar44632 жыл бұрын
centroidal voronoi tessellation very nice
@cdoodev4 жыл бұрын
This is incredible!
@stefanopadoanart18984 жыл бұрын
Thank you!
@igort5418 Жыл бұрын
Wow impresive
@fiammeggiante_ Жыл бұрын
Beautiful!
@jeffmac771 Жыл бұрын
AWESOME!
@khairulhairudy8453 жыл бұрын
hye bro.. can u do the tutorial tools making this super amazing machine drawing? how to contact u?
@hirankanchana2403 Жыл бұрын
I want to buy this machine
@kimbalcalkins6903 Жыл бұрын
how are you passing the control data to the Arduino ?
@stefanopadoanart1898 Жыл бұрын
That alone took me ages to figure out! Trought the serial port. I'm now checking that part of the code that I have't touched in ages and I can't understand how I got to that point... :/ First step is to convert the coordinates of the drawing into steps to feed to the motors, then, let's say I want to tell the Xstepper to move 123 steps and the Y stepper to move 234 steps, I send the number in this format: x123>y234> then I have a function that process that in the arduino and assign to the right stepper.
@kimbalcalkins6903 Жыл бұрын
@@stefanopadoanart1898 I do the same kind of thing with a project. I run a C program on my laptop which outputs a text file with step instructions. I have an SD card drive piggy backed on the Arduino where a sketch reads the step file.
@malikzadivlogs9155 Жыл бұрын
Charges of that machine?
@iruleme1014 жыл бұрын
Those images look amazing, I would love to build something similar. Would you be willing to share the code or list the algorithms and techniques you used?
@stefanopadoanart18984 жыл бұрын
Hi. I started by learning (which in my case translate in Googleing) about TSP art then it was just a matter of finding a way to make that more interesting. Unfortunately I can't be sharing the code just yet as it is pretty rubbish if I have to be honest, plus I'm not a informatic engenier and my skills is "try again maybe this time it works" kind of approach. I want to make some tutorials though. I'm very keen on showing on how to get Python to talk to Arduino for example as just that alone took me DAYS to figure out.
@iruleme1014 жыл бұрын
@@stefanopadoanart1898 Thanks for the info, I looked into TSP art but none of it looked as good as yours. I assume you draw a spiral between points instead of just a straight line? I found this guide for generating TSP art (www2.oberlin.edu/math/faculty/bosch/making-tspart-page.html), but I couldn't understand the paper on weighted Voronoi Stippling. Did you use this method or something different?
@stefanopadoanart18984 жыл бұрын
@@iruleme101 You're correct. It took me a while to figure out how to draw the spiral across the TSP points but I'm an amateur with very little knowledge. Adrian Secord has a repository on gitHub where you can download his Weighted Voronoi Stipple script (which is awesome). To TSP across those points there are a variety of different methods. The best one is using TSP concorde (or a python wrapper of the same script). Some interesting results also come from using the Nearest Neighbor solution.
@iruleme1014 жыл бұрын
@@stefanopadoanart1898 Is this the correct repository? github.com/ReScience-Archives/Rougier-2017 . I can't seem to find the one on Adrian Secord's github. Sorry for all the questions, my googling abilities seem to be failing me on this one.
@stefanopadoanart18984 жыл бұрын
Stuart Rolph yes that one! It’s awesome! I’m now starting to use also dithering. It’s a bit more messy and can yield interesting results!
@leonyp3 жыл бұрын
can i buy this machine anywhere?
@murchmurch76784 жыл бұрын
Omg why only 13 comments ??? Thsi is fking incredible
@stefanopadoanart18984 жыл бұрын
Thanks :)
@MrLeopain4 жыл бұрын
Per favore share your Scribi
@manoleioan62164 жыл бұрын
So is Python, not Processing, after all. Thanks for this information and really I appreciate your self-thaught effort!
@stefanopadoanart18984 жыл бұрын
Yes everything is coded using Python3. I've recently started using Processing for some abstract work but Python is still my battle horse :)
@currenluna4 жыл бұрын
Such a cool project
@fsthereal85113 жыл бұрын
This is art fam 👏
@ti7adahab7993 жыл бұрын
And the servo didn't work well.. when i connect it to L293d the makelangelo being disconnect with laptop.. what is the solution sir ??
@stefanopadoanart18983 жыл бұрын
Hi. Sorry I don't have a solution for that. Maybe try the forum? www.marginallyclever.com/learn/forum/ Good luck!
@ti7adahab7993 жыл бұрын
@@stefanopadoanart1898 thanks for quick response 🙏💙
@Sandroluis71604 ай бұрын
Hello friend, how are you, I loved your videos, could you teach me how to build this machine, I'm from Brazil, I don't understand much English
@nguyentai11124 жыл бұрын
amazing, how much time for software to create a path, and how much time this plotter complete the image?
@stefanopadoanart18984 жыл бұрын
To create the path it takes only few minutes (assuming that the base .jpg image is good enough). Plotting it takes anything in between 6 adn 12 hours.
@nguyentai11124 жыл бұрын
@@stefanopadoanart1898 how many stipple points are created for this picture( U said that u'r using Weighted Voronoi Stipple algorithm)
@ti7adahab7993 жыл бұрын
How can i make it work with Android phone ??
@peakeey4 жыл бұрын
What code did you use
@stefanopadoanart18984 жыл бұрын
A mixture of scripts I coded myself using Python
@creationsozone Жыл бұрын
cool !
@alisell21203 жыл бұрын
What program or plugin prepares an image to draw with circles?
@stefanopadoanart18983 жыл бұрын
Hi, It's an algorythm I wrote myself using python.
@alisell21203 жыл бұрын
@@stefanopadoanart1898 Are you selling this algorithm?
@تيفيلايف243 жыл бұрын
Hello my friend can you request
@MrLikeAsatellite3 жыл бұрын
This is actually the "Maslow" CNC machine with a pen instead of a router.
@ollie-d3 жыл бұрын
It's also MERT Arduino and Tech's Arduino XY plotter but more hacked together lol
@dajaco813 жыл бұрын
If you make it any better you might forget why you don't just use a printer 😂
@charleslocksley26022 жыл бұрын
This Would kill on tik tok
@stefanopadoanart18982 жыл бұрын
I do actually have a TikTok account :)
@manashpratimsaikia Жыл бұрын
you have not shown how the drawing progressed except the few doodlings. that way it is not convincing
@stefanopadoanart1898 Жыл бұрын
HI. Check the other videos
@ryanisber23533 жыл бұрын
Shh don’t tell him about printers
@ronbradshaw74043 жыл бұрын
This one is SSOOO FAKE!. First image is real but not the others...