Is it possible to send a local stored picture from my phone to the Telegram APP and then see it in Node-red?.
I know that we can do that with an usb camera but i want to do it another way.
The idea is to work with some tensorflow, now i have some flows but i need to select manually the picture that i want to process. The main idea is to send the picture through Telegram and then node-red to process it.
I have this by far...
[{"id":"28cdadc8.e454e2","type":"tab","label":"TensorFlow","disabled":false,"info":""},{"id":"fd2a033b.71ad2","type":"fileinject","z":"28cdadc8.e454e2","name":"","x":180,"y":120,"wires":[["ff61bbb2.6de208","9b2fdae2.c3fda8"]]},{"id":"9b2fdae2.c3fda8","type":"cocossd","z":"28cdadc8.e454e2","name":"","x":440,"y":120,"wires":[["bd78d3b7.3cf9c","cb45eb12.edfe58"]]},{"id":"bd78d3b7.3cf9c","type":"debug","z":"28cdadc8.e454e2","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":790,"y":120,"wires":[]},{"id":"ff61bbb2.6de208","type":"image","z":"28cdadc8.e454e2","name":"Original image","width":"160","data":"payload","dataType":"msg","thumbnail":false,"active":true,"pass":false,"outputs":0,"x":310,"y":200,"wires":[]},{"id":"cb45eb12.edfe58","type":"image","z":"28cdadc8.e454e2","name":"","width":"160","data":"annotatedInput","dataType":"msg","thumbnail":false,"active":true,"pass":false,"outputs":0,"x":600,"y":200,"wires":[]}]
If i connect a Telegram Node and debug it i can see that the API stores the picture, so maybe i can capture that and send it to the COCOSSD node.
Look:
Thanks in advance.