npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@smcgann/node-red-face-vectorization-plus

v0.0.4

Published

Face Image Vectorization Node for Node-RED

Readme

platform npm version Min Node Version GitHub license

@smcgann/node-red-face-vectorization-plus

A Node-RED node that vectorizes facial images using AI.

You can use the output of this node with 🔗 @smcgann/node-red-cosine-similarity-plus as part of a face recognition flow.

This node is based on 🔗 @good-i-deer/node-red-contrib-face-vectorization

Key Changes

✔ Added Typed Input for incoming msg property.
✔ Improved performance.
✔ Updated dependencies.
✔ Removed unnecessary dependencies.
Easier integration into Node-RED flows.


Installation

Either use the Edit Menu - Manage Palette option to install, or run the following command in your Node-RED user directory - typically ~/.node-red

cd ~/.node-red
npm install @smcgann/node-red-face-vectorization-plus

Restart your Node-RED instance


Input Properties

👤 Single Image

  • The input can be one of the following:
    • Buffer: A Buffer containing the image data.
    • File Path: A string representing the file path to the image.

👥 Image Array

  • The input should be an array of Buffers, each containing the image data for one face.

Node Properties

🏷️ Name

  • The name displayed in the Node-RED editor.

⚙️ Property

  • Incomming msg property to use ( Default msg.payload )

📥 Input Type

  • You can choose whether to input a single image or multiple images.
    • Single Image: Insert one image buffer, file path, or URL.
    • Multiple Images: Insert multiple image buffers in the form of an array.

📤 Return Type

  • You can choose how to receive the vector result:
    • Array of Arrays: Receive the vector result as an array.
    • Text File: Save the vector result as a file. The data will be saved as an array of vector arrays of faces. When this option is selected, the Path and Method properties are activated. It is recommended to save the data as a text file.

📂 Path

  • Specify the desired file path, including the file name and extension, when saving the vector data as a text file. If an absolute path is not specified, it will be determined based on the execution space.

🔧 Method

  • When saving a file, you can choose whether to:
    • Overwrite: Overwrite the existing file.
    • Add: Append to the existing file.
    If the file does not already exist, it will be created.

📤 Output Properties

Array of Arrays

  • Vectors for faces are output in the form of an array to msg.payload.

Text File

  • Save vector data in file format. Depending on the method, overwrite or add to the file.

✍️ Authors

S.McGann → Modified Version.

GOOD-I-DEER in SSAFY(Samsung Software Academy for Youth) 9th

📜 Copyright and license

S.McGann → Modified Version
Copyright Samsung Automation Studio Team under the Apache 2.0 license

Reference