Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ndresize

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ndresize

Resizes n-dimensional images (or volumes) by cropping and padding

  • 0.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

ndresize

Code for cropping and padding n-dimensional images.

Installation

Via npm:

npm install ndimage-resize

Example

Here is how to resize a 3D array:

var volume = [[[1]]];
var resized = require("ndimage-resize")([3,3,3], volume);

Now resized will be a volume which is 3x3x3, padded with 0s.

require("ndimage-resize")(dims, image[, result])

Resizes the image image to dims by cropping or padding along each dimension independently. The result is stored in result if specified, otherwise a new array is created.

  • dims are the dimensions for the new image
  • image is the image to crop/pad
  • result gets the result. Must be size of dims. (optional)

Returns the resulting cropped/padded image.

Credits

(c) 2013 Mikola Lysenko. BSD License

Keywords

FAQs

Package last updated on 17 Feb 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc