forked from Neural-Systems-at-UIO/WebAlign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslicer.js
137 lines (134 loc) · 4.6 KB
/
slicer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
function dataslice(ouv,width,height){
let [ox,oy,oz,ux,uy,uz,vx,vy,vz]=ouv;
if(arguments.length===1){
width=Math.round(Math.sqrt(ux*ux+uy*uy+uz*uz));
height=Math.round(Math.sqrt(ux*vx+vy*vy+vz*vz));
}
let data=new Uint16Array(width*height);
let xdim=atlas.xdim;
let ydim=atlas.ydim;
let zdim=atlas.zdim;
let zslice=xdim*ydim;
for(let y=0;y<height;y++){
let hx=ox+vx*y/height;
let hy=oy+vy*y/height;
let hz=oz+vz*y/height;
for(let x=0;x<width;x++){
let lx=Math.round(hx+ux*x/width);
let ly=Math.round(hy+uy*x/width);
let lz=Math.round(hz+uz*x/width);
if( (lx>=0) && (lx<xdim) && (ly>=0) && (ly<ydim) && (lz>=0) && (lz<zdim) )
data[x+y*width]=atlas.blob[lx+ly*xdim+lz*zslice];
}
}
return {data:data,width:width,height:height};
}
function grayslice(ouv,width,height){
let [ox,oy,oz,ux,uy,uz,vx,vy,vz]=ouv;
if(arguments.length===1){
width=Math.round(Math.sqrt(ux*ux+uy*uy+uz*uz));
height=Math.round(Math.sqrt(ux*vx+vy*vy+vz*vz));
}
let data=new Uint8Array(width*height);
let xdim=atlas.xdim;
let ydim=atlas.ydim;
let zdim=atlas.zdim;
let zslice=xdim*ydim;
for(let y=0;y<height;y++){
let hx=ox+vx*y/height;
let hy=oy+vy*y/height;
let hz=oz+vz*y/height;
for(let x=0;x<width;x++){
let lx=Math.round(hx+ux*x/width);
let ly=Math.round(hy+uy*x/width);
let lz=Math.round(hz+uz*x/width);
if( (lx>=0) && (lx<xdim) && (ly>=0) && (ly<ydim) && (lz>=0) && (lz<zdim) )
data[x+y*width]=gray[lx+ly*xdim+lz*zslice];
}
}
return {data:data,width:width,height:height};
}
function drawslice(ouv,ctx,x,y,width,height,mode){
// if(mode===0)return;
let imagedata=ctx.getImageData(x,y,width,height);
width=imagedata.width;
height=imagedata.height;
let slicedata=dataslice(ouv,width,height).data;
let graydata=document.getElementById("modality").selectedIndex==1?grayslice(ouv,width,height).data:false;
let pixeldata=imagedata.data;
if(graydata){
let contrast=document.getElementById("contrast").valueAsNumber;
if(mode>0)
mode=-100;
let a=-mode;
let a100=100+mode;
let wh=width*height;
for(let i=0;i<wh;i++)
if(slicedata[i]>0){
let j=i<<2;
let ag=a*Math.min(255,graydata[i]*255/contrast);
pixeldata[j]=(pixeldata[j]*a100+ag)/100;
pixeldata[j+1]=(pixeldata[j+1]*a100+ag)/100;
pixeldata[j+2]=(pixeldata[j+2]*a100+ag)/100;
pixeldata[j+3]=255;
}
}else if(mode>=0){
let r=mode>>16;
let g=(mode>>8)&255;
let b=mode&255;
for(let y=1;y<height-1;y++)
for(let x=1;x<width-1;x++){
let i=x+y*width;
let w=slicedata[i];
if(w!==slicedata[i-1]
// || w!==slicedata[i+1]
|| w!==slicedata[i-width]
// || w!==slicedata[i+width]
){
pixeldata[i*4]=r;
pixeldata[i*4+1]=g;
pixeldata[i*4+2]=b;
pixeldata[i*4+3]=255;
}
}
}else{
let a=-mode;
let a100=100+mode;
let wh=width*height;
for(let i=0;i<wh;i++){
let w=slicedata[i];
if(w>0){
let l=atlas.labels[w];
let j=i<<2;
pixeldata[j]=(pixeldata[j]*a100+l.r*a)/100;
pixeldata[j+1]=(pixeldata[j+1]*a100+l.g*a)/100;
pixeldata[j+2]=(pixeldata[j+2]*a100+l.b*a)/100;
pixeldata[j+3]=255;
}
}
}
ctx.putImageData(imagedata,x,y);
}
//function canvaslice(data){
// let canvas=document.createElement("canvas");
// let w=canvas.width=data.width;
// let h=canvas.height=data.height;
// let ctx=canvas.getContext("2d");
// let slice=ctx.createImageData(w,h);
// let slicedata=slice.data;
// let d=data.data;
// for(let i=0,j=0;i<d.length;i++){
// let lbl=atlas.labels[d[i]];
// slicedata[j++]=lbl.r;
// slicedata[j++]=lbl.g;
// slicedata[j++]=lbl.b;
// slicedata[j++]=255;
// }
// ctx.putImageData(slice,0,0);
// return canvas;
//// let ret=document.createElement("canvas");
//// ret.width=128;
//// ret.height=128*h/w;
//// ret.getContext("2d").drawImage(canvas,0,0,ret.width,ret.height);
//// return ret;
//}