Sponsored Content
Top Forums Programming Telegram Object Detection Bot using Node-RED and TensorFlow Object Detection on macOS Post 303044879 by Neo on Saturday 7th of March 2020 03:07:16 AM
Old 03-07-2020
Now that all is working "OK"... I moved this Node-RED image detection app to a MacBook Air, using the built-in web cam, and am now trying to detect the seagulls when they fly into my "balcony bonsai tree", LOL. USB cord for the Logitech HD cam was not long enough from the trash can mac on my desktop.

So far, no birds! Waiting..... waiting...... cyberstalking ..... tensorflowing.....

If it works, first we will try playing some "qwaaawk... qwaaaak " or "brraaapp... braaapp" audio clip loudly ... haha

Telegram Object Detection Bot using Node-RED and TensorFlow Object Detection on macOS-img_9213jpg
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

virus detection

IS there virus software for unix? I worked in a Solaris environment and dont remember having anything. I also ask because the current enviroment i am working on is Microsoft and they argue that they do not use unix because of virus detection. Any input would be greatly appreciated. (1 Reply)
Discussion started by: pbonilla
1 Replies

2. IP Networking

modem detection

How to get information that where is my modem configured in /dev. I have two modems configured in my device .. one is USB and other is PCI modem.. USB is detected as /dev/USB0. but how to see about PCI modem? (0 Replies)
Discussion started by: s123.radha
0 Replies

3. UNIX for Dummies Questions & Answers

Object reference not set to an instance of an object

I am new to PHP and UNIX. I am using Apache to do my testing on a Windows Vista machine. I am getting this error when I am trying to connect to a web service. I did a search and did not see any posts that pertain to this. Here is my function: <?php function TRECSend($a, $b, $c, $d,... (0 Replies)
Discussion started by: EddiRae
0 Replies

4. Programming

Parallel Processing Detection and Program Return Value Detection

Hey, for the purpose of a research project I need to know if a specific type of parallel processing is being utilized by any user-run programs. Is there a way to detect whether a program either returns a value to another program at the end of execution, or just utilizes any form of parallel... (4 Replies)
Discussion started by: azar.zorn
4 Replies

5. Programming

How to initialize an object with another object of different class?

How to initialize an object of class say "A", with an object of type say "B". The following code give the error message "error: conversion from âAâ to non-scalar type âBâ requested" #include <iostream> using namespace std; class B; class A{ public: A() { cout <<"\nA()" << endl; } ... (1 Reply)
Discussion started by: techmonk
1 Replies

6. What is on Your Mind?

Telegram Bots - Bot Code Examples

I'm currently looking into ways to integrate the Telegram API into the forums: Telegram Bots - Bot Code Examples I'm thinking, first off, to use the Telegram API to get forum alerts and notifications (to Bot or Not?). Second, I thinking of ways to more deeply integrate Telegram into the... (5 Replies)
Discussion started by: Neo
5 Replies

7. What is on Your Mind?

MQTT, Node-RED, Linux, Apache2, MySQL, PHP, Telegram, ESP32, ESP8266, Arduino

I have just completed the first phase of integrating all these devices and technologies: MQTT, Node-RED, Linux, Apache2, MySQL, PHP, Telegram, ESP32, ESP8266, and the Arduino Uno The glue that binds all this together is MQTT. In fact, MQTT makes this kind of integration nearly trivial to... (1 Reply)
Discussion started by: Neo
1 Replies

8. Programming

Programming a Telegram Bot Using Node-RED, PHP, and MySQL

Yesterday, I announced the first release of a "Telegram Computer Trivia Bot" in this post: Play Computer Trivia on Telegram In this post, I will provide a high level overview of the application. The main components in this application are: Node-RED LAMP (Linux, Apache2, MySQL, PHP)... (7 Replies)
Discussion started by: Neo
7 Replies
ct_rpc(3erl)						     Erlang Module Definition						      ct_rpc(3erl)

NAME
ct_rpc - Common Test specific layer on Erlang/OTP rpc. DESCRIPTION
Common Test specific layer on Erlang/OTP rpc. EXPORTS
app_node(App, Candidates) -> NodeName Types App = atom() Candidates = [NodeName] NodeName = atom() From a set of candidate nodes determines which of them is running the application App. If none of the candidate nodes is running the application the function will make the test case calling this function fail. This function is the same as calling app_node(App, Can- didates, true) . app_node(App, Candidates, FailOnBadRPC) -> NodeName Types App = atom() Candidates = [NodeName] NodeName = atom() FailOnBadRPC = true | false Same as app_node/2 only the FailOnBadRPC argument will determine if the search for a candidate node should stop or not if badrpc is received at some point. app_node(App, Candidates, FailOnBadRPC, Cookie) -> NodeName Types App = atom() Candidates = [NodeName] NodeName = atom() FailOnBadRPC = true | false Cookie = atom() Same as app_node/2 only the FailOnBadRPC argument will determine if the search for a candidate node should stop or not if badrpc is received at some point. The cookie on the client node will be set to Cookie for this rpc operation (use to match the server node cookie). call(Node, Module, Function, Args) -> term() | {badrpc, Reason} Same as call(Node, Module, Function, Args, infinity) call(Node, Module, Function, Args, TimeOut) -> term() | {badrpc, Reason} Types Node = NodeName | {Fun, FunArgs} Fun = function() FunArgs = term() NodeName = atom() Module = atom() Function = atom() Args = [term()] Reason = timeout | term() Evaluates apply(Module, Function, Args) on the node Node. Returns whatever Function returns or {badrpc, Reason} if the remote proce- dure call fails. If Node is {Fun, FunArgs} applying Fun to FunArgs should return a node name. call(Node, Module, Function, Args, TimeOut, Cookie) -> term() | {badrpc, Reason} Types Node = NodeName | {Fun, FunArgs} Fun = function() FunArgs = term() NodeName = atom() Module = atom() Function = atom() Args = [term()] Reason = timeout | term() Cookie = atom() Evaluates apply(Module, Function, Args) on the node Node. Returns whatever Function returns or {badrpc, Reason} if the remote proce- dure call fails. If Node is {Fun, FunArgs} applying Fun to FunArgs should return a node name. The cookie on the client node will be set to Cookie for this rpc operation (use to match the server node cookie). cast(Node, Module, Function, Args) -> ok Types Node = NodeName | {Fun, FunArgs} Fun = function() FunArgs = term() NodeName = atom() Module = atom() Function = atom() Args = [term()] Reason = timeout | term() Evaluates apply(Module, Function, Args) on the node Node. No response is delivered and the process which makes the call is not sus- pended until the evaluation is compleated as in the case of call/[3,4]. If Node is {Fun, FunArgs} applying Fun to FunArgs should return a node name. cast(Node, Module, Function, Args, Cookie) -> ok Types Node = NodeName | {Fun, FunArgs} Fun = function() FunArgs = term() NodeName = atom() Module = atom() Function = atom() Args = [term()] Reason = timeout | term() Cookie = atom() Evaluates apply(Module, Function, Args) on the node Node. No response is delivered and the process which makes the call is not sus- pended until the evaluation is compleated as in the case of call/[3,4]. If Node is {Fun, FunArgs} applying Fun to FunArgs should return a node name. The cookie on the client node will be set to Cookie for this rpc operation (use to match the server node cookie). AUTHORS
<> common_test 1.5.3 ct_rpc(3erl)
All times are GMT -4. The time now is 12:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy