MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Further personalization with Face-Reco

    Scheduled Pinned Locked Moved General Discussion
    16 Posts 3 Posters 2.9k Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M Offline
      Macboy
      last edited by

      Thanks Sam. I’ll get to Googling how to do that. (New to this but loving the learning.)

      1 Reply Last reply Reply Quote 0
      • M Offline
        Macboy
        last edited by Macboy

        That was a quick find. Thanks for the direction. I had put my list of compliments into the compliments.js file, not in the instance in config.js.

        Edit - spoke too soon. If I try to move the compliments out of compliments.js (under the defaults) and into a config grouping as shown on the module use instructions in config.js not only does the mirror load up no longer using face recognition, but the compliments module shows as undefined. I’ll look into the forum use tools and see if I can figure out how to post the code here.

        1 Reply Last reply Reply Quote 0
        • M Offline
          Macboy
          last edited by

          This post is deleted!
          JerryPJ 1 Reply Last reply Reply Quote 0
          • M Offline
            Macboy
            last edited by

            This post is deleted!
            1 Reply Last reply Reply Quote 0
            • JerryPJ Offline
              JerryP @Macboy
              last edited by

              @Macboy said in Further personalization with Face-Reco:

              MMM-TweetsByTimelineOrList

              Maybe i’t wise to remove the Ica url and your token licens code.
              so now I can check you agenda.

              S M 2 Replies Last reply Reply Quote 0
              • S Offline
                sdetweil @JerryP
                last edited by sdetweil

                @JerryP you are not following the doc.

                module: "compliments",
                classes:"......",
                config:{
                   compliments:{
                       ....
                    }
                }
                

                https://docs.magicmirror.builders/modules/compliments.html#configuration-options

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                JerryPJ 1 Reply Last reply Reply Quote 0
                • M Offline
                  Macboy @JerryP
                  last edited by

                  @JerryP

                  Haha! Good to know! Thanks for pointing that out to me. It’s a pretty dormant Twitter account but I guess one never knows how that could be used.

                  1 Reply Last reply Reply Quote 0
                  • M Offline
                    Macboy
                    last edited by

                    @michmich @paviro

                    I’m unable to edit the posts above with my wife’s tokens because too much time has passed since I posted. Do one of you have the ability to either redact that portion of the code snippets (the TimelineOrList sections) in both posts above?

                    Possibly harmless to have that info out in public but someone could maliciously use her account for evil I guess. If the posts need to be removed that is okay as well. And if there is a method available to me to pull the posts or edit them I’m happy to do so - just let me know how. I’ll be more alert next time I start posting code. Funny enough I DID take a quick scan making sure I wasn’t posting SSIDs and passwords…haha

                    If anyone else knows how I can change that up just let me know.

                    1 Reply Last reply Reply Quote 0
                    • JerryPJ Offline
                      JerryP @sdetweil
                      last edited by

                      @sdetweil
                      ??? WHATEVER… it’s not my account…

                      Luckily @macboy is getting the hint :) :)

                      M 1 Reply Last reply Reply Quote 0
                      • M Offline
                        Macboy
                        last edited by Macboy

                        Just reposting the initial posts which I’ve deleted with the important info removed. (Thanks again for the heads up on what’s sensitive info and what’s not guys!)

                        ------- Original post (in case anyone happens across this and doesn’t understand what my question/issue was) --------

                        With my compliments.js per below and my config.js also per below, the Face Reco works. I’ll post a second reply here showing how I tried to change both of these files.

                        Module.register("compliments", {
                        	// Module config defaults.
                        	defaults: {
                        		compliments: {
                        			anytime: ["Hey there, looking good!"],
                        			morning: ["Good morning!", "Enjoy your day!", "Attack today!"],
                        			afternoon: ["Hello, beauty!", "You look great!", "Looking good today!"],
                        			evening: ["You nailed the day!", "What a great day!", "Hi family!"],
                        			"....-01-01": ["Happy new year!"]
                        		},
                        		updateInterval: 80000,
                        		remoteFile: null,
                        		fadeSpeed: 4000,
                        		morningStartTime: 3,
                        		morningEndTime: 12,
                        		afternoonStartTime: 12,
                        		afternoonEndTime: 17,
                        		random: true,
                        		mockDate: null
                        	},
                        
                        

                        And my current config.js (the whole thing since I can’t figure out why it’s reverting to no Face Reco when I change it).

                        var config = {
                        	address: "localhost", 	// Address to listen on, can be:
                        							// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
                        							// - another specific IPv4/6 to listen on a specific interface
                        							// - "0.0.0.0", "::" to listen on any interface
                        							// Default, when address config is left out or empty, is "localhost"
                        	port: 8080,
                        	basePath: "/", 	// The URL path where MagicMirror is hosted. If you are using a Reverse proxy
                        					// you must set the sub path here. basePath must end with a /
                        	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], 	// Set [] to allow all IP addresses
                        															// or add a specific IPv4 of 192.168.1.5 :
                        															// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                        															// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                        															// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
                        
                        	useHttps: false, 		// Support HTTPS or not, default "false" will use HTTP
                        	httpsPrivateKey: "", 	// HTTPS private key path, only require when useHttps is true
                        	httpsCertificate: "", 	// HTTPS Certificate path, only require when useHttps is true
                        
                        	language: "en",
                        	logLevel: ["INFO", "LOG", "WARN", "ERROR"],
                        	timeFormat: 24,
                        	units: "metric",
                        	// serverOnly:  true/false/"local" ,
                        	// local for armv6l processors, default
                        	//   starts serveronly and then starts chrome browser
                        	// false, default for all NON-armv6l devices
                        	// true, force serveronly mode, because you want to.. no UI on this device
                        
                        	modules: [
                        		{
                            module: 'MMM-Face-Reco-DNN',
                            config: {
                              // Logout 15 seconds after user was not detected any more
                              // If they are detected within this period, the delay will start again
                              logoutDelay: 15000,
                              // How often the recognition starts in milliseconds
                              // With a Raspberry Pi 3+ it works well every 2 seconds
                              checkInterval: 2000,
                              // Module set used for when there is no face detected ie no one is in front of the camera
                              noFaceClass: 'noface',
                              // Module set used for when there is an unknown/unrecognised face detected
                              unknownClass: 'unknown',
                              // Module set used for when there is a known/recognised face detected
                              knownClass: 'known',
                              // Module set used for strangers and if no user is detected
                              defaultClass: 'default',
                              // Set of modules which should be shown for any user ie when there is any face detected
                              everyoneClass: 'everyone',
                              // Set of modules that are always shown - show if there is a face or no face detected
                              alwaysClass: 'always',
                              // XML to recognize with haarcascade
                              cascade: 'modules/MMM-Face-Reco-DNN/tools/haarcascade_frontalface_default.xml',
                              // Pre-encoded pickle with the faces
                              encodings: 'modules/MMM-Face-Reco-DNN/tools/encodings.pickle',
                              // Use Raspberry Pi camera or another type
                              // 1 = RasPi camera, 0 = other camera
                              usePiCamera: 1,
                              // If using another type of camera, you can choose
                              // i.e. 0 = /dev/video0 or 'http://link.to/live'
                              source: 0,
                              // Rotate camera
                              rotateCamera: 0,
                              // Method of facial recognition
                              // dnn = deep neural network, haar = haarcascade
                              method: 'dnn',
                              // Which face detection model to use
                              // "hog" is less accurate but faster on CPUs
                              // "cnn" is a more accurate deep-learning model which is GPU/CUDA accelerated
                              detectionMethod: 'hog',
                              // How long in milliseconds modules take to hide and show
                              animationSpeed: 0,
                              // Path to Python to run the face recognition
                              // null or '' means default path
                              pythonPath: null,
                              // Should a welcome message be shown using the MagicMirror alerts module?
                              welcomeMessage: true,
                              // Capture new pictures of recognized people, if unknown we save it in folder "unknown"
                              // So you can extend your dataset and retrain it afterwards for better recognitions
                              extendDataset: false,
                              // If extendDataset is true, you need to set the full path of the dataset
                              dataset: 'modules/MMM-Face-Reco-DNN/dataset/',
                              // How much distance between faces to consider it a match. Lower is more strict.
                              tolerance: 0.6,
                              // allow multiple concurrent user logins, 0=no, any other number is the maximum number of concurrent logins
                              multiUser: 0,
                            }
                        },
                        		{
                        			module: "alert",
                        		},
                        		{
                        			module: "updatenotification",
                        			position: "top_bar"
                        		},
                        		{
                        			module: "clock",
                        			position: "top_left",
                        			classes: 'always'
                        		},
                        		{
                        			module: "calendar",
                        			header: "Coming Up...",
                        			position: "top_left",
                        			classes: 'anna julia kathy kelly',
                        			config: {
                        				calendars: [
                        					{
                        						symbol: "calendar-check",
                        						url: "https://"					}
                        				]
                        			}
                        		},
                        
                        		{
                        			module: "compliments",
                        			position: "lower_third",
                        			classes: 'kelly'
                        		},
                        
                        		{
                        			module: "currentweather",
                        			position: "top_right",
                        			classes: 'anna julia kathy kelly',
                        			config: {
                        				location: "Sherwood Park",
                        				locationID: "5946768", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
                        				appid: "71ddee6bbdcfb25b97866519bc4a52bc"
                        			}
                        		},
                        	{
                        		module: "MMM-weatherforecast",
                        		position: "top_right",	// This can be any of the regions.
                        					// Best results in bottom_bar region due to horizontal default layout and icon sizes.
                        
                        			classes: 'anna julia kathy kelly',
                        		config: {
                        			// See 'Configuration options' for more information.
                        			location: "Sherwood Park",
                        			locationID: "5946768", //Location ID from http://openweathermap.org/help/city_list.txt
                        			appid: "71ddee6bbdcfb25b97866519bc4a52bc" //openweathermap.org API key.
                        		}
                        	},
                        		{
                        			module: "newsfeed",
                        			position: "bottom_bar",
                        			classes: 'anna julia',
                        			config: {
                        				feeds: [
                        					{
                        						title: "According to CBC",
                        						url: "https://rss.cbc.ca/lineup/canada-edmonton.xml"
                        					},
                        										{
                        						title: "Upcoming Family Opportunities",
                        						url: "https://www.raisingedmonton.com/feed/"
                        					}
                        									],
                        				showSourceTitle: true,
                        				showPublishDate: true,
                        				broadcastNewsFeeds: true,
                        				broadcastNewsUpdates: true
                        			}
                        		},
                        			{
                        		module: 'MMM-TweetsByTimelineOrList',
                        		position: 'bottom_right',
                        		classes: 'kathy kelly',
                        		config: {
                        		// visit the url below for the twitter keys/tokens
                        		// https://dev.twitter.com/oauth/overview/application-owner-access-tokens
                        			consumer_key: 'XXXXX',
                        			consumer_secret: 'XXXXX',
                        			access_token_key: 'XXXXX',
                        			access_token_secret: 'XXXXX',
                        		// set the username and either timeline or listname
                        	        screenName: 'XXXXXXXXXXX',
                        	        listToShow: 'TIMELINE',
                        		}
                        	},
                        	{
                                    module: 'default/MMM-Dad-Jokes',
                                    position: 'bottom_bar', // Or wherever you want
                        
                        		classes: 'anna julia',
                                    config: {
                                        updateInterval: 600000,
                                        fadeSpeed: 4000
                                    }
                                },
                        		{
                            module: 'default/MMM-ATM',
                            position: 'bottom_bar',              // Works well anywhere
                        	classes: 'anna julia',
                            config: {
                        	multipleChoice: "Yes",        // No = just the ? then the answer
                        	useHeader: true,              // true if you want a header
                        	header: "Feed your brain!",   // Any text you want
                        	maxWidth: "1250px",             // Stretch or constrain according to region
                            }
                        }
                        	]
                        };
                        
                        /*************** DO NOT EDIT THE LINE BELOW ***************/
                        if (typeof module !== "undefined") {module.exports = config;}
                        
                        
                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 1 / 2
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy