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

nifti-reader-js

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nifti-reader-js - npm Package Compare versions

Comparing version 0.6.2 to 0.6.3

2

package.json
{
"name": "nifti-reader-js",
"version": "0.6.2",
"version": "0.6.3",
"description": "A JavaScript NIfTI file format reader.",

@@ -5,0 +5,0 @@ "main": "src/nifti.js",

@@ -241,2 +241,8 @@

/* See: https://nifti.nimh.nih.gov/pub/dist/src/niftilib/nifti1.h */
if ((this.qform_code < 1) && (this.sform_code < 1)) {
// METHOD 0 (used when both SFORM and QFORM are unknown)
this.affine[0][0] = this.pixDims[1];
this.affine[1][1] = this.pixDims[2];
this.affine[2][2] = this.pixDims[3];
}
if ((this.qform_code > 0) && (this.sform_code < this.qform_code)) {

@@ -243,0 +249,0 @@ // METHOD 2 (used when qform_code > 0, which should be the "normal" case):

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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