Hola
En la línea 143 no hay ningún punto... he borrado toda la línea y vuelto a escribir, ahora me dice que la función no está definida :shock: , he vuelto a bajar el script entero y lo mismo :shock: :shock: (diferente error con respecto ayer)
Esto es lo que tengo en la lína 143 :
new scaling_function ("3x3 Linear Interpolation", [
Y el error que me da en la consola de programación:
Processing script file: C:/PCL/src/scripts/masked-stretch-transform.js
*** Error [001]: C:/PCL/src/scripts/masked-stretch-transform.js, line 143: ReferenceError: scaling_function is not defined
Edito: Estoy muy oxidado en programación pero supongo la función está definida:
function mst_engine() {
var stats = new ImageStatistics;
var win; // image window we'll modify
var hist = new HistogramTransform;
var shadows_clipping = new HistogramTransform;
var mtf;
this.scaling_function = function (name, kernel) {
this.name = name;
this.kernel = kernel;
}
this.scaling_functions = new Array (
new scaling_function ("3x3 Linear Interpolation", [ //estoy lo incluyo yo, es la línea 143
1/16, 1/8, 1/16,
1/8, 1/4, 1/8,
1/16, 1/8, 1/16
]),