publiclab/image-sequencer

View on GitHub

Showing 206 of 267 total issues

Function Threshold has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function Threshold(pixels, options, histData) {
  var defaults = require('./../../util/getDefaults.js')(require('./info.json'));
   
  type = options.threshold || defaults.threshold;
  threshold = parseInt(options.input) || defaults.input;
Severity: Minor
Found in src/modules/Threshold/Threshold.js - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Avoid deeply nested control flow statements.
Open

            for (let c = 0; c < channels; c++) {
              frames[f].set(x, y, c, pixels.get(f, x, y, c));
            }
Severity: Major
Found in src/modules/_nomodule/PixelManipulation.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

          if (!((grads[x][y] >= grads[x][y + 1]) && (grads[x][y] >= grads[x][y - 1]))) {
            pixelsToBeSupressed.push([x, y]);
          }
Severity: Major
Found in src/modules/EdgeDetect/EdgeUtils.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

        for (var k = 0; k < (w + options.X_value); k++) {
          for (var l = 0; l < Math.abs(options.Y_value); l++) {
            if (l >= ((options.X_value / Math.abs(options.Y_value)) * (w + options.X_value - k)) && k >= w) {
              continue;
            }
Severity: Major
Found in src/modules/Shadow/Module.js - About 45 mins to fix

Function copyPixel has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

  function copyPixel(x1, y1, x2, y2, finalPix, initPix) {
Severity: Minor
Found in src/modules/Rotate/Rotate.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

          for (let j = 0; j < jMax && j < h; j++) {
            let x = i + Math.abs(options.X_value), y = j;
            pixelSetter(x, y, [pixels.get(i, j, 0), pixels.get(i, j, 1), pixels.get(i, j, 2), pixels.get(i, j, 3)], newPixels);
          }
Severity: Major
Found in src/modules/Shadow/Module.js - About 45 mins to fix

Function categorizeAngle has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function categorizeAngle(angle){
  const pi = Math.PI;
  angle = angle > 0 ? angle : pi - Math.abs(angle); // Diagonally flip the angle if it is negative (since edge remains the same)

  if (angle <= pi / 8 || angle > 7 * pi / 8) return 1;
Severity: Minor
Found in src/modules/EdgeDetect/EdgeUtils.js - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Avoid deeply nested control flow statements.
Open

          if (!((grads[x][y] >= grads[x + 1][y - 1]) && (grads[x][y] >= grads[x - 1][y + 1]))) {
            pixelsToBeSupressed.push([x, y]);
          }
Severity: Major
Found in src/modules/EdgeDetect/EdgeUtils.js - About 45 mins to fix

Function map has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    function map(n, start1, stop1, start2, stop2, withinBounds) {
Severity: Minor
Found in src/modules/Dynamic/Module.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

        while( k <= 8){
          let newX = x + neighbourX[k], newY = y + neighbourY[k];

          if( newX >= 0 && newX < pixels.shape[0])
          {
Severity: Major
Found in src/modules/NoiseReduction/NoiseReduction.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

          if( newX >= 0 && newX < pixels.shape[0])
          {
            if( newY >= 0 && newY < pixels.shape[1]){
              windowr[i] = pixels.get((newX), (newY), 0);
              windowg[i] = pixels.get((newX), (newY), 1);
Severity: Major
Found in src/modules/NoiseReduction/NoiseReduction.js - About 45 mins to fix

Function getDirectories has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

var getDirectories = function(rootDir, cb) {
  fs.readdir(rootDir, function(err, files) {
    var dirs = [];
    if (typeof (files) == 'undefined' || files.length == 0) {
      cb(dirs);
Severity: Minor
Found in src/ExportBin.js - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function changePixel has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

      function changePixel(r2, g2, b2, a2, x, y) {
Severity: Minor
Found in src/modules/Blend/Module.js - About 45 mins to fix

Function Run has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

function Run(ref, json_q, callback, ind, progressObj) {
Severity: Minor
Found in src/Run.js - About 35 mins to fix

Function getNeighbourPixel has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    function getNeighbourPixel(pixels, curX, curY, distX, distY) {
Severity: Minor
Found in src/modules/Dynamic/Module.js - About 35 mins to fix

Function sobelFilter has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

function sobelFilter(pixels, x, y) {
  let val = pixels.get(x, y, 0),
    gradX = 0.0,
    gradY = 0.0;

Severity: Minor
Found in src/modules/EdgeDetect/EdgeUtils.js - About 35 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function kernelGenerator has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

function kernelGenerator(sigma = 1) {

  let kernel = [],
    sum = 0;

Severity: Minor
Found in src/modules/Blur/Blur.js - About 35 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function createMetaModule has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function createMetaModule(mapFunction, moduleOptions) {

  moduleOptions = moduleOptions || {};
  moduleOptions.infoJson = moduleOptions.infoJson || {};

Severity: Minor
Found in src/util/createMetaModule.js - About 35 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function Resize has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function Resize(pixels, options) {
  const resize_value = parseFloat(options.resize);

  if (resize_value == 100) return pixels;

Severity: Minor
Found in src/modules/Resize/Resize.js - About 35 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function copy has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function copy(a) {
  if (!typeof(a) == 'object') return a;
  if (objTypeOf(a) == 'Array') return a.slice();
  if (objTypeOf(a) == 'Object') {
    var b = {};
Severity: Minor
Found in src/FormatInput.js - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Severity
Category
Status
Source
Language