File: ja.gmo

package info (click to toggle)
gwyddion 2.62-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 51,952 kB
  • sloc: ansic: 398,486; python: 7,877; sh: 5,492; makefile: 4,723; xml: 3,883; cpp: 1,969; pascal: 418; perl: 154; ruby: 130
file content (1135 lines) | stat: -rw-r--r-- 321,898 bytes parent folder | download
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
4|LK)K;KHK\KxK,KL%LDL:MMM aM M$M$MMMN4NINiN&N%NNNNO O
2O=O$OO"tOO'OOOP!(PJPePPPP PP%
Q(0Q YQ zQQQQ
QQ
RR,R6>R4uR4R4R5S.JS,yS-S*S3S73T%kT"TTT+TU6UEUbUxUUU%U$U%
V"0V#SV%wV#V VVVW-WCW[WtWWW	WWWWWXX(X#FXjX%X#X"X$X+Y&FY"mYY%Y(YY+Z FZ gZZZZ!Z[#[/["M['p[ [[$[#[\(=\"f\$\+\\$\]5]!M]#o]']] ]]^!-^O^e^ t^#^^^^%_+_&K_ r______!`.`M` l` ` `,`(`!%aGa%gaaaaaaab!b7bLbdbbbbbb!b c9c$Kcpcc"cccccd%d9d
JdUd	nd
xd$d!d&d2d($e%Me0se-e+e+e5*f'`f#f%f$f0f!(g.Jg,yg,g*ggh#/hShphhhhh#hh#h&i7i"Pisi#i(iiijj6j=jJj[jojjjjjj
jjjjjj:j'k.k?kGkOkakekmk|kktk+l>lEMl'lll6l|(mm6mm
mnn	 n*n".n6Qnnnnn.noo'o	BoLo[ouooooo
oooop/p8pApMpap~p pp
p!ppq"qAqSq&iqqqqq"q
rRrlr yrrrrEr2sD?sssss(s(s
t"t	/t
9t
GtUt,ut t
ttttu4u:uMu`uguuuuuuu5u6v=v]vrvvvvvvv
vv$wD:wwwwww%w
w
wx)xDx>Vxxxxxx3x%y(<yPeyiy2 zSz*jzzz%z'z%{&({8O{
{!{{{{||/|&?|f|~||
||
|||||||)|Y"};|}8}}
~
~1~9~+=LS_g	mw9	%*>
N\dirx"ȀЀ"#
1F.Y	
ǁЁ"%+#Q6u+-؂$*A2l ׃*3%^,΄
-/AO0o…a2a[R)p!cׇ\;'3*#<*`*&F݉B$Dg Ŋ&=
Kk-ȋ.)D!n!%،(!0Lg%׍!9KiƎݎ'B0b'ďT͏"8+Q.}%Ր
%.8g	n	xhc
	
!̒08@GM\rj
5Qhp-Ԕ1%4"Z}#$ؕ7-5c}"і֖ܖ


":BS.h!ؗ"*,!W%y($Ș	1;#Qu
*ř$%5
FT"n	ǚњ
W7E5}ӛ&-<H[pÜל")BIVg~ǝ':3V2?*(9Po3&˟&*D0^0>	4>^	c+m$ҡ&-
8>M_
Ƣ
ߢ#@"]	ǣ٣*=
P[arg[	jt		¥4̥-/EZkx
ʦqݦUOt˧g@k$<UHr/.2)K+uH
1ū5=-Bkì'ӬC?	Ff
l
z	6:
+6GS[j#v֯
&8N])f6ǰа0E'Lt}
;*2
;F"Vy&&ݲ'&
NY	nx$$ڳ)<D
^#lK"9$^y	L!
$&KXl.Ƕ		
`jz

&2D_er	ɸ..AwU~͹L,Q~	ºOVt
ûλ޻%;Wrʼ%ּ)"&&I(p##"(6-0d11Ǿ,&);/e̿
!,2Jbw+8:d;
##0Bs9<
		0EUk|8 8['AD2
9=Bw> &8K^	r|
-

/= Yz
!$&%K!qW,'5]d} (#=$a"#&,'B#j497C5y
	
	
%
4?LRamSq6F+X;/??6v#{#*!1#Q$u(&)$*9dA,-Z z!+'*+/VV91&X.kA$Gd0//K{%

!$
F
Q_lM":L i%	(	4>Ka|
'/*Z+n)

!,0GPUY.,*BWn
(3?.n/4
"?$b	(:G[hu	*=J$b$."2CYo	T
We0)4(Hq1(1 ,:*g+&)&6	E9O32J0;%l-@3F59|97+(4T8$&!0	E6O
q~
XL8!'3?D>MH&Z
"'3Ebbz -7&e-	7$U%z) /A;}%**,0?4p
#<UFq		/H f.JGII
(&.>N
`k	-7GX[o	5GM`u '!))SGg	
2)\	lv#d'$$L6q9#7*[02	#(8L',*%E#d'28X4w ?!^!8,!@'b-!!3L%e!.()"Lf-#+ 6< s#( >Vs*D	.	 N	o	&	&	(	'
+
1G
$y
*
8
 "C6\+3 2/!b!"
<=
8z
*

Ag@$(R8*	7FUbx+ccU=(7	'4T`;'6c,

7OJf$#,/D"t#(<&>.e
#>CW/($*1D$v;%-	S]qy#
4?W	lv.,+;Ybks

)!19k
s4
/0G6x5C+)9U.N
 
 ' D K T a n }  2 & #!$,!Q!&q!!!W!/"H"U"e"`z"Y"95#
o#z#0####3#$+$@$2E$
x$
$
$$
$
$$$
$$N$:%>%T%$j%%%%%%1%(&B9&@|&1&8&,('4U'' ''''	''(
(#(;(D(S(Y(i(z((((((((
)$%)J)8^)2)"))*%*E*Y*k***
*	**(**+;+T+)m+$+++	+,,,-,=,S,9g,&,8,$-&-+-2-H-O-e-Aq--b-%.GE....
....//2/H/[/o/~//(/(/0,0 @0a0s00
00000011(1A1Z1j1z1111&111
22'292H2/X222422/20-3^3e3r333
3
333333
4(4;4K4a4v4444444
55535C5W5r555&5&556/6
H6V6p6666$6667747R7m77!7#7!78*8:8V8Us888889
9	9$9D9P9`9g9v9~9999%99!9:
;;
;&;+<;h;;;;;;;;';;
<<><$U<&z<<<$<&<#===S=l=======>+ >L>U>
p>~>)>>!>>???"6?Y?e?
q?|?	????5?7?--@[@
j@ x@@@"@%@AA*:AeAtAAQAA~B
BBB,B,B<C;ZC
CCCEC%D7D?DGDCLDDDDDDDEGEaErEEEHEEFFF'F	-F	7FAF
UFcF}FFFFFFFGGG8GUG%sGG'GGGH7HMHMdHHH?H&I,AI(nII[I3J*;J&fJJ
J	J$JJ'JK/)KYKoK ~K/KKKKL	LL L0L<LHL-XL	LLL!LLLLLM
MM%M5MJMQM`MmMzMMM	M
M"MM"MN'N<NANMN_NlNNNNN	NNNNNN	O%"OHOXOtO O
O%OO
OPP&P8PGPTP`PsP
xPP?$QdQ
lQ0wQ1Q3Q@RORoRRRRRR
RR RS61ShSuSSSSSS
S	T'T?T)QT{T TT	TT
T)TUUS!UuUUUUUUUUUUV"V2VIV2ZVBV0V-W,/W/\WW(=XfXmX2X
XXXX(XYY*Y
>YIYdYyYYYYYYYZ 'ZHZdZ
ZZ	ZZ
ZZZZZZ[%[4[L[k[[	[[[
[@[*\,\
=\K\
c\q\Qy\n\:] ]i]Y^a^q^^^_2_A_'a_
__+__
_
__?_9<`v````````a
a
)a4aCaYa
ma#{aaaa	aaaa"b6bMb^bgbybbbbbbb
b	bc
cc"c(c
7cBcNc^coccccc
ccccc
dd(d
HdSd
Yd
gdud|ddddddddde*e9e+Hete|e
eee
e
eXe5"f(Xf.ffff4f(g+Dg3pg$g,gg.h+@hlhqhhh2hh4h1i	6i
@iKi^ibigiiiiiii ij
$j2jIjYjmjjjjjKjk,k"Fk ik3kkkkl/l(Ml4vlKl#lm0mmnn
%n3n$Cnhnnn9nnn'n!o
=oKo
_ojoroyoooo
ooooooo
p(p4pCpWpnpvp}ppppp0ppq%q,q>qOq iq'qqqq	qqq	r
r	r$r3rLribrrr	rrrr's=s@s	Us_swsss"ss
sst,tDtQt	]tgt{ttt	ttttu
u#u3uHu^usuu
uuuuuv)v>v Ovpvvvvvv
vv	ww9wEwWw jww*wwww
wx
x	xx
*x5x%Exkx9}xxx
xx	yy'y
?y'My5uy*y.yz
zz.zGzTzgz<xz$zzz{
{
+{9{E{	Q{[{m{y{{{{{	{{||0|C|T|)q|||||k]}}
}}}}
}
~%~ 2~S~ q~#~
~~ ~9~8G
LW
cn{"(";
Vd'ŀˀҀ߀);G2S,%...].MЂ#'B3j7փ)6.Ae%̈́҄/4=OUh	Åۅ
!>Mf$z&Ɔ-	#-<P p)2H!,2
_#m
4jԉ?FRjz	Њ~5[rȌ׌#:@\c3Íۍ*#:^~	ǎ&Ԏ%!A2^ ʏ0)9c2{Аؐ
-%D
j"x .Ñ	8:s	z'Œ
ɒג	/&HFo

MϓD>b)+˔-%
ESbrx'ƕGHPewOK'LtNGݗ$%AJ6Ø
3	>rH:`	 Ԛ#:LYiz

S!'˜43MM
ʝ"Н
)GdϞ+HQhw*֟?0)p>٠



%0
AObo{
$ ա)83M1_-A	_in}'գ'.V	\fu
Τ1CLcw
ǥХ&ӥ!1Db	Ӧ$?EQ]p*|Oȧ4	MW_&h$ƨ
ڨ@1Asz	ũթ
8OgH$Ϊ+0=bC
Ϋޫ.B
W+b,"ά&(7
GR[hu

"˭	!
+9JQ]dpx
Ю@ݮ"/8AOW"	ʯԯ (
1<
S
^iu	
ѰذRVz| Ȳ
Ѳܲ%-6P
iw̳9"=B_o)ɴδ	״
$*<M	R\	hr
ȵ
	5(^yӶ$5BHU[cr{ȷշܷ

 07S`hu

ϸ	ڸ
	
,2EX
gr~ù	-5FR_n~
źӺ

!5
GU[gn		ֻ̻
ݻ	
,4GPYhu̼޼	/>Vkq	˽ս&;L_gw
Ǿо߾'
0	;EYo{
ѿ׿ݿ

!
3>Oa|.?
D	OY	_i
u

!0IZox



 (;	O
Yd
p!~

	
$7?Y
ft

%-
?M^kw~	


#/>E
M
Xf|

	,>Oam	

	#2#Ei~	





,G[kx		$:>FV]s

!0@M
Z
es{			!
+
6D
^ls					

'
AOV	fpt	

		$(D
KV_dt	,2KWcx!7Jc{		(8GTct

.BQdw#,?Tfn~!-OUgsz}
	

 -=
P
[ir	v

		
#.7	F
P[kwA<@C`dgjng)&* Qr,:<L+x  $$-6F_]2&AJY%"$;RG_)8G
)R#|8);8?#xG2&.>m,>^xQEVcBT/R-.+43@3t0$605f &&!?!a!$-!'$B g& #	-H"e
 . O p #&, Bc.0 ,7&d 
/1,O/|)#,0',X#&/,&-%Tz&  	<Z o&2&*Qc u  2Q&j# 8Wu&
&"1I){&# &&8)_/&
%*,P/}1Om

5;596o.0<6C2z0J+)'U)}03%.2-a++)#55#k,
*2H#{&#&CWq
 	)EY[bip0
,*Gr	[ B|%2$V6{
564k!Z:Pf	
'-Uo+')'9$a(%$'3"0V"s		0	.		K
cW


(('?L
S
^i-| .0
K
g
n
{








$
%!G*Y*!	&9!@3bf)<[%n		Ka,	
:#$Bcg-~B/$KpA	!-6dt'
!-9C@[@7!YrF+Sr	#!-ObUx!!2B[hu	|"*"#7[!k?
0.*>>i*?	=IB!<O0n'="!`[T ;n E  y!j"Iw"$"*"-#)?#]i#q#9$:U$i$0$+%1K%?}%N%A&N&i&>'$'4'L(Le(-(A(5")<X)C))2)(**IS*F*F*.++BZ+4++3+0%,1V,.,1,+,'-+=-'i-----	-..$.=.'S.{..0.$.B/6C/z///*0H03g0.0'0051;1	B1L1U1\1V{1	111*2-32a233!33333!4"4/4A4^4e4j4w4{4*4#44455	5'5(656K6,X6;666?6Z*787*7!78% 8*F83q8688839E9R9Y9`9|999
99999S93:CD:5:.::X;?];J;F;:/<j<<<<<%<0=9=*L=0w==*=$=>>)>6>F>,b>>*>>>>Z?G^?6???"
@60@	g@q@	x@@@@@@
@@@@AA9#A]AjAwA'AAAA!AB$>BKcB0B6B0C<HCHC$C+C<D\DxD<D<D0E=8E*vETENEYEF$FFFFFGG+*G6VG!GGQG@H	[HeHuH<HHHHHII(I,AI,nI,IIIIIIJJ"J8JNJaJpJJ	JJJJ	JJJvhKK$KL6LLL\LlLL5L>LLM)M:M)MMwM{MM	MMMM_YNNNNNO9PP0P4Q6IQ_QUQT6R+R+RAR4%SFZSSTTTUTVUUhUcU%"VHVA^VmV-W<XeKXXXXXXX	Y5Y;PYY$YYYYZCZ`ZgZtZZZZZZZ[ [0[4@[au[[[[\\U\l\Es\\\\$\	!];+]#g]]]]]]&]$]$^&C^&j^^^	^'^	^^^^_!
_!/_Q_g_n_~_____&__6_%`Z-`-```?`*
a5a	NaXaa0a"b6/bfb	mb
wbbb*bbbbc
cccddddd
dd*eGeTedeweeeee.e.f=fJf	g	gBg"h:hShfhh[ihiiiii	iii	ii2j 9j'Zjj(jjjjIkPPkFkKkN4lLlFl;mLSmZmYmZUnZnKo!Wo6yoWopp(p:pJpZp'mpp	p	pEpDp&;q2bqq)q)q&r.r;rVr+irHrHr's8s*Ts-s9ssEs<Cttttttt	u!ux1u7uxu[vAvD5wWzwqwiDx>xx	yy
y
+y9yHy!ay!yyy>y$z!Azcz}z!zz?zH{3]{+{?{{|*7|Pb|I|]|P[}+}x}SQ~0~~!~~70>ov}?-70T'<̀3	!=E_$Hʁ<\PX2Pg
kv	

̃ԃ	s
ʅ=΅	"9OVj
9d_lcM#FRCAP؉O)KyIŊ?HO?P؋J)VtCˎ=@M7NƏH=^$Q/`]$xUf<ZJoE/e/ŕ6ە06C-zΖ9/"N$qiŗ/*<-g3!38OB_Ι-!4Pl!3*ؚ$(-G*u'BțN-ZQNڜ)Ee-x!ȝ 	6,Ҟ*9'U}
	ğ3`!X۠*H`dNšBHW$$Ţ0
F9T#ƣ	ͣף")	EO\h~$äE3.Lb	ɥڥ(;Ws	y
6D<`<ڧ0'*"R3u!H˨$*9$d<6Ʃ?!=6_9ЪݪQc<KN6;'r0NˬKQfKKQP*9ͮT9\0$ǯEXiQ^k`{ܱ	Zs	3=PW`]e|&	%!/ Qr:.͵-*
FTq H&iJ& %*	2<	OY`gotH767RAG̹0UEf)B,FoLG;K@ȼϼ	4>Tjc			'$;L ߾.b/`fZ^r.,#:Idsz	-&5EH\.GT[3y39K5
;F$U7"*E.t$3'N]HKU@<M2mB?J#?nLY>UE83;GD0761?h?<0%/VF3?HA2.28XX58F Vg3J==G{G55A2w-&,D,@q;B<1=n0.F4S<?4S:4<3<4+q4+03/>cW4B/4r/::<MF.E=FCT84V,OJ2SG P:@1{41=1KoOE7QQ`l@CRV,<Lb~!F-Ao{\		1;&;Qah't	HN*)y	*'	+E`<2*%]+V8"[Av8J:<?w-$6'[l7$?\66Z
!eB( 
IT
cn*
BM'e&PNQY(0A
R]v4	$? `	g-q	
3?2;r9N67En<oat(0*<['**-3D'xl?)!i.l[B
0&Wgt@	;C\o

	NC3G3{QZ*\.'M,X?>DY$9%9EVcj
#
=KRb
o}!cY9:!(?Ym*!	'	<C	;	'		<
6@
0w
!

	
!
3OSh6G<;	x
,
/l
x

$rD6>E	^h{
!.+ $Lq0	#07>K[hx
0	/9I_r0$5-VC4	(8Q5k	(/Hg		)3I\r
	"/BYj$030N5=@G46|!$#r"		
3#WsF
Qd;HUhT{!!&FJQ'e	>$& A [ $w &    !*!=!Q!k!!!"!+!!	"	"&"H9"<":""
#$#37#3k#######	$0
$b>$T$Q$-H%$v%6%9%&N&Qk&*&9&;"'
^'6l'*''`()3)F)_)N{)F)`*`r*	***\+Bm++++Q+	,,,,9,V,t,	,F,,,,-_(------
-	-
---3.>J.8..$.	.//*/:/V/s/%//N/%0B0E^0"0'0R0B1N1hZ1M1P2Vb2!22Ji383>3!,4N4g4$}4414!4/5F5\57k5N55&	606	@6
J6U6e6x66666666677	%7/7	<7F7Z7
m7x77777777	7
8"828"L8o8888!88828 9	69	@9	J9	T9^9q9999<99*:1>:3p::%:::	:;
;	;&;B;N;`;g;};^<<<W=T[=E=N=E>e>y>>>>>>>>?< ?]?t????;?@1@9D@~@%@C@A)ABAXA!_AA5AAAjARBhBuB0B	BBBBCC$;C`C*yC!C<ClDNpDKDBELNEEcF	F'F`G}GGGGKGH,H.9HhHyHHHHHHHH!
I,I HIiIIIIII	IIIIJ'J:JLJeJzJJJ	JJJ	JRJ-FKtKK!KKKKrL
MPM,NNNOO)OOP'P'GPoPvPNPPPPQa+QfQQ!R)RHR\RlR	|RRRRRRRRR'S6SFS#\SSS"SS:S#T4TJTQTdT	yTTTTTT
TTT
TU	U
U U0UAU]UpU}UUUUUU
V)VBVUVhVE~V	VVVVV	W
W#W3W"@WcWsW"WW7WWXT&X	{XXXXX$XXxX]sY6Y6Z1?ZqZ!ZTZ6[I;[N[?[G\5\\`\@\4];]W] s]p]^B!^d^i^	p^	z^^^-^'^^^__3_9R___"____`` `'`~@``9`3a?Ia5a'a*a'b!:b3\bEbTbW+c.ccEce7eDe%Peve>e6eefbf0}f'fRf-)gWgmg	ygggggggggggh	h*hAhTh	ahkh~h	hh	hhhh%h7i	9iCiPi'Wiii.i+i
jj!j(j/jEj	Rj	\j	fjpj0j
jXjk!k	$k.k;k!Wk6ykkkk$kkl&l"8l[lll'yllll	lll*m2mNmgm*}mmmmmn!(n%Jnpn!nnn$nn$o!Co0eo*oo7o&p;p[php-ppp$pq/q$Cqhqq<q!qWq*Wrrrrr	rrrr!r$s=sHJs!ss
ssstt,tNDt[t*t.uIu\unuuu!u'u'v$/vTvav!wvvvvvvvww/wOwmwzwwww!ww(x*Bx6mxxxxxy
z*zCzPzWzdztz0z'z'z-{)3{
]{k{*{J{{	|	||'|:|J|8`|'||%|$}%}0;}0l}}}+}}~	~
"~-~	:~#D~h~!u~"~"~~~338l<3-@A?B€!w'6'ց<K;!'*т3@03q	؃$>DQd}	$Є7!Vx3˅SBM'B,<MT]ȇUV3,Jaw	ى$	Na		0P$o	͋		HRezɍ$?Lh3~W
'EXp04%9HX_f	y+"!Ґ$N<h'*͑R!OtĒ6ܒ!3:S	c*m0ٓ" 	*<:!w 6͔TYfm2	Ǖѕ/>A^ߖvjvRT4<=Ƙ27Pj	Ι'	d)!'ٚ-d6NmK:>LyQƝ6!Oq	ɞ_ y<		-F-M={ҡ#6IVeҢߢ
֣e-V-{	.%8"^	3ۥ-+Yxݦ .Ob6HJ]sT0<	V`
gu
©թ'=?M6!Ī'-3D0xb*7W	^hw:'ج+,.3bL~˭ҭ
$17D&|ͮ"$"G"j0ԯۯ6߯0DZ3p1ְ6*44_DẔ,B9|
qZ
	hr.,
$7E?9ƴ	ߴ-!Ok#ԵH<$	ȶ޶Է$AT?d.SӸF'nƹιֹ۹
'09Vp
	º̺Һ
7#Mq`

!e4;ּ

)8Genv
ν߽	i|fln7v
"=
FT`z
	+,"&IFQ*$	O
Y
gu!!	
%	5?U	q{-HYr
!2FWdz	$			+5	<	FP`s'z		

+6=Fb*f'$-Rd$!"5N
^l	

 
7EYiv
	
$5<IQYj}+;OV]mz		!+2HUp
w

	.Nbr		
	!=E\p
}	

$ 0AH[hl|		!>Tj}

 6Ofs	
'!
	3=EJPTY]d	z:G	cm$t')
Q
_m)E	d
n
y
	.->Ng
t!		(8!?an$
2E[
hv
$	
 .D
T	b
lw'-5F
Sa
n|	!%*C]j
r
%	
/:=LUZg
o}
%
"-0?H
M[
ju}

!! '7	MW[_f	y	%5T[_r				)6=	AKSZcsz!		&?W	d&n		%%!@GNU	e!o$(%+!"Mpf'47GV]y			'+7C[j!
,3@Gfx4!>BEHLcfn
Yv
)
U
/|Fa
Fo
F	9f
l
h[
"]}	
|>g:B5
8
_OxYvhY
@t	#
zb
55n
7

r

	hUN&		a$		5GBg`
vo
6
,6
!

r
	 p
6)	1C
.I?
&
Q	
QP
xK	`zNJ

38@L	4W|}s.K
I9G	l9

(
J<	~
?>
s	

Y
1*Q[	2
\	#
TWW	kP	K	H
^		+	;N
ncg
oBY
I
`94m
~h

j?

E|s	qO		
	
w
6
9	}Ab`dCZM	
RC
wN	"
fN`_D
o	nzZ	\
[gbX?Tt/m0	Ym&0
z	
c	)2
+
+	-
	7H]`Hu?8~PKO	w)W8'	
I
::Hp	<qs
!!
	\GSmX

3
Gx1Z.
w	GM
Z'L[
	:e
(rG1	
[	)"Wc	Z	Ad2y
A
_e
n	m
T	3
	
qj1 E


	&

r3
,
uuT	V3qQ6}^
T
k
TG	#TVhY	
6
,U
M	
'k
!in6l
	.2
"Q1
pIVd	O:
i	
-
#aKu~	K
Ph

m9
1+

B'	
 L{

&Q'	Qv
A
jt
*		/X7/ AMn$


U
>	U@dqD
=	45:OO;	L/#r(2
`x
W


$
S
]kw
R
eu%	"A%
n&}
>v
t4
Lq
?
N3
m
:
;
|	PR
	F	q
u
,
'$5{f	HI	`
J
xm^
]Ed
>(8
Hw
	^!
?)	,
]Zm%`;I	&DsJO
:4
fp[	Oe{
5
	Z	Y7R	Wu
Q
=
Wh
Y
!
h8MOi	7c0		

'(0


|7>OoLN	[O	}
x#j

!>m	q	
G

g	[PowOG3yG

X
 #^
x4~TB
$N^

5
	:
D

BG	Ux


%	
Zf}847
d

i	Tw!f

 
f
JV]\	
		)
u


	

:'i
(
\U,2	w8	

L;M	
V
V

-_*rZ
:$7

]

{.pg)6.{
jlY	
$
V			
Rg=j
&D
t|E\


f;p
;
bc
X
%
%
8
	{a
Q	v/, }r	
tJSh
[h1
"]	]aJ7

,p1	?	c	}&
p
_ 

[8
r
-l
'
	
7	^S

X>9d


/N2(
	
~
)u		U=
KS
	F0'

SE<k>	#A
Y	AD	
c.E
~@
BL
*<@	q
LiBD	8b
u)\	
=S	^
}<
V
/g8
z
3	~
kY
fHz]
T/
*=<	|
FZ
B[z	kK
"Rau
b!hp
|
{2 2i1"
.
yMlRktJ0e	tZ{{	<	,;	
1W~"	v=+He$ggk
	ZFl	&O<
ex
;!])

vP^?z^:a!	`i8

J	IIP(	}J>L[[/ LVj	e
#	[
_S	`

$%x	^L
Q#dH
*
MSb@q}+.
Xda	uvO
	g
iy	R
_	xs	
S
Fo
H5T
=-S	N
&
^E	<7
E\"X
Be


l

u#W

k
x
h0
v
Z_
M
Jt;$<|s
3=
p	'e
_P
4Yu 
S
C	N%
J
%
O
de5k?e	zC&@3j
oGN
g~
vD7U\*(C

+
6jfy	G+c
[
3gemLo
	n5??
	
	9zP,W 	P
*)J	6	
	M
@
	| `hno
Y	vIw		=
	c
5-
EH
tY	0N=CsG

z7
	V7fQK	#
.}
"		+X<1
T
wtz
	.mW9~+o
rb@<	+

;4
yy5x
I~n<yp
s_

M(;@2
?B=v

|
	`R@*r
hB		o
$
\	UA
+XrG

5

=>2
JX	ap		@	-k:
R
$&by!aM
ay\6lPt
AA	
	TE
P	
	-s0O	D	
	
i~t<H%a
;.j0.	+2\"{
UUdlli

6
S]

-
>	2<K'*29	
zK
r	

.%y&'s
Q	
b	Scx!+8
UlEBYD70	

0
	
Q.\	qEjR
Z{R	
f1(QE-	VV
^Cq#	 0
i

c

X	k"T
M!I	a
	u$	mvxCg

@
)n	53	


{
U6{
;
	pDP
	N	@/|0w-
wa0
g
l
\^
'
T
4
<J
	
C

q

/Q
F]	dt
3A/*
VE}s-	l(9,7
T
\	
	5	Fu(4v	$
d#o,j,
"KF9=
:	
64	k%n(HW!6`VPcl


c9
^
?b[jSAa

"1|
b&qRWB
#
Dz	C*\
	
q	{AvyqX		
b		,		FG
B
pH	|	j
ft
)R4
f	#
{?]
CQ
	*b=s		>

8
X	
%	zn3MX@
>	3
y
C@e*SKU	
'i
	d	&dh8
%			-if	D
9~z]KN
s	~	(?
L$l
		$Nx|FVc	H
I	r=	
-yE	AW
m{P%m
cAb	
k	41
/	;i_Iw
+

0^D.]
'	c
s
	rj


o
D
>
`1
_
,	IJ
Ln
ZR
				f
L/),2_w	
*
 y
9}
Z9}	wM%
6CU

;o
s
k	M
F
KH*	F
C
I
4`	Vi(_	dK
p	n
/
 pr	~	)!Ce
2Ryj3
"
D	B	:r	-:_+b
WaX
-Fo>gm
t
	h	e4E_
 is free software released under GNU GPL.%.*f to %.*f%d calibration data%d particles were deposited%s instead of %s%s is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. For full license text see file COPYING included in the source tarball.%s: Data must be square.%s: Graph should be I-V spectroscopy.%s: Lateral dimensions and value must be the same physical quantity.%{from}v to %{to}v%{n}i of %{ntotal}i%{w}i × %{h}i at (%{x}i, %{y}i)%{w}v × %{h}v at (%{x}v, %{y}v)(%{x1}i, %{y1}i) to (%{x2}i, %{y2}i)(%{x1}v, %{y1}v) to (%{x2}v, %{y2}v)(fixed)/3D View.../Analyze _Drift.../Cali_bration/_3D Calibration/_Get From Stage map.../Cali_bration/_Apply to Data.../Cali_bration/_Create.../Cali_bration/_Get Simple Errop Map.../Cali_bration/_Load From Text File.../Color _Gradients.../Cut and _Slice.../Default Mask _Color.../Export _Text.../Extract _Preview/Fix _Zero/G_L Materials.../M_ultidata/Apply _Neural Network.../M_ultidata/Correlation _Search.../M_ultidata/Mutual C_rop.../M_ultidata/Neural Network _Training.../M_ultidata/_Arithmetic.../M_ultidata/_Classify.../M_ultidata/_Convolve.../M_ultidata/_Cross-Correlation.../M_ultidata/_Deconvolve.../M_ultidata/_Immerse Detail.../M_ultidata/_Merge.../M_ultidata/_Multiprofile.../M_ultidata/_Stitch.../M_ultidata/_Super-resolution.../M_ultidata/_XY Denoise.../Measure _Features/Facet _Analysis.../Measure _Features/Facet _Measurement.../Measure _Features/_Curvature.../Measure _Features/_Fit Shape.../Measure _Features/_Lattice.../Measure _Features/_Terraces.../Module _Browser/Open _Recent/Plane _Level.../Program _Messages/Pygwy Console/Remo_ve All Logs/SPM M_odes/_Force and Indentation/_Analyze Imprint.../SPM M_odes/_Force and Indentation/_Area function.../SPM M_odes/_Force and Indentation/_Hertz contact.../SPM M_odes/_Force and Indentation/_Lateral Force.../SPM M_odes/_Force and Indentation/_PID Simulation.../SPM M_odes/_Magnetic/Para_llel Media Field.../SPM M_odes/_Magnetic/_Current Line Field.../SPM M_odes/_Magnetic/_Estimate Shift in Z.../SPM M_odes/_Magnetic/_Field Shift in Z.../SPM M_odes/_Magnetic/_Perpendicular Media Field.../SPM M_odes/_Magnetic/_Recalculate to Force Gradient.../SPM M_odes/_Tip/_Blind Estimation.../SPM M_odes/_Tip/_Certainty Map.../SPM M_odes/_Tip/_Dilation.../SPM M_odes/_Tip/_Model Tip.../SPM M_odes/_Tip/_Surface Reconstruction.../S_hift Value To Zero.../S_wap Axes.../S_ynthetic/Coupled PD_Es.../S_ynthetic/D_iscs.../S_ynthetic/P_hases.../S_ynthetic/_Anneal.../S_ynthetic/_Brownian.../S_ynthetic/_Deposition/_Ballistic.../S_ynthetic/_Deposition/_Columnar.../S_ynthetic/_Deposition/_Diffusion.../S_ynthetic/_Deposition/_Fibers.../S_ynthetic/_Deposition/_Objects.../S_ynthetic/_Deposition/_Particles.../S_ynthetic/_Deposition/_Pile Up.../S_ynthetic/_Deposition/_Rods.../S_ynthetic/_Domains.../S_ynthetic/_Lattice.../S_ynthetic/_Line Noise.../S_ynthetic/_Noise.../S_ynthetic/_Pattern.../S_ynthetic/_Spectral.../S_ynthetic/_Waves.../Save _As.../Show _Data Browser/Split.../Summarize P_lanes.../Summarize _Profiles.../Zero _Mean Value/_About Gwyddion/_Adjust Phase.../_Arithmetic.../_Basic Operations/E_xtend.../_Basic Operations/Flip Dia_gonally/_Basic Operations/Flip _Both/_Basic Operations/Flip _Horizontally/_Basic Operations/Flip _Vertically/_Basic Operations/Li_mit Range.../_Basic Operations/Rotate C_lockwise/_Basic Operations/Rotate _Counterclockwise/_Basic Operations/Rotate by _Angle.../_Basic Operations/S_quare Samples/_Basic Operations/Volumize/_Basic Operations/Volumize Layers.../_Basic Operations/XYZ from C_hannels.../_Basic Operations/_Binning.../_Basic Operations/_Dimensions and Units.../_Basic Operations/_Invert Value/_Basic Operations/_Null Offsets/_Basic Operations/_Resample.../_Basic Operations/_Scale.../_Basic Operations/_Tilt.../_Basic Operations/_Wrap Value.../_Close/_Correct Data/1D _FFT Filtering.../_Correct Data/M_ark Scars.../_Correct Data/Mark _Inverted Rows/_Correct Data/Mask of _Disconnected.../_Correct Data/Mask of _Outliers/_Correct Data/Remove _Scars/_Correct Data/Ste_p Line Correction/_Correct Data/_2D FFT Filtering.../_Correct Data/_Align Rows.../_Correct Data/_Correlation Averaging.../_Correct Data/_Fractal Correction/_Correct Data/_Good Mean Profile.../_Correct Data/_Interpolate Data Under Mask/_Correct Data/_Unrotate.../_Correct Data/_Zero Data Under Mask/_Dimensions and Units.../_Distortion/Co_erce.../_Distortion/Compensate _Drift.../_Distortion/Displacement _Field.../_Distortion/Extract _Path Selection.../_Distortion/Pol_ynomial.../_Distortion/Straighten _Path.../_Distortion/_Affine.../_Distortion/_Perspective.../_Distortion/_Radial Smoothing.../_Evaluate FD Data.../_Fit Shape.../_Grains/Logistic _Regression.../_Grains/Mark by _Edge Detection.../_Grains/Mark by _Watershed.../_Grains/S_tatistics.../_Grains/S_ummary.../_Grains/Select Inscribed _Rectangles/_Grains/Select _Bounding Boxes/_Grains/Select _Circumscribed Circles/_Grains/Select _Inscribed Discs/_Grains/_Correlate.../_Grains/_Distributions.../_Grains/_Filter.../_Grains/_Level Grains.../_Grains/_Mark by Otsu's/_Grains/_Mark by Segmentation.../_Grains/_Mark by Threshold.../_Grains/_Remove Edge-Touching/_Integral Transforms/2D _CWT.../_Integral Transforms/2D _DWT.../_Integral Transforms/2D _FFT.../_Integral Transforms/Con_volution Filter.../_Integral Transforms/DWT _Anisotropy.../_Integral Transforms/Local Slope/_Integral Transforms/_Hough.../_Integral Transforms/_Rank Filter.../_Invert Value/_Isosurface Image.../_K-Means Clustering.../_K-Medians Clustering.../_Keyboard Shortcuts/_Level/Fix _Zero/_Level/Flatten _Base/_Level/Level _Rotate/_Level/Plane _Level/_Level/Revolve _Arc.../_Level/Revolve _Sphere.../_Level/Zero Ma_ximum Value/_Level/Zero _Mean Value/_Level/_Facet Level/_Level/_Frequency Split.../_Level/_Median Level.../_Level/_Polynomial Background.../_Level/_Trimmed Mean.../_Logging Enabled/_Magnetic Data to Force Gradient.../_Mask/Distanc_e Transform.../_Mask/Mark _With.../_Mask/Morpho_logical Operation.../_Mask/Thi_n/_Mask/_Distribute.../_Mask/_Extract Mask/_Mask/_Invert Mask/_Mask/_Noisify.../_Mask/_Remove Mask/_Mask/_Shift.../_Merge.../_Multidata/_Relation.../_Open.../_Plug-Ins/_Presentation/E_xtract Presentation/_Presentation/Local _Contrast.../_Presentation/_Attach Presentation.../_Presentation/_Edge Detection/Local _Nonlinearity/_Presentation/_Edge Detection/RMS _Edge/_Presentation/_Edge Detection/_Canny/_Presentation/_Edge Detection/_Gaussian Step.../_Presentation/_Edge Detection/_Harris Corner/_Presentation/_Edge Detection/_Hough Lines/_Presentation/_Edge Detection/_Inclination/_Presentation/_Edge Detection/_Laplacian of Gaussian/_Presentation/_Edge Detection/_Prewitt/_Presentation/_Edge Detection/_RMS/_Presentation/_Edge Detection/_Sobel/_Presentation/_Edge Detection/_Step/_Presentation/_Edge Detection/_Zero Crossing.../_Presentation/_Gradient/_Azimuth/_Presentation/_Gradient/_Prewitt (horizontal)/_Presentation/_Gradient/_Prewitt (vertical)/_Presentation/_Gradient/_Sobel (horizontal)/_Presentation/_Gradient/_Sobel (vertical)/_Presentation/_Logscale/_Presentation/_Rank.../_Presentation/_Remove Presentation/_Presentation/_SEM Image.../_Presentation/_Shading.../_Quit/_Rasterize.../_Redo/_Save/_Statistics/2D Auto_correlation.../_Statistics/2D _PSDF.../_Statistics/An_gle Distribution.../_Statistics/Transfer _Function Fit.../_Statistics/_Entropy.../_Statistics/_Fractal Dimension.../_Statistics/_Log-Phi PSDF.../_Statistics/_Slope Distribution.../_Statistics/_Transfer Function Guess.../_Stray Field Consistency.../_Tip of the Day/_Toolbox.../_Transfer Function Guess.../_Undo/_User Guide/_XY Plane Level/_XY Plane Outliers/_Z-Calibration...110180 deg1D FFT Filtered Data1D FFT Filtering1D FFT filter22D ACF2D CWT2D DWT2D DWT Anisotropy2D DWT anisotropy detection based on X/Y components ratio.2D FFT2D FFT Filtering2D PSDF2D _ACF2nd order polynom2π360 deg3D Calibration3D calibration and uncertainty3D calibration/uncertainty3D view transformation modes can be selected with keys: R (rotate), S (scale), V (value scale) and L (light source).<b>Label Te_xt</b><b>Options</b><b>Parsing failed</b>
The contents of `%s' does not match format: %s.<big><b>Missing layer module.</b></big>===== Fit Results =====>>> Running the script above
A field dimension is too small for chosen window size.A record of applied data processing operations can be browsed using View Log in the channel or volume data right-click menu.A simple PID simulatorA.P.E. Research DAX Files (.dax) and APDT File (.apdt)ACFACF %.0f°ACF SectionACF decay to zeroACF zoom:ADFAFM Workshop spectrum files (.csv)AFM data from NASA Phoenix mission (.dat, .lbl + .tab)AIST-NT files (.aist)APE files (.dat)ASCII data matrix (.txt)ASCII graph curve filesASCII graph import must be run as interactive.ASF ClosingASF OpeningATC SPMxFormat data (.spm)AUX in 10AUX in 3 (Sum)AUX in 4 (Raw Deflection)AUX in 5 (PicoPlus Aux BNC)AUX in 6 (Surface Potential)AUX in 7AUX in 8AUX in 9AUX in BNCA_dd symbolA_ll labels have the same sizeA_spect ratio variance:Aarhus MUL files (.mul)About %sAbscissaAbscissa _XAbsolute differenceAccurex II text files (.txt)ActionsAdaptive nonlinear color mappingAdd _curvatureAdd _gradientAdd _informational comment headerAdd _low score results maskAdd a rectangle to the FFT maskAdd an ellipse to the FFT maskAdd noise to maskAdd selection to maskAdds salt and/or pepper noise to mask.Adjust Phase in Volume DataAffine CorrectionAfter each _row skipAfter each sample s_kipAlicona Imaging AL3D files (.al3d)Align RowsAlign Rows offers to use/exclude the masked area if a mask is present on the data.Align curvesAlign rows using various methodsAlign scan lines with X axisAligns graph curves.Aligns rows by various methods.All Graph functions are available also in the graph right-click menu.All channelsAll datafields must have same resolution to make a volume from them.All profilesAlong fiberAlong the right edgeAlphaAmbios 1D profilometry data files (.dat)Ambios 1D profilometry data files (.xml)Ambios amb files (.amb)AmphitheaterAmplitudeAmplitude (V)Amplitude (m)Amplitude Distribution FunctionAn SPM data visualization and analysis tool.Analysis Studio XML (.axz, .axd)AnalyticalAnalyze XYZ DriftAnalyze and/or remove driftAnalyzes drift in XYZ data.Anfatec files (.par + .int)AngleAngle DistributionAngle distributionAnglesAngular Slope DistributionAngular spectrumAnnealAnother maskAny whitespaceAppendApple icon (.icns)Applies polynomial distortion in the horizontal planeApplies polynomial distortion in the horizontal plane.Apply Ga_ussian filter of widthApply Neural NetworkApply opening _filterApply perspectiveAreaArea above half-heightArea of convex hullArea scale graphArea under curveArithmeticArithmetic operations on dataArithmetic operations on volume dataArray `%s' has non-zero number of elements in spite of being absent.As another dataAspect RatioAspect ratioAssing AFM files (.afm)AsteriskAsylum Research Ergo HDF5 files (.h5)AsymmetricAt the topAttach PresentationAttach another data field as presentationAttach from _fileAttaches, extracts and removes volume data z-axis calibration.Attocube ASCII files (.asc)AuthorAuthors:Autocorrelation FunctionAutocorrelation lengthAutomated threshold using Otsu's method on heights.Automatic by extensionAutomatic color range with tails cut offAutomatic facet-orientation based leveling. Levels data to make facets point up.Automatic import of unrecognized files as raw data can be enabled/disabled in the Raw file import dialog.Automatically correct rotation in horizontal planeAutomatically detectedAutomatically level data by plane rotationAverageAverage absolute slopeAverage maximum height of the profileAverage maximum height of the roughnessAverage maximum roughness peak heightAverage maximum roughness valley depthAverage third highest peak to third lowest valley heightAverage valueAverage wavelength of the profileAveragedAveraging of Similar StructuresAveraging of similar structuresAxes are outside the image.Axes to transformAxis PropertiesAxis display info record is too short.BCR files (.bcr, .bcrf)BRCBSplineBackgroundBad zip fileBall on stickBallistic DepositionBarBar length (_z)Bar width _xBar width _yBarsBasic filters: mean, median, denoise, …Basic operations like flipping, value inversion, and rotation by multiples of 90 degrees.Basic operations with mask: inversion, removal, extraction.Basic operations with presentation: extraction, removal.Benyuan CSM files (.csm)Beside height and angle distributions, Statistical Functions tool calculates also correlation functions, power spectrum density (PSDF) and some more exotic functions.Best estimateBigTIFF data type %u was found in a classic TIFF.BigTIFF reserved fields are %u and %u instead of 8 and 0.Bilateral minimumBin DimensionsBinaryBinned DataBinningBlackBlackmannBlank-line separated matricesBlending _depthBlind Tip EstimationBlind estimation of SPM tip using Villarubia's algorithm.Blind tip estimationBlock not a document block.BlueBoltzmann bent stepBorder distanceBorder randomBordersBothBoundaryBoxesBuilding mesh...Building stray field dependence...Building wireframe model...BuiltinBurleigh 2.1 files (.img)Burleigh Image Studio files (.bii)Burleigh exported data (.txt, .bin)By row (identically)Byte s_wap patternCFITSIO error while reading the FITS file: %s.CRC errorCSVCWTC_losed curveC_umulativeC_ut to valid dataC_ut-offCairo error occurred: %sCairo error while saving imageCalculate 1D statistical functionsCalculate 2D autocorrelation functionCalculate 2D power spectrum densityCalculate DOS spectrum from I-V tunneling spectroscopyCalculate K-means clustering on volume dataCalculate K-medians clustering on volume dataCalculate _differenceCalculate angular slope distributionCalculate differences for e_xcluded pixelsCalculate entropy of value and slope distributionsCalculate fractal dimensionCalculate good mean profileCalculate graph curve statisticsCalculate overall curvatureCalculate roughness parametersCalculate row/column statistical functionsCalculate surface profile parameters.Calculate tip area function.Calculate two-dimensional angle distributionCalculate uncertaintiesCalculatedCalculates K-means clustering on volume data.Calculates K-medians clustering on volume data.Calculates and analyzes two-dimensional autocorrelation function.Calculates cross-correlation of two data fields.Calculates fractal dimension using several methods (partitioning, box counting, triangulation, power spectrum).Calculates good average row from one or multiple images of repeated scanning of the same feature.Calculates one- or two-dimensional distribution of slopes or graph of their angular distribution.Calculates one-dimensional statistical functions (height distribution, correlations, PSDF).Calculates overall curvature.Calculates simple graph curve statistics.Calculates the tip area function.Calculates the volume PSF.Calculates two-dimensional distribution of angles, that is projections of slopes to all directions.Calculates two-dimensional power spectrum density function and extracts its linear profiles.Calculating volume transfer function...Calibration '%s' already existsCalibration data file must have
exactly one column.Calibration from fileCalibration name:Cannot create a temporary file: %s.Cannot create user config directory %s: %sCannot create user module directory %s: %sCannot create user ui directory %s: %sCannot decompress bzip2-encoded data.  Bzip2 support was not built in.Cannot decompress compressed data.  Zlib support was not built in.Cannot decompress gzip-encoded data.  Zlib support was not built in.Cannot display the help.Cannot execute plug-in `%s': %s.Cannot fdopen() already open file: %s.Cannot figure out how to load data in the following form: %s.Cannot find any height channel.Cannot find image header block.Cannot find object %s in %s.Cannot find piezo header block.Cannot find the corresponding parameter file.Cannot get pixbuf loader: %s.Cannot load data file: %sCannot load image: %sCannot obtain the uncompressed file size.Cannot open file for reading: %s.Cannot open file for writing: %s.Cannot parse AFM HEADER_TABLE values.Cannot parse `Scan size' field.Cannot parse data values after %d of %d.Cannot previewCannot read channel labels.Cannot read file contents.Cannot read file contents: %sCannot read from file: %s.Cannot read temporary file: %s.Cannot save preset: %sCannot understand the axis hierarchy.Cannot write to file: %s.Canny edge detection presentationCantilever _angleCarl Zeiss CLSM images (.lsm)Carl Zeiss SEM scans (.tif)Case _sensitiveCenter valueCenter x positionCenter y positionCertainty Map AnalysisCertainty map...Change Default Mask ColorChange Mask ColorChange UnitsChange Volume Data PreviewChange phase in continuous dataChange physical dimensions, units or value scaleChannel information ended unexpectedly.Channel:ChannelsChannels and graphs can be renamed by double-clicking on their name in Data Browser.Channels in all filesChannels within the fileCharacter array does not fit into the file.Checks the stray field dependence consistency.Choose Color GradientChoose GL MaterialChunk type %u occured multiple times.CircleCircle (down)Circle (up)ClassifyClassify data setsClassify data sets using multiple data fields.Clea_rClean U_pClear LogClear selected objectsClear the entire filter maskClicking on a 3D view with the right mouse button brings a GL material or false color gradient selector.Clicking on a false color scale with the right mouse button brings a false color gradient selector.Close fileClose file listCo_lumnsCo_rrelate withCo_verageCo_verage:Code V interferogram files (.int)Coefficient MatrixCoerce StatisticsCoerce value distribution toCoercedColo_r:Colon:ColorColor GradientColor Gradient EditorColor Gradient `%s'Color RangeColor Range tool offers several false color scale mapping modes and can make any of them the default mode.ColorbarColorsColum_narityCombine with existing maskCombine with existing mask:Comma separated valuesCommandComment is not nul-terminated.Comment lacks CRLF termination.Compensate DriftComponent _fractionCompressed data inside compressed data found.Compression is supported only for detached files.Compression type %u is not supported.Compute Discrete Wavelet TransformCompute Fast Fourier TransformCompute Hough transformCompute PSDF in Log-Phi coordinatesCompute continuous wavelet transformCompute stray field above perpendicular magnetic mediumCompute stray field shift for another z levelComputing L-curve data...Computing angle distribution...Conca_tenate exports of all imagesCondition %c: %sConeConesConservative denoiseConstant XConstant YConstant ZConstant value:Constructing lattice...ContactContact _modulusContinuous inhibitorControl block mark is not CB, file is damaged.Convergence _precision digits:Convert all datafields to 3D dataConvert datafield to 3D dataConvert three channels to XYZ dataConvert to XYZ dataConverts all datafields to 3D volume data.Converts data fields to XYZ data.Converts datafield to 3D volume data.Converts the MFM data to force gradient.Converts three channels to XYZ data.Convolution FilterConvolution _kernelConvolveConvolve two imagesConvolvedConvolves two images.Copy all fitted values to estimatesCopy from _anotherCopy results to clipboardCopy table to clipboardCopyright:Corning Tropel UltraSort CSV export (.csv)Corning Tropel UltraSort data (.ttf)Correc_ted dataCorrect LatticeCorrect RotationCorrect _dataCorrect affine distortionCorrect horizontal scars (strokes)Correct perspective distortionCorrect steps in linesCorrectedCorrected offsetCorrectionCorrects affine distortion of images by matching image Bravais lattice to the true one.Corrects line defects (mostly experimental algorithms).Corrects or applies perspective distortion of images.Correlate grain characteristicsCorrelating first set...Correlating second set...Correlating to determine mean shift...Correlating...CorrelationCorrelation LengthCorrelation Length TCorrelation MatrixCorrelation SearchCorrelation _methodCorrelation length tool.Correlation matrix
Correlation maximaCorrelation scoreCorrelation, leveledCorrelation, rawCosineCould not read settings.CountsCoupled PDEsCreate ACF imageCreate Image _DirectlyCreate PSDF imageCreate _PointsCreate _maskCreate _mask over exteriorCreate a difference graphCreate a new itemCreate a new item based on selected oneCreate a selection visualizing discs inscribed into grainsCreate a selection visualizing grain bounding boxesCreate a selection visualizing grain circumcirclesCreate a selection visualizing rectangles inscribed into grainsCreate image _directly from regular pointsCreate new imageCreate new volume dataCreate simple calibration dataCreate tip i_magesCreatec files (.dat)Creates a presentation with logarithmic color scaleCreates a shaded presentation of data.Creates a smaller image using binning.Creates angularly averaged profile graphs.Creates mask of outliers.Creates mask of values disconnected to the rest.Creates or modifies a mask using other channels.Creates presentations with various gradients (Sobel, Prewitt).Creating volume data...CreditsCriteria combinationCriterionCritical dimension measurementsCropCrop dataCrop non-intersecting regions of two imagesCrop result to _avoid outside pixelsCrop to actual dataCrop to interiorCrop tool, crops data to smaller size.Crops non-intersecting regions of two images.CrossCross at _zeroCross-CorrelationCross-correlate two data fieldsCross-correlation...CrossesCube countingCum. distribution of anglesCum. height distributionCurrent ImageCurrent Line Stray FieldCurrent _X axis will become:Current _Y axis will become:Current _Z axis will become:Current or Deflection or AmplitudeCurvatureCurvature 1Curvature 2Curvature SectionsCurvature angle 1Curvature angle 2Curvature center x positionCurvature center y positionCurvature center z valueCurvature radius 1Curvature radius 2CurvaturesCurveCurve PropertiesCurve _X position:Curve _Y position:Curve:CurvesCurves can be copied to other (compatible) graphs by dragging them from Curves tab to the graph window.Curves can be deleted from graphs by selecting the curve in Curves tab and pressing Delete.Cut GraphCut _all curvesCut graphCut off outlier_sCut-offCylinderCylinder (lying)CylindersDATA_INFO does not contain the expected columns: %s.DATA_INFO line contains fewer than %d fields.DME GDEF files (.gdf)DME MIF files (.mif)DME files (.img)DOS SpectrumDOS Spectrum for "%s"DWTDWT AnisotropyDWT anisotropy detectionDataData + fitData + polynomialsData Arithmetic expressions can include values (d), mask values (m), derivatives (bx, by) and coordinates (x, y).Data Arithmetic works as a scientific calculator: just type an arithmetic expression.Data BrowserData FormatData ProcessData Process → Basic Operations → Dimensions and Units changes scales, offsets and even lateral and value units.Data Process → Mask → Mark With can set the image mask based on another data, mask or presentation.Data Process → Presentation → Edge Detection → Step is a fine step detector with a good dynamic rangeData adjustmentData block is truncatedData block is truncated.Data deserialization failed.Data deserialization succeeded, but resulted in an unexpected object %s.Data field dimensions are not positive numbers.Data file %s was found instead of expected %s.Data file is too short.Data larger than detail?Data line %u does not contain four items.Data line does not start with a Y abscissa.Data line length %u does not correspond to the number of X abscissas %u.Data presentations created by functions in Data Process → Presentation do not change the underlying data.  All subsequent operations still apply to the underlying data.Data processingData rangeData same as detail?Data size %lu is not a multiple of point size %u.Data size %u does not match data dimensions (%u×%u).Data size %u does not match the number of data points %u×%u.Data synthesis modules can be also used to modify existing images.Data tag is missing.Data to compareData type %d is invalid or unsupported.Data value units must be deg, rad, m, Hz or V for the recalculationData with different <i>x</i> and <i>y</i> measures can be displayed either with pixel-wise or realistic aspect ratio.  The menu in data window top left corner enables switching between these two modes.Data:             %s
Dataset %s has %d items, which does not match image resolution %d×%d.Date:Daubechies 12Daubechies 20Daubechies 4Daubechies 6Daubechies 8DecheckerDecompression of compressed data failed with error %d.Decompression of compressed variable failed with error %d.DeconvolveDeconvolve imageDeconvolvedDefaultDefect _radiusDefect typeDeform image or scan lines in planeDeformationDegree of _chaosDektak OPDx data files (.OPDx)Dektak XML data files (.xml)DelaunayDeleteDelete selected itemDelimiter: %sDelimiter: 0x%02xDelimiter: whitespaceDelta functionDenoisedDenoises horizontal/vertical measurement.Denoises measurement on basis of two orthogonal scans.Densi_tyDepositing particles...Derived QuantitiesDescriptionDescription:Detached header does not refer to any data file.DetailDetect edges using Gaussian step filterDetectedDetected st_epDeveloped lengthDeveloped profile lengthDevelopersDevelopment is supported by the Czech Metrology Institute: Development version, built %sDiagonal crossDiamondDiamondsDifferenceDifference normDifferent number of X and Z valuesDiffusion Limited AggregationDigital AFM data recalibrationDigital Micrograph DM3 TEM data (.dm3)Digital Micrograph DM4 TEM data (.dm4)Dilated dataDilationDilation...Dimension 3100D files (.001, .002, ...)DimensionsDimensions and UnitsDirectionDirection 1Direction 2Direction of maximum Martin diameterDirection of minimum Martin diameterDirectional (φ) _graphDiscDiscrete levelsDiscrete stateDiscsDisplacementDisplacement FieldDisplayDisplay a 3D view of dataDisplay mask:Display, copy and export selectionsDisplay:Displays and extracts scan line graphs from multiple images simultaneously.Displays overall grain statistics.DistanceDistance TransformDistance measurement tool, measures distances and angles.Distance transform of maskDistort by PolynomialDistortedDistorts image or individual scan lines in plane using a displacement field.Distribute MaskDistribute mask to other channelsDistribute toDistributes masks to other channels.DistributionDistribution _widthDistribution _width:Distribution of anglesDistributions of various grain characteristicsDo not _segment, use only maskDocument HistoryDomainsDoughnutsDownDr_op sizeDragging channels or graphs from Data Browser to a window copies them to the corresponding file.Dragging selections from Selections Manager tool to a data window copies the selection to the target data.Draw _frameDraw _labelDraw _maskDraw _numbersDraw _selectionDraw _ticksDraw mask _legendDraw text _above scale barDriftDrift _linesDrift-correctedDual Lensmapper filesDuplicateDuplicate block %02x.ECS files (.img)EM4SYS NX II files (.bmp)EXR image loading failed with libImf error: %sEXR image writing failed with libImf error: %sE_xtract backgroundEach channel has its own metadata.  Display them by clicking with the right mouse button and choosing Metadata Browser.Each volume data have their own metadata.  Display them by clicking with the right mouse button and choosing Metadata Browser.EdgeEdge detection using a Gaussian step filter.Edge height (left)Edge height (right)Edit maskEdit selected itemEdit → Default Mask Color sets the default mask color.  This color is used when a mask is created on data that have not had a mask before.EditorElectrochemical Current (Iec)Electrochemical Voltage (Vec)Elementary XYZ data operations.EllipseEllipsesEllipsoidsElliptic shapesElliptical parabolaEmpty expressionEmpty parenthesesEmpty section name at header line %u.Enable _Gaussian multiplierEnable _Lorentz multiplierEnable _power multiplierEnable three componentsEnabledEncapsulated PostScript (.eps)End of fileEnd of file reached in channel block.End of file reached in color data header.End of file reached in color data.End of file reached in frame data #%u.End of file reached in frame header #%u.End of file reached in image block.End of file reached in page header.End of file reached in string #%u.End of file reached inside a data field.End of file reached when another channel was expected.End of file reached when looking for `%s' field.End of file reached when reading sample #%d of %dEnd of file reached when reading sample #%u of %uEnd of file reached when value was expected.End of list of filesEnforce prescribed statistical propertiesEnhances local contrast using a rank transform.Entire imageEntropyEntropy at scalesEntropy deficitEquivalent disc radiusEquivalent square sideErase continuous parts of maskErosionErosion...ErrorError loading file '%s'Error loading file: %s
Error: no particles.Error: not enough points.Error: out of range.Error: particles too large.Error: particles too small.Error: too many particles.EstimateEstimate Lift Height ShiftEstimate Transfer FunctionEstimate lift height difference in MFM dataEstimate transfer function from known data and ideal imageEstimate transfer function from known data and ideal imagesEstimated shift:Estimated tipEvaluate force-distance volume dataEvaluate volume force-distance dataEvaluate/correct thermal drift in fast scan axisEvaluated signalEvaluates and/or correct thermal drift in fast scan axis.Evaluates distribution of grains (continuous parts of mask).Evaluating...EvolutionEvovis XML data files (.xml)Exactly as specifiedExcess kurtosisExclude masked regionExcluded _pointsExecute script (Ctrl-E)Expected `%c' to skip more fields in row %u, got `%.16s'Expected `%s' array or `ABSENT'.Expected `%s' to skip more fields in row %u, got `%.16s'Expected data size calculated from file headers is %u bytes, but the real size is %u bytes.Expected delimiter `%c' after data in row %u, column %u, got `%c'Expected delimiter `%s' after data in row %u, column %u, got `%.16s'Expected header end marker ‘%s’ was not found.Expected header start marker ‘%s’ but found ‘%s’.Expected tag %u size is %u bytes, but the actual size is %u bytes.Expected whitespace to skip more fields in row %u, got `%.16s'Explicitly set fixed color rangeExponentialExponential (ACF)Exponential (HHCF)Exponential (PSDF)Exponential (RPSDF)Export %sExport 3D ViewExport 3D viewExport GXYZFExport LogExport PNG images with transparent backgroundExport Raw Grain ValuesExport TextExport XYZExport _labelsExport _metadataExport _unitsExport as 1_6 bit grayscaleExport graph data to a text fileExport graph into bitmapExport graph to PostScriptExport graph to a raster imageExport to PNGExport to PostScriptExport to Text FileExport volume data to a text fileExports data as simple ASCII matrix.Exports data as simple XYZ text file.Exports graph data to text files.Exports graphs to PostScriptExports images as miscellaneous 3D data formats and imports XYZ points from 3D formats.Exports volume data in simple ASCII formats.Expression contains unknown identifiersExtendExtend by adding bordersExtend results to bordersExtend to convolvedExtendedExtends image by adding borders.ExteriorExternalExtract Path SelectionExtract Z IsosurfacesExtract and view point spectroscopy dataExtract angularly averaged profilesExtract image planes and line graphsExtract mask to a new imageExtract part of graph into new oneExtract path selection dataExtract presentation to a new imageExtract profiles along arbitrary linesExtract to a new fileExtract volume data preview to an imageExtract z-coordinates of isosurfaceExtracts a straightened part of image along a curve.Extracts coordinates and tangents along a path selection.Extracts image planes and line graphs from volume data.Extracts z-coordinates of isosurfaces from volume data to an image.Extrapolated ACF decay to 1/eF-D spectraFEI Magellan SEM image (.tif)FEI TIA (Emispec) dataFFTFFT ImaginaryFFT ModulusFFT PhaseFFT RealFFT filteringF_arther thanF_raction of BF_unction:Faces borderFacetFacet AnalysisFacet LevelFacet Level can often level data with large features that make impossible to use standard plane leveling.  It levels the surface by making normals of flat areas point upwards.Facet Level offers to use/exclude the masked area if a mask is present on the data.Facet plane size:Facet-level tiltFacet-leveling...FacetsFailed to read image data.Failure:Fast axis to split:Fastest decay directionFeaturesFemtoScan SPM filesFemtoScan text files (.txt)Fi_ltered imageFi_xed precision:Fiducial record does not fit into the file.FieldField DataSize %ux%u does not match image dimensions %ux%u.Field byteskip cannot be -1 for text encodings.Field byteskip specifies more bytes than there are in the file.Field lineskip specifies more lines than there are in the file.FileFile %s is missing in the zip file.File _type: %sFile `%s' already exists.  Replace?File component/item ‘%s’ is truncated.File contains NaNs or infinities.File contains fewer than XSize*YSize data points.File contains no (importable) data.File contains no exportable channel.File does not contain any
readable data.File does not contain grid dimensions.File end was reached while scanning tags.File ended unexpectedly inside `%s'.File format version %.1f is not supported.File has been damaged by change of line endings, resulting in corruption of the binary part of the file.

Typically, this occurs if the file is treated as text when sent by e-mail uncompressed, sent by FTP in ascii mode (use binary), compressed by ‘Send to compressed folder’ in some versions of MS Windows, or any other file transfer that attempts to store text platform-independently.File header cannot be converted from ISO-8859-1 character set: %sFile header does not end with an empty line.File header ended unexpectedly.File header is larger than file.File header is truncated.File import was canceled by user.File information block is outside the file.File information block size is invalid.File is corrupted, deserialization failed.File is corrupted, magic header does not match.File is empty.File is not a %s file, it is seriously damaged, or it is of an unknown format version.File is not a Nanoscope file, or it is a unknown subtype.File is too short to be of the assumed file type.File is truncated.File main.xml contains multiple data elements.File name does not have the expected form for Omicron Flat files.File too large for previewFile version %u.%u is not supported.File → Merge imports all data from selected file to the current file.File → Open Recent → Document History opens a browser of recently loaded files with the possibility to search them by name.File:FileDescBegin cannot be inside another FileDesc.FileDescBegin has no corresponding FileDescEnd.FileDescEnd has no corresponding FileDescBegin.Fill _VoidsFill continuous empty areas with maskFill data under mask with zerosFill non-simple-connectedFill the entire filter maskFilterFilter GrainsFilter MaskFilter grains by their propertiesFilter: %sFiltered DataFiltered FFTFiltered FFT mo_dulusFiltered i_mageFiltering...Filters grains by their properties, using logical expressions and thresholds.Final _temperatureFind graph curve peaksFind simple relations between dataFinding minima...Finds peaks on graph curves.Fine step detection presentationFirst channel is switched off.First derivative slope transformationFirst imageFirst section isn't DataSetFirst vectorFitFit AreaFit FD CurveFit GraphFit ResultsFit ShapeFit TerracesFit Transfer FunctionFit a force-distance curveFit a function on graph dataFit critical dimensionFit failedFit force-distance dataFit geometrical shapesFit graph with functionFit terraces with polynomial backgroundFit transfer function from known data and imageFit was interruptedFits predefined geometrical shapes to data.Fits terraces with polynomial background.Fitted functionFitted function:  %s
Fitted shapeFitted step heightFitting in progress...Fitting...FixFixed _kilo threshold:Flat topFlat-topFlatten Base performs automated leveling of base flat surface with positive features.Flatten base of surface with positive featuresFlexible Image Transport System FITS (.fits)Flip Z axisFlip data both horizontally and verticallyFlip data diagonallyFlip data horizontallyFlip data verticallyFloat (32bit)Following featuresForce gradientForce setpointForce shapes to center around the originForce strengthFormat version is %d.  Only version 5 is supported.Found one internal local maximumFound %d internal local maximaFractal DimensionFractal correctionFractal interpolationFractal-Laplace blendFractional Brownian MotionFrame #%u is too short for scanned data header.Frame #%u is too short for spectroscopy data header.Frame is too short for Frame Mode.Frame is too short for dots or data.Freehand mask drawingFreehand mask erasingFrequencyFrequency SplitFrequency shiftFrequency-space exponentialFriction or PhaseFrom:Full color range from minimum to maximumFull diamondFull file path: %s.Full nuggetsFull spheresFull squareFull triangle downFull triangle leftFull triangle rightFull triangle upFunctionFunction written in PythonFunctionsFw lateral force GL MaterialGL Material  `%s'GL Material EditorGL materialsGSXM netCDF files (.nc)Garbage `%.16s' in row %u, column %uGarbage after data sample #%u.Garbage before first header section.Garbage was found in place of tag header line.GaussianGaussian (ACF)Gaussian (HHCF)Gaussian (PSDF)Gaussian (RPSDF)Gaussian (asymmetric)Gaussian (scan lines)Gaussian (two-dimensional)Gaussian Step DetectionGaussian _smoothingGaussian c_urvatureGaussian curvatureGaussiansGeneral convolution filterGeneral k-th rank filter replacing data with k-th rank values from the neighborhood.General powerGenerate columnar surfaceGenerate fractional Brownian motion-like surfaceGenerate image by annealing a lattice gasGenerate image by coupled PDEsGenerate image with domainsGenerate lattice based surfaceGenerate line noiseGenerate particles using dynamical modelGenerate patterned surfaceGenerate rod-like particles using dynamical modelGenerate surface by ballistic depositionGenerate surface by diffusion limited aggregationGenerate surface of random discsGenerate surface of randomly piled up shapesGenerate surface of randomly placed fibersGenerate surface of randomly placed objectsGenerate surface of uncorrelated noiseGenerate surface using spectral synthesisGenerate surface with separated phasesGenerate wavesGeneratedGenerates columnar surfaces by a simple growth algorithm.Generates domain images using a hybrid Ising model.Generates images by annealing a lattice gas model.Generates images by assorted coupled partial differential equation models.Generates particles using simple dynamical modelGenerates phase-separated structures.Generates random more or less touching discs.Generates random surfaces similar to fractional Brownian motion.Generates random surfaces using spectral synthesis.Generates randomly patterned surfaces by piling up geometrical shapes.Generates randomly patterned surfaces by placing objects.Generates rod-like particles using simple dynamical modelGenerates surfaces based on regular or random lattices.Generates surfaces by ballistic deposition.Generates surfaces by diffusion limited aggregation.Generates surfaces composed from randomly placed fibers.Generates uncorrelated random noise.Generates various kinds of line noise.Generates various kinds of waves.Generating fibers...GeneratorGeneric convolution filter with a user-defined matrix.Gnuplot friendlyGood Mean ProfileGrain CorrelationsGrain DistributionsGrain LocationGrain MeasureGrain Measure tool is great for examining individual grains.  Overall grain statistics are available in Data Processing → Grains.Grain RemoveGrain StatisticsGrain SummaryGrain measurement tool, calculates characteristics of selected continuous parts of mask.Grain minimum basis volumeGrain numberGrain property statisticsGrain removal tool, removes continuous parts of mask and/or underlying data.Grain summary informationGrains or other areas of interest are marked with masks.  Many functions then can do something interesting with the masked areas.GraphGraph PeaksGraph StatisticsGraph axis labels can be edited after by clicking on the label.Graph curve properties can be edited by clicking on the curve.Graph key (legend) properties can be edited by double-clicking on the legend.Graph → Critical Dimension measures steps on extracted profile graphs.Graphics Interchange Format GIF (.gif)GraphsGrating (3-level)Grating (simple)Grating imageGreenGroup id is not a valid identifierGroup id is not uniqueGroupCount in [DataSet]Grow Columnar SurfaceGrow/ShrinkGwyXYZ data filesGwyddion Simple Field (.gsf)Gwyddion Tip of the DayGwyddion User Guide explains in detail many of the methods and algorithms implemented in Gwyddion.Gwyddion dumb dump files (.dump)Gwyddion is a son of Math.Gwyddion native format (.gwy)HDF data with `native' type is not supported.HDF5 library error %ld in function %s.HHCFHSymH_eight:HaarHalf (16bit float)Half-nuggetsHalf-sphereHalf-spheresHammingHannHarris corner presentationHatHeader block %u has invalid position or size.Header field `%s' is missing.Header is too short (only %d bytes).Header is too short (only %lu bytes).Header line %u lacks key-value separator.Header line %u lacks prefix %s.Header line starts with a colon.Header properties file for index %u is missing.Header suddenly ended at line %u; end of header marker is missingHeader tag key is empty.Header tag key is not nul-terminated.Header tag ‘%s’ key is not nul-padded.Header tag ‘%s’ lacks CRLF terminator.Header tag ‘%s’ value is not nul-padded.Header tag ‘%s’ value is not nul-terminated.HeaderLength %u differs from actual header length %uHeightHeight difference scoreHeight difference, leveledHeight difference, rawHeight distributionHeight histogramHeight:Hertzian Contact ModulusHertzian contact modulusHertzian theory deformationHex data contain fewer values (%u) than corresponds to the sizes (%u).HexagonalHexagonal pyramidsHexagonal rodsHiddenHide full controlsHide tool dialog (Esc)High-passHigh-pass imageHitachi AFM files (.afm)Hitachi AFM files, old (.afm)Hitachi SEM files (.txt + image)Hitachi-AFM has not registered file type `%s'.Holding Shift restricts directions of selected lines to multiples of 15°.Holding Shift restricts shapes of selected ellipses to perfect circles.Holding Shift restricts shapes of selected rectangles to perfect squares.HolesHori_zontal gap:Horiz./vert. linesHorizontalHorizontal Prewitt gradient presentationHorizontal Sobel gradient presentationHorizontal profile %dHorizontal sizeHough TransformHough circle r=%dHough lineHough lines presentationHough transform.HueHyperbolic flattenI-V spectraI-Z spectraIEEE doubleIEEE halfIEEE singleIQRISO 28600:2011 SPM data transfer files (.spm)ISO 5436-2 OpenGPS data (.x3p)I_maginary partI_nstant updatesIdIdentical _measuresIf multiple regions are selected on a graph, e.g. in 1D FFT Filtering, individual regions can be deleted by clicking on them with the right mouse button.Igor Pro text waveIgor binary waves (.ibw)Ima_ge differenceImageImage (scan lines)Image A has no mask.Image B has no mask.Image InformationImage _differenceImage data are outside the file.Image data starts past the end of file.Image for _ACF:Image header record is too short.Image is too large to be stored as TARGA.Image is too small.Image number in the label %u does not match the number %u in the index.Image size measured in TImage sliceImagesImages (two-dimensional)ImaginaryImmerse DetailImmerse a detail into imageImmerse high resolution detail into overall image.Immersed detailImport %sImport Graph DataImport NMM Profile SetImport support for files of type

%s

is incomplete due to the lack of documentation, testing files and/or people willing to help with the testing.

If you can help to improve the import please contact the author of module %s-%s:

%sImported ChannelsImported data are likely incorrect.Imports 16bit grayscale PPM, PNG and TIFF images, imports and exports OpenEXR images (if available).Imports A.P.E. Research DAX data files.Imports AFM Workshop spectrum files.Imports AFM data files from NASA Phoenix Mars mission.Imports AIST-NT data files.Imports APE (Applied Physics and Engineering) data files.Imports Aarhus MUL files.Imports Accurex II text files.Imports Alicona Imaging AL3D files.Imports Ambios 1D profilometry data files.Imports Ambios AMB data files.Imports Analysis Studio XML (.axz & .axd) files.Imports Anfatec data files (two-part .txt + .int).Imports Assing AFM data files.Imports Attocube Systems ASC files.Imports Automation & Robotics Dual Lensmapper data filesImports Benyuan CSM data files.Imports Burleigh BII binary data files.Imports Burleigh IMG data files version 2.1.Imports Burleigh text/bin exported images.Imports Carl Zeiss CLSM images.Imports Carl Zeiss SEM images.Imports Code V interferogram files.Imports Corning Tropel UltraSort files.Imports Createc data files.Imports DME GDEF data files.Imports DME MIF data files.Imports Danish Micro Engineering (DME) data files.Imports Dektak OPDx data files.Imports Dektak XML data files.Imports Digital Instruments Nanoscope II data files.Imports ECS IMG files.Imports EM4SYS data files.Imports Evovis XML data files.Imports FEI Magellan SEM images.Imports FEI Tecnai imaging and analysis (former Emispec) files.Imports FemtoScan SPM data files.Imports FemtoScan TXT files.Imports Gwyddion XYZ field files.Imports Hierarchical Data Format (HDF) files, version 4.Imports Hitachi AFM files.Imports Hitachi S-3700 and S-4800 SEM files.Imports Igor binary waves (.ibw).Imports Image Metrology BCR data files.Imports IntelliWave interferometric ESD data.Imports Intematix SDF data files.Imports IonScope SICM data files.Imports JEOL JSPM data files.Imports JEOL data files.Imports JPK image scans.Imports LEXT data files.Imports Leica CLSM image files (LIF).Imports MapVue data files (.map).Imports Matlab MAT files v5.Imports MicroProf FRT profilometer data files.Imports Molecular Imaging MI data files.Imports Molecular Imaging STP data files.Imports NANOTOP AFM filesImports NT-MDT data files.Imports Nano Measuring Machine profile files.Imports NanoScan XML files.Imports NanoScanTech .nstdat files.Imports NanoSystem profilometry data files.Imports Nanoeducator data files.Imports Nanomagnetics' NMI file format version 3 and 5Imports Nanonics NAN data files.Imports Nanonis DAT spectrum files.Imports Nanonis SXM data files.Imports Nanosurf EZD and NID data files.Imports Nanosurf PLT files.Imports Nanotec WSxM data files.Imports OLS data files.Imports OME-TIFF data files.Imports Olympus OIR data files.Imports Omicron STMPRG data files (tp ta).Imports Omicron data files (two-part .par + .tf*, .tb*, .sf*, .sb*).Imports Omicron flat files.Imports Pacific Nanotechnology PNI data files.Imports Park Systems data files.Imports Quesant file format.Imports RHK Technology SM3 data files.Imports RHK Technology SM4 data files.Imports RHK Technology SPM32 data files.Imports Renishaw WiRE data files (WDF).Imports S94 STM data files.Imports SIS (Surface Imaging Systems) data files.Imports SPMLab floating-point files.Imports Seiko XQB, XQD, XQT and XQP files.Imports Sensofar PLu file format, version 2000 or newer.Imports Sensolytics text files.Imports Shimadzu SPM data files.Imports Surf data files.Imports Surfstand group SDF (Surface Data File) files.Imports SymPhoTime data files, version 2.0.Imports Tescan SEM images.Imports Thermicroscopes SpmLab R3 to R7 data files.Imports Thermo Fisher SPC files.Imports Unisoku data files (two-part .hdr + .dat).Imports WITec ASCII export files.Imports WITec WIT data files.Imports WItec Project data files.Imports WSF ASCII files.Imports WinSTM (.stm) files.Imports Wyko OPD and ASC files.Imports Zemax grid sag data files.Imports and exports ISO 28600:2011 SPM data transfer format.Imports and exports nearly raw raster data (NRRD) files.Imports binary MetroPro (Zygo) data files.Imports data from low-depth pixmap images (PNG, TIFF, JPEG, ...).  The set of available formats depends on available GDK pixbuf loaders.Imports files based on Hierarchical Data Format (HDF), version 5.Imports network Common Data Form (netCDF) files created by GXSM.Imports old NTMDT MDA Spectra files.Imports old Veeco Dimension 3100D files.Imports raw data files, both ASCII and binary, according to user-specified format.Imports simple text files as graph curves.Improve _AllImprove _DirectionIn trainingIn_hibitor couplingIncidenceInclination (gra_dient) graphInclination DistributionInclination θInclination φInclinationsInclude domain _wallsInclude only masked regionIncorrect number of axes in parameter file.Increase Local ContrastIndependent degreesIndexIndividual lines can be deleted in Distance tool by selecting them in the list and pressing Delete.Individual lines can be deleted in Profiles tool by selecting them in the list and pressing Delete.InfoInfo → Show Data Browser brings back a closed Data Browser.InformationInitialInitial particle set...Initial valuesInitialization of OpenGL failed.  Check output of <tt>glxinfo</tt> and warning messages printed to console during Gwyddion startup.Initializing...Instant 3D renderInstant:Integer (32bit)IntegralsIntegrationIntelliWave interferometric data (.esd)Intematix SDF data files (.sdf)InteractiveInteractive color range tool, allows selecting the data range false color scale should map to, either on data or on height distribution histogram.InteriorInternal errorInterpolate _horizontal ACFInterpolate data under mask by solution of Laplace equationInterpolate data under mask with fractal interpolationInterpolate small defects, manually selectedInterpolating...InterpolationIntersect selection with maskIntersectionIntersectionsInvalid `%s' value: %d.Invalid `%s' value: %g.Invalid argument of %sInvalid data address 0x%0x found.  File is in some unknown format version.Invalid data type %d for image data.Invalid data type %d for line data.Invalid field dimension: %d.Invalid file header.Invalid item key formatInvalid line found when looking for `%s' field.Invalid object nesting at line %u.Invalid operator %c argumentInvalid or unsupported tag type %u.Invalid plane number %u in tag ‘%s’.Invalid short tag of type %u claims to consists of %u bytes.Invalid tag data positions were found.Invalid tag type definition in entry ‘%s’.Invalid tokenInverse coshInvert (find valleys)Invert maskInvert value in volume dataInvert values about meanInverts value in volume dataIonScope SICM files (.img)Isosurface z for %.*f %sIt is necessary to select more data points than free fit parametersItem `%s' has unexpected type %u instead of %u.Item `%s' is beyond the end of the file.Item key contains invalid charactersItem key does not belong to any known dataItems of per-axis header field %s are not quoted.Iterating estimate (iteration %d)...JEOL JSPM data files (.tif)JEOL data files (.tif)JPEG (.jpeg,.jpg)JPEG 2000 (.jpx)JPK force curves (.jpk-force, .jpk-force-map, .jpk-qi-data)JPK image scans (.jpk, .jpk-qi-image)K-MediansK-correlated (PSDF)K-meansK-means center %dK-means cluster of %sK-means error of %sK-means iteration...K-medians center %dK-medians cluster of %sK-medians error of %sK-medians iteration...K-th rank filterKaiser 2.5Keep grains satisfying:Keep lateral offsetsKeep sizeKernel SizeKernel _sizeKeyKey at header line %u is empty.Key ‛+’ or ‛=’ zooms in a data window.Key ‛-’ (minus) zooms out a data window.Key ‛Z’ resets data window zoom to 1:1.Keyence VK4 data files (.vk4)KurtosisKuwaharaL-curveLJ _particle strength:LJ _surface strength:L_ight θ:Label PropertiesLabel TextLabel string length %u is larger than 20.LabelsLanczosLaplaceLaplace solverLaplacian background basis volumeLaplacian of Gaussian step detection presentationLateralLateral ScaleLateral dimensions are different physical quantitiesLateral force simulatorLateral scaleLateral units:LatticeLattice VectorsLattice rela_xationLayer allowing selection of a projective plane.Layer allowing selection of a single long curve.Layer allowing selection of a two-dimensional lattice.Layer allowing selection of arbitrary straight lines.Layer allowing selection of combined horizontal and vertical lines.Layer allowing selection of elliptic areas.Layer allowing selection of horizontal or vertical lines.Layer allowing selection of rectangular areas.Layer allowing selection of several points, displayed as crosses or invisible.Le_ngthwiseLeast squaresLeica LIF image files (.lif)LengthLevel %dLevel GrainsLevel RotateLevel XYZ DataLevel all XY planesLevel data by arc revolutionLevel data by fitting a plane through three pointsLevel data by local median subtractionLevel data by mean plane correctionLevel data by mean plane subtractionLevel data by sphere revolutionLevel data to make facets point upwardLevel graph by line.Level graph curvesLevel individual grains, interpolating the shifts between using Laplacian interpolationLevel rows using intersections with given linesLeveled dataLeveled surfaceLevels all XY planesLevels data by simple plane subtraction or by rotation, and fixes minimal or mean value to zero.Levels individual grains, interpolating the shifts between using Laplacian interpolation.Levels the flat base of a surface with positive features.LibUnique
LicenseLift height difference estimation from data blurLight & MaterialLimit RangeLimit data rangeLimit the data range using a lower/upper threshold.Limit to _percentilesLimited total degreeLineLine %u does not contain mandatory label ‘%s’.Line + pointsLine NoiseLine StyleLine _width:Line graphLine levelingLine t_hickness:LinearLinear fitLinesList ‘%s’ has %u items which differs from the number %u given by ‘%s’.LoGLoad Calibration DataLoad calibration dataLoad calibration data from text fileLoad calibration data from text file.Loaded %d data pointsLoaded using: %s.Loading document historyLoading of file version %u.%u is not implemented.Loading settingsLoads SPML (Scanning Probe Microscopy Markup Language) data files.Loads and saves Gwyddion native data files (serialized objects).Local RMS value based step detection presentationLocal RMS value based step detection with postprocessingLocal inclination visualization presentationLocal nonlinearity based edge detection presentationLocal normalizationLocal slope azimuth presentationLocating...Log of %s (%s)Log-Phi PSDFLogarithmLogistic RegressionLogscale TransformLorentzianLow level exclude limitLow-passLow-pass imageLowerLower thresholdLower threshold:LumaMFM Recalculate DataMFM force gradientM_aximumM_inimum frequencyM_inimum polynomial degreeM_inimum polynomial degree:Ma_ximum frequencyMachine-readable formatMajor semiaxis of equivalent ellipseMake Pixels S_quareMalformed data encountered when reading sample #%d of %dMalformed data encountered when reading sample #%uMalformed header line (missing =).Manage chosen selectionManage z-axis calibrationMany modules (%u) failed to register.MapVue files (.map)Mark DisconnectedMark Grains by Edge DetectionMark Grains by ThresholdMark Grains by WatershedMark ScarsMark WithMark areas by 2D slopeMark data disconnected from other valuesMark data farther than 3σ from mean valueMark grains by thresholdMark grains by watershedMark grains with edge detection mechanismMark grains with logistic regressionMark horizontal scars (strokes)Mark lines with inverted signMark withMarkedMarked data rangeMarked terracesMarker _radius:Marking boundaries...Marking outliers...Marks and/or removes scars (horizontal linear artifacts).Marks grains by edge detection method.Marks grains by thresholding (height, slope, curvature).Marks grains by watershed algorithm.MaskMask AMask A is in data d%dMask BMask B is in data d%dMask EditorMask Editor tool can create, edit, invert, grow and shrink masks.Mask _Color...Mask color can be changed by right-clicking on a data view and selecting Mask Color from the menu.Mask combining and modificationMask editor tool, allows interactive modification of parts of the mask.Mask in useMasking ModeMatlab MAT 5 files (.mat)Max. positionMaximizes local contrast.MaximumMaximum Martin diameterMaximum _widthMaximum bounding directionMaximum bounding sizeMaximum broadeningMaximum broadening:Maximum heightMaximum height of the profileMaximum height of the roughnessMaximum inscribed disc center x positionMaximum inscribed disc center y positionMaximum inscribed disc radiusMaximum peak heightMaximum peak to valley roughnessMaximum pit depthMaximum roughness peak heightMaximum roughness valley depthMaximum valueMaximum value on boundaryMaximum z valueMea_sureMeanMean _curvatureMean and deviationMean curvatureMean deposited thicknessMean difference: %.*f %sMean grain areaMean grain sizeMean normal:Mean profileMean radiusMean roughnessMean spacing of profile irregularitiesMean square differenceMean square difference:Mean valueMean value subtractionMeasure DistancesMeasure FacetsMeasure LatticeMeasure distances and directions between pointsMeasure distances in graphMeasure facet anglesMeasure individual grains (continuous parts of mask)Measure latticeMeasurement mode must be 2 or 3; %u is invalid.Measures parameters of two-dimensional lattices.MedianMedian LevelMedian of differencesMedian valueMedian-leveling...Merge DataMerge FileMerge XYZ DataMerge two XYZ point setsMerge two imagesMergedMerged graph at x: %d y: %dMerged imagesMerges two images.Messages for %sMessages for UntitledMetadata _Browser...Metadata of %s (%s)MethodMethod:MetroPro files (.dat)MicroProf FRT files (.frt)MicroProf FRT text files (.txt)Micromap SDF files (.sdfa)Min. positionMinimumMinimum Martin diameterMinimum _lengthMinimum and maximumMinimum bounding directionMinimum bounding sizeMinimum broadeningMinimum broadening:Minimum circumcircle center x positionMinimum circumcircle center y positionMinimum circumcircle radiusMinimum terrace _areaMinimum terrace _length:Minimum valueMinimum value on boundaryMinimum z valueMinkowski boundaryMinkowski connectivityMinkowski volumeMinor semiaxis of equivalent ellipseMirrorMissin_g value substituteMissing argument of %sMissing closing parenthesisMissing colon in header line.Missing data field height.Missing data field width.Missing data start marker (*).Missing data start marker [Data].Missing data start marker \x1a\x04.Missing end of data field marker.Missing end-of-data marker.Missing header.Missing opening parenthesisMissing operator %c argumentMissing or invalid some integers heaven knows what they mean but that should be here.Mixing energy ABMixing energy ACMixing energy BCModeModelModel AFM tipModel TipModel and signal are not compatible.Modeled tipModels SPM tip.ModuleModule BrowserModulusModusMomentMoment-BasedMonte CarloMore than one record dimension found.Morphological OperationMorphological operation with maskMost likely Gwyddion was not upgraded correctly.  Instead, one installation was just overwritten with another, and now it is a mess.

Please remove completely the module directory

%s

and reinstall Gwyddion.

See Info → Module Browser for specific errors.Move _DownMove _UpMove labelMove light source (L)Multi-channel file with all compatible dataMultichannel cross-corelationMultiprofileMutual CropN.A.NN training errorNNANNA 3DNT-MDT files (.mdt)NTMDT old MDA Spectra data (.sxml .dat)NameName-Version:Name:Nano Measuring Machine data import must be run as interactive.Nano Measuring Machine files (*.dsc)Nano-Solution/NanoObserver data (.nao)NanoScan XML files (.xml)NanoScanTech data (.nstdat)NanoSystem profilometry files (.spm)Nanoeducator files (.mspm, .spm, .stm)Nanomagnetics File (.nmi)Nanonics files (.nan)Nanonis SXM files (.sxm)Nanonis spectrum files (.dat)Nanoscope II filesNanoscope III filesNanosurf PLT files (.plt)Nanosurf files (.ezd, .nid)Nanotop files (.spm)Natural (e)Naïve ACF decay to 1/eNearly raw raster data (NRRD) files (.nrrd)NegativeNegative abscissa handlingNegative areaNegative ordinate handlingNeither `%s' nor `%s' header field found.Nested directories foundNetCDF records are not supported.NetworkNetwork _name:NetworksNeural Network TrainingNeural network SPM data processingNew _heightNew _units:New _widthNew dimensionsNew graphNew itemNoNo area in the zoom selected.No corresponding data file was found for header file.No data are selected for any criterion (all IDs are 0).No data file corresponding to `%s' was found.No data loadedNo data used.No free parameters are selected.No image was rendered so farNo maskNo module can load this file type.No module can save to this file type.No neighbors foundNo point in the image selected.No previous record to continue at line %u.No suggestion
No suitable terrace steps foundNo terraces were foundNo timestamp channel found, either called 'Timestamp' or having units in seconds.No working method to show
%s
in a web browser was found. Details about the attempts can be found in the console or gwyddion.log.Noise suppression t_hresholdNoise typeNoisify MaskNon-interactiveNon-uniform bits per sample are unsupported.Non-uniform channel lists are not supported.Non-uniform point and/or segment numbering is not supported.Non-zero lineskip is supported only for uncompressed files.NoncontactNone (only points)Normalize as _integralNot all the particles could be deposited (%u),
try more revise steps.Not enough lines (%d) for offset (%d)NothingNuggetsNullNull horizontal offsets, moving the origin to the upper left cornerNum_ber of stepsNumber of _levelsNumber of _peaksNumber of combinations: %u.Number of data files:Number of grainsNumber of islandsNumber of line triggers %u is smaller than the number of scan lines %u.Number of maximaNumber of path pointsNumber of pointsNumber of points: %d of %d
Number of points: %u
Merged as too close: %u
Added on the boundaries: %uNumber of terracesNuttallOMOMSO_ffsetO_mitO_pacity:O_rdinateO_utline thickness:O_versamplingObject File Format (.off)Object has several referencesObject list in %s is truncated.Object of type %s is truncated.ObjectsObjects markedOctagonOffsetOffset _dispersionOffsetsOlympus LEXT OLS3000 (.ols)Olympus LEXT OLS4000 (.lext)Olympus OIR data files (.oir)Olympus packed OIR data files (.poir)Omicron MATRIX (.mtrx & .mtrx)Omicron MATRIX (param.mtrx & data.mtrx)Omicron STMPRG files (tp ta)Omicron files (.par + data)Omicron flat files (*.*_flat)One XY-layer per lineOne Z-profile per lineOne image location produced refinement%d image locations produced refinementOne-sided _negativeOne-sided _positiveOnly PI E710 and KDT180-100-Im imaging formats are implemented.Only area imaging files are supported.Only files with two columns can be imported.Only image and line files are supported.Only loadable shownOnly regular and irregular mappings are implemented but the file has mapping type ‘%s’.Only two- and three-dimensional data are supported.Only two-dimensional images are supported.Only type %s is supported for axis %s.Only zoomed partOpacity scaleOpen FileOpen Microscopy OME-TIFF (.ome.tiff)Open Python ScriptOpen script in Python language (Ctrl-O)Open selected fileOpenEXR data type %u is invalid or unsupported.OpenEXR images (.exr)OpenGL 3D ViewOpenGL 3D graphics not availableOpenGL was disabled with a command-line option.OpenMP parallelizationOpening of `%s' failedOperandOperandsOperands:OptionsOrder peaks _byOrder-BasedOrdinate _YOrdinate _imageOrdinate data calculated from different imageOri_ginalOrien_tationOrientationOrientation of equivalent ellipseOriginOrigin friendlyOriginal _imageOriginal imageOtherOther _scale:Other characterOut_line color:Outliers _threshold:OutputOutput OptionsOutput _sizeOutput _typeOutput statisticsOutput typeOutput type:OverwritePCX (.pcx)PGM images with 16bit depth (.pgm)PID/scan speed _ratioPNG images with 16bit depth (.png)PNI files (.pni)POSIX _number formatPSDFPSDF %.0f°PSDF Gaussian fitPSDF SectionPSDF exponential fitPSI binary header is too short.P_robe typePagesParabolaParabolicParabolic bumpParabolic bumpsParabolic stepParallelParallel Media Stray FieldParameterParameter `%s' is missing or invalid.Parameter errorParameter estimation failedParameter file is too short.Parameter tag set is incomplete.ParametersPark Systems data files (.tiff, .tif)Particle GenerationParticle SizeParticle lengthParticle r_adiusParticle r_adius:Particle widthPartitioningPascal realPassing Sch_woebelPathPath LevelPath Level tool levels misaligned rows by lining them up along manually selected lines.  If there are no large features automatic Align Rows usually works well.Path level tool, performs row leveling along on user-set lines.PatternPeak CountPer-axis header field %s contains too few items.Per-axis header field %s contains too many items.Performs basic morphological operations with masks.Performs simple and true Euclidean distance transforms of masks.Perpendicular Media Stray FieldPh_ysical scale:PhasePhase (degrees)Phase (radians)Phase adjusted result APhase adjusted result BPhase onlyPhysical DimensionsPhysical dimensions are invalid.Physical dimensions differPhysically transforms graph data to logarithmic scale.Pi_xel size:Pi_xelwise SquarePicoHarp files (.pt3)PicoView Data Files (.mi)Pile Up ShapesPixbuf loader refused data: %s.Pixbuf save failed: %s.Pixel areaPixel area MFM force gradientPixel dimensions differPixels per _inch:Pixmap has not registered file type `%s'.Pl_ot color:Place second curve to the _rightPlaceholderPlacementPlain along main diagonalsPlain textPlanar configuration %u is not supported.PlanePlane LevelPlane Level offers to use/exclude the masked area if a mask is present on the data.Plane levelingPlane subtractionPlane variancePlane-level previewed dataPlane:Please waitPlot _graphsPlot _stylePlot _style:Plot background _graphPlot drift _graphPlot full rangePlot point density mapPlot size _graphPlots one grain quantity as a function of another.Plots one image data as a function of another and finds relations.Plug-in `%s' did not return any meaningful data.Plug-in `%s' does not implement file loading.Plug-in `%s' does not implement file saving.Plug-in `%s' returned non-zero exit status: %d.Plug-in proxy is a module capable of querying, registering, and running external programs (plug-ins) on data pretending they are data processing or file loading/saving modules.Plugin-proxy must be run as interactive.Po_werPoint SpectroscopyPoint Spectrum, extracts point spectra to a graph.Point TypePoint _type:Point chargePoint density mapPointer tool, reads value under pointer.PointsPoints anywherePoints per profile:Points: %dPolygon file format (.ply)Polynomial (order 0)Polynomial (order 1)Polynomial (order 2)Polynomial (order 3)Polynomial (order 4)Polynomial (order 5)Polynomial CoefficientsPolynomial backgroundPolynomial leveling...Portable Network Graphics (.png)Portable Pixmap (.ppm,.pnm)Portable document format (.pdf)Posi_tion:PositionPositionsPositivePositive areaPostprocessingPowerPower Spectral DensityPower Spectrum DensityPower of source _XY:Power of source _Z:Power spectrumPower-exponential (ACF)Pre-normalized intensity of %sPre_fill from minimaPre_vPreferredPrefill _levelPreprocessed imagePreprocessingPresentation with local contrast ehnanced using a rank transformPresentation with maximized local contrastPreserve X scalePreserve areaPreserve existing masksPreset _name:PresetsPressing Ctrl-C copies the image of a channel, graph or 3D view to the clipboard.Pressing Ctrl-F runs the last used data processing function with with the same parameters on the current data.Pressing Ctrl-Shift-F re-shows the parameter dialog of the last used data processing function (or executes it immediately if it has no parameters).Pressing Esc hides tool windows.Pressing F1 or the Help buttons in most windows shows a relevant part of the user guide in a web browser.PreviewPreview OptionsPreview quantity:Preview:Previews in the file open dialog can be shown with plane and/or line leveling applied.  Use the switches at the bottom of the preview list.Prewitt edge presentationPrimitive cellPrinceton Instruments SPE filesPrinceton Instruments camera SPE files.ProbabilitiesProbeProcess data using a trained neural networkProfileProfile %dProfile %uProfile length ratioProfile tool which reads horizontal and/or vertical scan lines.Profile tool, creates profile graphs from selected lines.ProfilesProfiles Along AxesProgram MessagesProgressive previewProjected areaProjected boundary lengthProjected lengthProjective CorrectionProjective rectanglesProminenceProportionPseudo-LaplacePsi HDF4 files (.hdf)Put _units to titlePygwy ConsolePygwy, the Gwyddion Python wrapper.PyramidPyramid (3-sided)Pyramid (diamond)PyramidalPyramidsPython Interpreter ErrorsPython Scripting InterfacePython interpreter error occurred.Python wrapper consoleQuadratic splineQuantityQuantity to levelQuesant files (.afm)RGB sumRHK SM3 files (.sm3)RHK SM4 files (.sm4)RHK SPM32 files (.sm2)RMSRMS (grain-wise)RMS roughnessRMS valueR_andom seedR_andom seed:RaRa_nkRa_w transformRadial ACFRadial PSDFRadial ProfilesRadial SmoothingRadial distanceRadial profile %dRadial profilesRadially smoothedRandom DiscsRandom FibersRandom NoiseRandom ObjectsRandom bumpyRandom constantRandom linearRandom orientationRandom points order unsupportedRandomi_zeRangeRange maximumRange minimumRange:RankRank FilterRank TransformRank differenceRank filtered (%.1f %%)Rank transformRank transform...Rasterize XYZ DataRasterize to imageRasterizes XYZ data to images.Ratio α = T/LRaw data filesRaw data import must be run as interactive.Re-showRe-show LastRe_initializeRe_set RotationRe_verseRead Raw FileRead ValueRead Value tool can shift data to make <i>z</i>=0 plane pass through the selected point.Read Value tool displays also the local facet normal.Read horizontal and/or vertical profilesRead lines from multiple images simultaneouslyRead value under mouse cursorReading channels...Reading files...Reading of fast scan files is not implemented - yet.Reads ATC SPMxFormat files.Reads Digital Micrograph DM3 and DM4 files.Reads Flexible Image Transport System (FITS) files.Reads ISO 5436-2 OpenGPS .x3p files.Reads Nano-Solution/NanoObserver .nao files.Reads Sensofar PLUx files.Reads and exports Gwyddion Simple Field files.Reads and exports Gwyddion dumb dump files.RealRecalculate to force gradientRecalculated DataRecalculated MFM dataRecalibrate volume data dimensions or value range.Recalibrated DataRecalibrates scan lateral dimensions or value range.RectRectangleRectanglesRectangular shapesRedRedoRedo again last undone actionReduce size by binningRef. plane _toleranceRegistered functions:Registering Registering modulesRegularized filterRegularized image deconvolution.RelateRelated _dataRelation to Image SizeRelaxation typeRelaxing heights...Relaxing lattice...Released %sRemote ControlRemoveRemove Polynomial BackgroundRemove Scars in the toolbox runs with the settings last used in Mark Scars.Remove SpotsRemove entries of files that no longer existRemove grains touching image edgesRemove graph noise by filtering.Remove individual grains (continuous parts of mask)Remove mask from dataRemove noise from graph curvesRemove outliers from XY planesRemove polynomial backgroundRemove presentation from dataRemove white borders from exported imageRemoves data under mask using fractal interpolation.Removes data under mask, interpolating them with Laplace equation solution.Removes outliers from all XY planesRendering surface...Renders data into vector (SVG, PDF, EPS) and pixmap (PNG, JPEG, TIFF, WebP, PPM, BMP, TARGA) images. Export to some formats relies on GDK and other libraries thus may be installation-dependent.Renishaw WiRE data files (.wdf)RepeatRepeat LastReplace File?Report bugs to:Required tag %u or %u was not found.Required tag %u was not found.Res_toreResampleResample data with non-1:1 aspect ratio to square samplesResample to pixel sizeResampled DataResamples data to specified pixel size.Reserve space for _colorbarReset Ran_gesResidual sum:   %g
ResolutionRestoreResultResult AResult BResult UnitsResult _typeResult _type:Result formattingResult sizeResultsResults
Rev lateral forceReverse bi_ts in samplesRevert to _Previous ValuesRevolve ArcRevolve SphereRevolving sphere...Rewrap periodic valuesRhombicRidgesRingRms (Rq)Ro_wsRoot mean squareRoot mean square (RMS) slopeRoot mean square (RMS) wavelength of the profileRoot mean square roughnessRoot mean square wavinessRotateRotate all pointsRotate by _angleRotate by arbitrary angleRotate data 90 degrees clockwiseRotate data 90 degrees counterclockwiseRotate view (R)Rotated DataRotationRoughnessRoughness ParametersRoughness averageRoundRoundn_essRoundnessRow backgroundRow-level previewed dataRow/Column StatisticsRow/column statistical function tool, mean values, medians, maxima, minima, RMS, ..., of rows or columns.Rq (RMS)RtRun _FullRun _PartialRun plug-in %sRunning computation...Running revise (%d active particles)...RzS94 STM files (.s94)SEM ImageSEM image simulation...SIS files (.sis)SPIP ASCII files (.asc)SPML files (.xml)SPMLab floating-point files (.flt)STP files (.stp)S_quare imageS_witch to Color Gradient ModeS_witch to Lighting ModeS_witch to Overlay ModeS_ymmetricalS_ymmetrizeSame areaSamples are si_gnedSave 3D view to an imageSave Distance TableSave Facet VectorsSave FileSave Fit ReportSave Fractal DimensionSave Grain StatisticsSave Grain SummarySave MetadataSave ParametersSave Peak ParametersSave Python Script asSave Results to FileSave Roughness ParametersSave Statistical QuantitiesSave TableSave Terrace Fit SurveySave Terrace TableSave results to a fileSave script (Ctrl-S)Save script as (Ctrl-Shift-S)Save table to a fileSaved using: %s.Saving of 3D view to `%s' failedSaving of `%s' failedScalable Vector Graphics (.svg)ScaleScale adaptiveScale and space adaptiveScale by _ratioScale dataScale size _automaticallyScale value range (V)Scale view as a whole (S)Scaled DataScales _with sizeScales _with widthScales data by arbitrary factor.Scan line discrepancyScan size header field overlaps with data.Scanning file (%u curves)...Scanning...ScarsScars typeSchaumScoreSe_t maskSearch _fromSearch _toSearch canceledSearch for a detail using correlationSearch parametersSearches for a detail in another image using correlation.Searching for local maxima...Second _XYZ data:Second _imageSecond _source dataSecond directionSecond imageSecond nearest distanceSecond vectorSecondary data item has no primary dataSection %s ended at line %u but it has never started.Section %s ended at line %u instead of %s.Section %s started at line %u before %s ended.Section:Segment %uSegment by WatershedSegment using watershed SegmentationSegmented distanceSegmented randomSegments image using watershed with pre- and postprocessing.Seiko files (.xqb, .xqd, .xqt, .xqp)Select ColorSelect regions _manuallySelect the sample area belowSelected areaSelected lineSelected φSelected ϑSelectionSelection ManagerSemi-circleSensofar PLUx files (.plux)Sensofar PLu files (.plu, .apx)Sensolytics text files (.dat)Separated PhasesSet Curve ColorSet _ZeroSet _previewSet as DefaultSet mask to selectionSet plane to _zeroSet selected as:Set selected item as defaultSet the current view setup as the defaultSet to _Full RangeSet to _MaskedSet to _UnmaskedSettings file `%s' cannot be read: %s

To prevent loss of saved settings no attempt to update it will be made until it is repaired or removed.Several edge detection methods (Laplacian of Gaussian, Canny, and some experimental), creates presentation.Sh_ininess:Shade dataShadingShapeSharpenShift MaskShift maskShift mask with respect to the image.Shift maximum data value to zeroShift mean data value to zeroShift minimum data value to zeroShift value at some z plane to zeroShifted fieldShifted field differenceShifted to zero for z level = %dShifts values in z curves to be zero at defined position.Shimadzu filesShowShow _axesShow _frameShow _gridShow _labelsShow _selectionShow a 3D view for the volume dataShow differences with _adapted color mapShow false _colorbarShow file messagesShow full controlsShow lattice asShow only loadable filesShown part has zero range.Shown planes:Shown range (%.*f - %.*f) %sShows 3D representations of volume dataShrin_kShrink from _borderSi_zeSi_ze:Siemens starSigmaSigma fitted at Z level:SignalSigned 16bit wordSigned 32bit wordSigned 64bit wordSigned byteSilicon 7x7Similar structures averaging using autocorrelationSimple Calibration DataSimple Error MapSimple ParametersSimple SEM image simulation from topography.Simple SEM simulation from topographySimple XYZ data leveling.Simple arithmetic operations with data fields.Simple arithmetic operations with volume data.Simple error map based on grating measurementsSimple error mappingSimple supres operations with two data fields (or a data field and a scalar).Simulate PID effects on measurementSimulate stray field above current lineSimulate stray field above parallel magnetic mediumSimulate topography artifacts in lateral force channelsSimulating watershed...Simulation ParametersSimulation of current line magnetic fieldSimulation of magnetic field above perpendicular mediaSimulation of magnetic field z component change for another levelSimulation of parallel magnetic mediaSincSingle _merged abscissaSingle value evolutionSizeSize _A (dir. left)Size _B (dir. right)SkewSkewnessSlice Volume DataSlopeSlope DistributionSlope angle distributionSlope derivative distributionSlope distributionSlope mapSlopesSlowest decay directionSlowest decay lengthSmooth bent stepSmooth coneSmooth connectSmooth image in polar coordinatesSmooth pyramidSmooth pyramid (3-sided)Smooth slanted stepSmooths images in polar coordinates.Snap to planesSobel edge presentationSome data are unsaved:
%s
Really quit?Something is changing the data files on disk.SpatialSpe_cularSpecify _rangeSpecify _thresholdsSpecify result units explicitlySpecify simple calibration data.Specify un_itsSpecify un_its:SpectraSpectra data starts past the end of file.Spectral SynthesisSpectroscopySpectroscopy GraphSpectroscopy header is too short (only %lu bytes).Spectroscopy tool displays point spectroscopy data and extracts them to standalone graphs that can be subsequently analysed for instance with Graph → Fit FD Curve.SphereSpline pathSplit XYZ DataSplit XYZ data based on directionSplit detached data files are not supported.Split forwardSplit into low and high frequenciesSplit reverseSplits image into low and high frequency components.Spot removal tool, interpolates small parts of data (displayed on a zoomed view) using selected algorithm.SquareSquare waveStack is not executableStage Error MapStage error mappingStarStart at _offsetStart from _lineStarting Starting _radiusStarting full estimation...Starting partial estimationStatistical FunctionsStatistical QuantitiesStatistical Quantities tool allows limiting the area of interest by a mask, rectangular selection or the intersection of both.Statistical function tool, calculates one-dimensional statistical functions (height distribution, correlations, PSDF, Minkowski functionals) of selected part of data.Statistical quantitiesStatistics tool.Step (one-sided)Step (two-sided)Step _broadeningStep _broadening:Step detectionStep detection _thresholdStep detection _threshold:Step height (negative)Step height (positive)StepsStereolitography STL (.stl)StitchStitch images using offsetsStitch multiple images based on offsets of origins.Straighten PathStraighten along a pathStraightenedStray Field Plane ShiftStray commaStray field consistency checkStray symbol %dStretch color range to part of dataString value is not valid UTF-8Stripe %u: Stripe _currentStripesStrongStructureStructuring elementSu_perscriptSubtract a rectangle from the FFT maskSubtract an ellipse from the FFT maskSubtract mean _value beforehandSubtract selection from maskSubtracts background using a rank-based algorithm.Subtracts polynomial background.Summarize Volume PlanesSummarize Volume ProfilesSummarize planesSummarize profilesSummarizes profiles of volume data to a channel.Summarizes volume data planes to a graph.Sun raster image (.ras)Super resolution of multiple images of same objectSuppressSupresSurf files (.sur)SurfaceSurface ProfilesSurface ReconstructionSurface areaSurface dilation by defined tipSurface reconstructionSurface reconstruction by defined tipSurface slopeSurfstand SDF files, binary (.sdf)Surfstand SDF files, text (.sdf)SurveySurvey cannot be run with independent degrees.Swap Volume AxesSwap X and Y axesSwap axesSwaps axes of volume data.Swaps phase in continuous data based on user's selectionSymbolSymmetricSymmetrize _AllSymmetryT2 measurement mode is not implemented.TABTAB characterTARGA (.tga,.targa)TF heightTF normTF widthTIFF (.tiff,.tif)TIFF and BigTIFF images with high depth (.tiff)TIFF directory %lu ended unexpectedly.TIFF directory %u is assigned to multiple conflicting ZTC coordinates.T_hresholdT_oggle lightTag %u size is %u bytes, which is not enough to hold the tag marker and size.Tag %u size is %u bytes, which is not enough to hold the tag marker.Tag %u size is %u which is not sufficient to hold its content.Tag entry type is neither group nor data.Tag marker is missing on an unknown tag %u.Tag type does not start with marker ‘%s’.Take result units from data d%dTarget _graphTarget _graph:Tear scan linesTentsTerrace ListTerrace discrepancyTerraces (ideal)Tescan TIF SEM image (.tif)Tescan two-part SEM image (.hdr + .png)TetrahedronsTextText data contain fewer values (%u) than corresponds to the sizes (%u).TextureTexture aspect ratioTexture directionTexture direction indexThatchesThe Bearing Ratio CurveThe OME TIFF header specifies more TIFF directories than there are in the file.The file already exists in `%s'.  Replacing it will overwrite its contents.The first line contains too many items.The name `%s' is invalid.The number of bits per sample %d is invalid or unsupported for this file type.The number of data file values %d
differs from the number of planes %d.The parameter file cannot be loaded.The type of data is unknown.  Please report it to the developers.The value of parameter `%s' is invalid or unsupported.There are no grains to filter.There is no path selection.Thermicroscopes SpmLab filesThermo Fisher SPC filesThin linesThin maskThis tool requires layer of type %s to work, which does not seem to be installed.  Please check your installation.This version of Gwyddion was built without OpenGL support.Three Component ModelThree Point LevelThree-point level tool, levels data by subtracting a plane fitted through three selected points.ThresholdThreshold byTie sizes to _data pixelsTilesTiltTilt by specified amountTilts image by specified amount.TimeTime series order is wrong.Time values must be of type DOUBLE.Tip Area FunctionTip DilationTip _anisotropyTip _apex radiusTip _magnetizationTip _rotationTip _slopeTip certainty mapTip operations: dilation (convolution), erosion (reconstruction) and certainty map.Tip radius evolutionTitleTo export the image of a channel to a pixmap graphic format (PNG, TIFF, JPEG, ...) just save it as this format with File → Save As.To:Toggle logarithmic x axisToggle logarithmic y axisToo many DataList items for given matrix dimensions.Too short document info.Too short parameter info.Too small grains can be filtered out with Data Process → Grains → Filter.ToolToolbox EditorToolbox GroupToolbox ItemToolsTop-level element is not ‘%s’.TopographyTopography and FlexgridTopography and SPSTopography and SPS (scripted)Total grain volume (Laplace)Total grain volume (minimum)Total grain volume (zero)Total number of points:Total projected area (abs.)Total projected area (rel.)Total projected boundary lengthTrailing garbageTrain a neural network for image processingTrainingTraining classifier...Training errorTraining ste_ps:Training was canceled.Training...Trains logistic regression to mark grains.Trans_latable titleTransfer Function SizeTransfer functionTransfer function estimationTransfer function estimation by fitting explicit function form.Transform graph axes to logarithmic scaleTransforms surfaces to have prescribed statistical properties.TranslatorsTriangleTriangle downTriangle leftTriangle rightTriangle upTriangularTriangulating...TriangulationTriangulation typeTrim HighestTrim LowestTrim _lowestTrim hi_ghestTrimmed MeanTrimmed meanTrimmed mean filtering and leveling.Trimmed mean leveling and filterTrimmed mean of differencesTruncated header line.Turing patternTwo Gaussians (PSDF)Two-dimensional CWT (Continuous Wavelet Transform).Two-dimensional DWT (Discrete Wavelet Transform).Two-dimensional FFT (Fast Fourier Transform) transformed to coordinates (log-frequency, angle).Two-dimensional FFT (Fast Fourier Transform).Two-dimensional FFT filteringTwo-sidedTypeUncertainty _zUndoUndo last actionUndo the last change to the filter maskUnexpected data item typeUnexpected image block.UnionUnique id record is too short.Unisoku files (.hdr + .dat)Unit code %d is invalid or unsupported.UnitsUniversalUnknown XYZ %dUnknown channel %dUnknown data type `%s'.Unknown errorUnknown file type header: `%s'.Unknown format version %c.Unknown instrument number %u.Unknown line %dUnknown variable type %u.Unknown volume %dUnmarkedUnresolved identifiersUnsigned 16bit wordUnsigned 32bit wordUnsigned 64bit wordUnsigned byteUnsupported sample formatUntitledUpUpdate X and Y of _all compatible dataUpperUpper thresholdUpper threshold:Use _boundariesUse _display rangeUse _dot as decimal separatorUse _first mask for all imagesUse _icon from:Use _maskUse entire image (ignore mask)Use local plane _fittingUsed calibration data:UserUser definedUser-specifiedVSymVTK structured gridVTK structured grid (.vtk)ValueValue (max)Value ScaleValue distributionValue rangeValue series values must be of type FLOAT.Value shi_ftValue units:ValuesValues should be height (meters).
The following results do not make much sense.Variable `%s' refers to invalid or nonexistent data.VariationVersionVerticalVertical Prewitt gradient presentationVertical Sobel gradient presentationVertical positionVertical profile %dVertical sizeViewView _Log...View:Visualizes entropy calculation for value and slope distribution.Visualizes, marks and measures facet orientation.VolumeVolume DataVolume TFVolume X graphsVolume Y graphsVolume Z CalibrationVolume Z graphsVolume dataVolumize layersWITec ASCII files (.dat)WITec files (.wit)WItec Project files (.wip)WSF ASCII files (.wsf)WSxM curve files (.cur)WSxM files (.tom, .top, .stp)Warning: Colorful images cannot be reliably mapped to meaningful values.Wavefront geometry definition (.obj)WavesWavinessWaviness averageWaviness maximum heightWeakWebP (.webp)WelchWhen Gwyddion is run with a directory argument it opens a file open dialog showing this directory.WhiteWi_dthWidthWidth:Wiener filterWin32 protocol
WinSTM files (.stm)Window _width:Window h_eight:Windows or OS2 Bitmap (.bmp)Wireframe thresholdWith pixel midpointsWrap ValueWraps periodic values to a different range.Wrong data item idWrong imaging header size: %u instead of %u.Wrong size of Base64 encoded data.Wyko ASCII export files (.asc)Wyko OPD files (.opd)XX CoefficientsX Pixmap (.xpm)X _period:X _unitsX correctionX differenceX directionX driftX drift:X error %dX graph at y: %d z: %dX positionX position:X range:          %.*f to %.*f %s
X slice at %.*f%s%s (#%d)X span: (%.*f - %.*f) %sX tangentX uncertaintyX uncertainty %dX viewX, reversedX-axisX-componentX-rangeX/Y ratio thresholdX11 protocol
XML footer overlaps with data.XML parsing failed: %sXY DenoisingXY points form a regular grid so interpolation is not necessary.XYZXYZ ChannelsXYZ DataXYZ dataXYZ data files (.xyz)XYZ data regularization failed due to numerical instability or was interrupted.XYZ data split based on direction.XYZ data:XYZ text data (.xyz)YY CoefficientsY correctionY differenceY directionY driftY drift:Y error %dY graph at x: %d z: %dY p_eriod:Y positionY position:Y slice at %.*f%s%s (#%d)Y span: (%.*f - %.*f) %sY tangentY uncertaintyY uncertainty %dY viewY, reversedY-axisY-componentY-rangeYesYou can make a specific 3D view setup the default using the Set as Default button.Your favorite GL material can be set as default in the material editor: Edit → GL Materials.  The default material is shown in bold face.Your favorite false color gradient can be set as default in the gradient editor: Edit → Color Gradients.  The default gradient is shown in bold face.ZZ _rangeZ axis calibration will be lost.Z axis valueZ correctionZ driftZ drift:Z error %dZ fit _type:Z graph at x: %d y: %dZ levels: %d, Z unit: %sZ position:Z scaleZ shi_ftZ slice at %.*f%s%s (#%d)Z span: (%.*f - %.*f) %sZ uncertaintyZ uncertainty %dZ viewZ, reversedZ-axis calibrations differZ-calibration action:Z-calibration curveZ-rangeZTC coordinates (%u,%u,%u) fall outside the given ranges.Zemax grid sag data (.dat)ZeroZero Crossing Step DetectionZero Mean ValueZero basis volumeZero crossing edge detection.Zero crossing step detection presentationZoomZoom 1:1Zoom _1:1Zoom inZoom in by mouse selectionZoom outZoom out to full curveZoom:Zunc low bound %dZunc up bound %d_ACF_Abscissa_Activation_Add mask_Adhesion force_All curves_Alter only boundaries_Ambient_Amount_Amplitude_Angle_Apply to all compatible images_Aspect ratio_Aspect ratio:_Auto_Autocrop_Automatic Z-scale_Automatically offer raw data import of unknown files_Average coincident points_Average iterations_Average spectra_Averaging radius_Avoid stacking_Background color:_Background type_Barrier level_Base amplitude_Base amplitude:_Base frequency_Base frequency:_Base plane:_Bias_Binary data_Bold_Border_Border width:_Border:_Both_Both directions_Boundary treatment_Calibration data_Change Preview_Circle size_Clear_Close_Contact modulus_Copy_Curvature_Curve_Data_Data Process_Data to attach_Decay_Decimal separator is comma_Deformation_Delete_Density Map_Derivative_Detail image_Detail to search_Different lengths_Diffuse_Dimension units:_Direction_Display:_Distance type_Distribute_Distribution_Divisor:_Document History..._Down_Downsample detail_Draw whole circle_Drawing Tools_Drop size_Edge shift_Edge width_Edit_End marker length:_Estimate sigma for each level_Estimate size for each level_Exchange constant_Exclude linear skew_Execute_Expanded to complete data_Export_Export raw data_Expression_Expression:_Exterior type_Exterior type:_Extract image_Extract to a graph_FFT mask editor_False color ruler_Feature sign_Field delimiter_File_Fill_Film thickness_Filter type_Filter:_Fit Sigma_Fixed filler value_Fixed resolution_Fixed units:_Flux_Font size:_Font:_Frame thickness:_Function type_Gap size_Gap thickness_Gap:_Gaussian FWHM_Gaussian blur_Gradient_Graph_Graph curve:_Graph:_Gravity:_Grow_Guess_Guess parameters_Hard threshold_Height_Height relaxation_Height:_Hessian_Hidden nodes:_Hide masked_Horizontal direction_Horizontal polynomial degree_Horizontal shift_Horizontal size_Horizontal size:_Horizontally:_Hue offset_Hurst exponent_Id:_Ideal response_Ideal response:_Image preview_Inclination (θ) graph_Independent heights_Info_Inhibitor strength_Initial temperature_Inset scale bar_Instant apply_Instant updates_Integral_Integration radius_Integration steps_Interpolation method_Interpolation type_Interpolation type:_Intersect masks_Inverse transform_Invert_Invert Mapping_Invert height_Invert second curve_Italic_L-curve display_Label:_Laplacian_Lateral_Lateral scale_Lateral units_Lattice_Lattice type:_Left_Length_Length threshold:_Length:_Light φ:_Lighting_Like Current Image_Line and text color:_Line type:_LoG convolved_Load applied_Locate_Logarithmic value scale_Lower_Magnetic charge_Mark_Mask_Mask color_Mask color:_Mask empty regions_Mask preview_Masking_Match pixel size_Material:_Max iterations:_Max. iterations:_Maximum polynomial degree_Maximum polynomial degree:_Mean value_Melting_Merge with_Method_Method:_Minimum_Minimum radius_Mix_Mode_Mode:_Model:_Monte Carlo time step_More..._Multiple images_Neighbors used:_New_New Group_New Item_Next_Next Tip_Noise type_Normal force_Normalize_Number lines_Number of Gaussians_Number of clusters:_Number of iterations_Number of sides_Number of steps_Number of values_Number of waves_Number points_Orthographic projection_Other delimiter_Output plane height_Overlay_Overlay - no light_PSDF_Parabolicity_Pattern_Percentile_Physical 1:1_Physically Square_Pixel radius_Plane size_Plot Inits_Plot graph_Plot mask_Point size:_Points_Polynomial degree_Polynomial degree:_Position_Precision_Precision:_Preserve RMS_Prevent grain merging by growing_Preview stripe_Previous Tip_Probe type_Proportional_Quality_Quality factor_Quality factor:_Quantity_Quantity:_RMS_Radius_Recalculate Image_Refine_Regularization parameter_Relax steps_Relax steps:_Remanent magnetization_Remove_Remove outliers_Rename_Render_Replace the current image_Reset_Reset Tip_Resolution_Result_Reverse bits in bytes_Reversed layout_Right_Rulers_Same as original_Same degrees_Same resolution_Sample size_Save image_Scale_Scale proportionally to input_Scale:_Scaling:_Scan line_Search range_Second filter_Separate curves_Separate profiles_Separate spectra_Separate uncertainty_Separation_Set selection_Shape_Shapes_Show mask_Show profile_Show tips at startup_Sigma_Sigma:_Signal:_Single image_Size:_Skew_Slackness_Slope_Slope width_Snap to control points_Snap to origin_Sobel derivatives_Soft threshold_Spatial frequency_Split to stripes_Spring constant_Spring constant:_Square bin_Start from the current image_Stationarity scale_Step detection kernel_Step detection kernel:_Sticking_Stripe width_Subscript_Subtract mask_Suggest_Sum instead of averaging_Suppress type_Surface mobility:_Take Dimensions from Current Image_Take absolute value_Temperature_Template_Text data_Text:_Thickness_Threshold_Tick length:_Time threshold:_Tip morphology_Tip radius_Title_Title:_Tolerance_Tolerance:_Top fraction_Train logistic regression_Transform to tiles_Transform type_Transformed_Transparent_Transparent background_Trim empty borders_Trim fraction_Trim symmetrically_Truncate_Two-dimensional distribution_Type_Type:_Undo_Uniaxial anisotropy_Unset Color Gradient_Up_Update_Update Preview_Upper_Upsample large image_Use trained regression_Value scale:_Value units_Value units:_Vectors_Vertical alignment:_Vertical direction_Vertical gap:_Vertical polynomial degree_Vertical shift_Vertical size_Vertical size:_Vertically:_Volume Data_Wave form_Wavelet type_Weight_Width_Width:_Windowing type_Windowing type:_Within line_X center_X correction factor_X correction factor:_X data_X displacement_X drift:_X from:_X label_X offset_X offset:_X pixel size_X pixel size uncertainty_X resolution_X to:_X uncertainty:_X-range:_X:_XYZ Data_Y center_Y correction factor_Y correction factor:_Y data_Y displacement_Y drift:_Y from:_Y label_Y offset_Y offset:_Y pixel size_Y pixel size uncertainty_Y resolution_Y to:_Y uncertainty:_Y-range:_Y:_Z correction factor_Z correction factor:_Z data_Z from:_Z level:_Z offset:_Z range_Z resolution_Z shift by_Z to:_Z uncertainty:_Z value:_Z-scale (per sample unit)_Z:_Zoom graph around estimate_Zoom:_automatic_default_fitadjective|Basicadverb|Leftadverb|Rightangleas databitsbottomboundary-handling|Nonebyte at position %dbytescalib-data|Nonecalibrationscenterchannel|Nonecolor gradientscorrelation|Normalcountcurrent-language-code|endata offsetdata rangesdata type parametersdata-adjustment|Nonedegdistance|Chessdistance|City-blockdistance|Euclideandistance|Octagonaldistance|Octagonal 4,8distance|Octagonal 8,4distribution|Exponentialdistribution|Gaussiandistribution|Powerdistribution|Skew-normaldistribution|Triangulardistribution|Uniformdrifte_stimateerroresti_mateexterior|Borderexterior|Emptyexterior|Filledexterior|Laplaceexterior|Mirrorexterior|Periodicfieldsfilter|Closingfilter|Gaussianfilter|Openingformat flagsformat versiongrain quantitiesimage depthlattice|Cairolattice|Cubiclattice|Hexagonallattice|Monocliniclattice|Orthorhombiclattice|Penrose (centers)lattice|Penrose (vertices)lattice|Randomlattice|Rhomohedrallattice|Snub squarelattice|Squarelattice|Tetragonallattice|Triangularlattice|Tricliniclattice|Truncated squareleftlengthlevelling|_Nonelibpng error occurredlibpng initialization error (in %s)line-leveling|Noneline-style|Dashline-style|Solidlinematch|Matchinglinematch|Polynomialmagic page headermaximummerge-mode|Joinmerge-mode|Noneminimumno brick %d exists for %sno channel %d exists for %sno graph %d exists for %sno spectra %d exists for %sno surface %d exists for %snot available
one object found%d objects foundp_lotparameters|Hybridplaceholderpointspxpx<sup>-1</sup>px<sup>2</sup>range|toref_count is %d for %sremaining toolsresolutionrightrowsruler|_Noneseed|_Newstock itemssymmetry|Evensymmetry|Nonesymmetry|Oddsymmetry|Squaretan β<sub>0</sub>title|Noneto _all filesto initstopvdW: conevdW: cylindervdW: offset spherevdW: paraboloidvdW: pyramidevdW: semispherevdW: spherevdW: truncated pyramidvdW: two spheresverb|Changeverb|Hideverb|Saveverb|Scaleverb|Setverb|_Estimateverb|_Fitverb|_Loadverb|_Quick Fitverb|_Storeverb|_Trainwindowing|Nonex scale parametersx-axis drifty scale parametersy-axis driftz levelz scale parametersz-axis driftzlib initialization failed with error %d, cannot decompress data.α:θθ = %.2f deg, φ = %.2f degθ:πφφ:χ<sup>2</sup> result:ϑ…Project-Id-Version: Gwyddion
Report-Msgid-Bugs-To: yeti@gwyddion.net
PO-Revision-Date: 2021-06-11 15:48+0200
Last-Translator: 
Language-Team: https://github.com/iobataya/gwyddion-ja-translation
Language: ja
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Generator: Poedit 2.4.2
 is free software released under GNU GPL.%.*fに%.*fキャリブレーションデータ%d%d粒子が堆積されました%sの代わりに%s%s is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. For full license text see file COPYING included in the source tarball.%s: データは正方形である必要があります。%s:グラフはI-V分光法である必要があります。%s: 横寸法と値は、同じ現物数量である必要があります。%{from}v から %{to}v%{n}%{ntotal}のi%{w}i × %{h}i at (%{x}i, %{y}i)%{w}v × %{h}v at (%{x}v, %{y}v)(%{x1}i, %{y1}i) to (%{x2}i, %{y2}i)(%{x1}v, %{y1}v) to (%{x2}v, %{y2}v)(固定)/3Dビュー…/ドリフト分析…/キャリブレーション/3Dキャリブレーション/ステージマッピングから…/キャリブレーション/データに適用…/キャリブレーション/作成…/キャリブレーション/シンプルなエラーマップ…/キャリブレーション/テキストファイルから読み込む…/カラーグラーデーション…/カットとスライス…/既定のマスク色…/テキストエクスポート…/抽出プレビュー/固定値をゼロに/GL材質.../複数のデータ処理/ニューラルネットワークを適用…/複数のデータ処理/相関探索…/複数のデータ処理/交差部分を切り取り…/複数のデータ処理/ニューラルネットワークの訓練…/複数のデータ処理/数値計算…/複数のデータ処理/分類…/複数のデータ処理/コンボリューション…/複数のデータ処理/相互相関…/複数のデータ処理/デコンボリューション…/複数のデータ処理/詳細画像のはめ込み…/複数のデータ処理/結合…/複数のデータ処理/複数チャンネルのプロファイル…/複数のデータ処理/スティッチング…/複数のデータ処理/超解像…/複数のデータ処理/XYノイズ除去…/特徴抽出/面分析…/特徴抽出/面の解析…/特徴抽出/曲率…/特徴抽出/形状フィッティング…/特徴抽出/格子…/特徴抽出/テラス…/モジュールブラウザー/最近のファイルを開く/平面レベリング…/プログラムメッセージ/Pygwyコンソール/すべてのログを削除/SPMモード/フォースインデンテーション/インプリント分析…/SPMモード/フォースインデンテーション/領域関数…/SPMモード/フォースインデンテーション/Hertzコンタクトモデル…/SPMモード/フォースインデンテーション/水平力…/SPMモード/フォースインデンテーション/PIDシミュレーション…/SPMモード/磁気力/Parallel Media Field…/SPMモード/磁気力/Current Line Field…/SPMモード/磁気力/Estimate Shift in Z…/SPMモード/磁気力/Field Shift in Z…/SPMモード/磁気力/Perpendicular Media Field…/SPMモード/磁気力/力の勾配に再計算…/SPMモード/ティップ/ブラインド推定…/SPMモード/ティップ/確実性マップ…/SPMモード/ティップ/拡張…/SPMモード/ティップ/ティップのモデル…/SPMモード/ティップ/表面の再構成…/値をゼロにシフト…/軸の入れ替え…/合成・生成/Coupled PDEs…/合成・生成/円板…/合成・生成/位相…/合成・生成/アニーリング…/合成・生成/ブラウン運動…/合成・生成/堆積/弾道…/合成・生成/堆積/柱状…/合成・生成/堆積/拡散…/合成・生成/堆積/繊維状…/合成・生成/堆積/オブジェクト.../合成・生成/堆積/粒子…/合成・生成/堆積/積み上げ.../合成・生成/堆積/ロッド…/合成・生成/ドメイン…/合成・生成/格子…/合成・生成/ラインノイズ…/合成・生成/ノイズ…/合成・生成/パターン…/合成・生成/スペクトル…/合成・生成/波形…/名前をつけて保存…/データブラウザーを表示/分割…/平面要約…/プロファイルの要約…/平均値をゼロに/Gwyddionについて/位相の調整.../数値計算…/基本操作/拡張…/基本操作/斜めフリップ/基本操作/両方フリップ/基本操作/水平フリップ/基本操作/垂直フリップ/基本操作/範囲…/基本操作/時計回りに回転/基本操作/反時計回りに回転/基本操作/角度を指定して回転…/基本操作/正方形にする/基本操作/3Dデータへ/基本操作/レイヤーを3Dデータへ…/基本操作/3チャンネルからXYZ作成…/基本操作/ビニング…/基本操作/次元と単位…/基本操作/値反転/基本操作/オフセットをリセット/基本操作/リサンプリング…/基本操作/スケール…/基本操作/傾き…/基本操作/値のラップ…/閉じる/データ補正/1D FFTフィルタリング…/データ補正/スカー(傷跡)をマーク…/データ補正/反転ラインをマーク/データ補正/非接続部分のマスク…/データ補正/はずれ値のマスク/データ補正/スカーの削除/データ補正/ステップライン補正/データ補正/2D FFT フィルタリング…/データ補正/ラインレベリング…/データ補正/相関平均化…/データ補正/フラクタル補正/データ補正/平均的なライン形状…/データ補正/Interpolate Data Under Mask/データ補正/自動回転補正…/データ補正/Zero Data Under Mask/次元と単位…/歪み/Coerce…/歪み/ドリフトを補償する…/歪み/変位フィールド…/歪み/選択パスを抽出…/歪み/多項式…/歪み/パスを直線に…/歪み/アフィン変換…/歪み/遠近法…/歪み/放射状に平滑化…/フォースカーブ評価…/形状フィッティング…/粒子/ロジスティック回帰…/粒子/輪郭検出で粒子をマークする…/粒子/Watershedでマークする…/粒子/統計…/粒子/要約…/粒子/内接四角形を選択/粒子/粒子の外接四角形/粒子/外接円を選択/粒子/内接円を選択/粒子/相関…/粒子/分布…/粒子/フィルタリング…/粒子/レベリング粒子./粒子/Otsuでマーク/粒子/分割してマークする…/粒子/しきい値でマーク…/粒子/端にあるもの削除/積分変換/2D CWT…/積分変換/2D DWT…/積分変換/2D FFT…/積分変換/コンボリューションフィルタ…/積分変換/DWT異方性…/積分変換/局所傾斜/積分変換/Hough…/積分変換/ランクフィルタ…/反転値/等値画像…/k平均法…/k中央値法…/ショートカット/レベリング/固定値をゼロに/レベリング/平面化(フラットニング)/レベリング/回転レベリングz/レベリング/平面レベリング/レベリング/円の転がり…/レベリング/球の回転…/レベリング/最大値をゼロに/レベリング/平均値をゼロに/レベリング/多平面レベリング/レベリング/周波数でスプリット…/レベリング/中央値…/レベリング/多項式…/レベリング/トリム平均値.../ログ有効/磁気力データを力勾配へ…/マスク/ユークリッド距離変換…/マスク/他のチェンネルでマーク…/マスク/形状操作…/マスク/細くする/マスク/分配…/マスク/マスクを抽出/マスク/マスクを反転/マスク/ノイズ追加…/マスク/マスクを削除/マスク/移動…/結合…/複数のデータ/相関…/開く…/プラグイン/画像処理ツール/画像処理データの抽出/画像処理ツール/局所部分のコントラスト…/画像処理ツール/画像処理データを追加/画像処理ツール/輪郭検出/局所非線形性/画像処理ツール/輪郭検出/RMS 輪郭/画像処理ツール/輪郭検出/キャニー/画像処理ツール/輪郭検出/ガウスステップ…/画像処理ツール/輪郭検出/Harrisコーナー/画像処理ツール/輪郭検出/Houghライン/画像処理ツール/輪郭検出/勾配検出/画像処理ツール/輪郭検出/ガウスのラプラシアン法(LoG)/画像処理ツール/輪郭検出/Prewitt/画像処理ツール/輪郭検出/RMS/画像処理ツール/輪郭検出/Sobel/画像処理ツール/輪郭検出/ステップ/画像処理ツール/輪郭検出/ゼロ交差…/画像処理ツール/勾配/Azimuth/画像処理ツール/勾配/Prewitt (水平)/画像処理ツール/勾配/Prewitt(垂直)/画像処理ツール/勾配/Sobel(水平)/画像処理ツール/勾配/Sobel(垂直)/画像処理ツール/対数スケール/画像処理ツール/ランク…/画像処理ツール/画像処理データの削除/画像処理ツール/SEM画像…/画像処理ツール/陰影をつける…/終了/ラスタライズ…/繰り返し/保存/統計処理/2D自動相関…/統計処理/2D PSDF…/統計処理/角度分布…/統計処理/伝達関数フィッティング…/統計処理/エントロピー…/統計処理/フラクタル次元…/統計処理/Log-Phi PSDF…/統計処理/勾配分布…/統計処理/伝達関数推定…/_Stray Field Consistency.../今日のヒント/ツールボックス…/伝達関数推定…/取り消し/ユーザーガイド/XY平面レベリング/XY平面の外れ値/Zキャリブレーション…110180度1D FFT フィルターデータ1D FFTフィルタリング1D FFT フィルタ22D ACF2D CWT2D DWT2D DWT異方性X/Y成分比に基づく2D DWT異方性検出。2D FFT2D FFT フィルタリング2D PSDF2D ACF2次多項式2π360°3Dキャリブレーション3Dキャリブレーションと不確実性3Dキャリブレーション/不確実性3D ビュー変換モードは、R (回転)、S (スケール)、V (値スケール)、L(光源)のキーで選択できます。<b>ラベルText</b><b>オプション</b><b>解析に失敗しました</b>
' ' の内容 %s が形式と一致しません %s : 。<big><b>レイヤーモジュールがありません。</b></big>=====フィッティング結果=====>>> 上のスクリプトを実行しています
フィールド ディメンションが小さすぎて、選択したウィンドウ サイズに対して小さすぎます。適用されたデータ処理操作のレコードは、チャネルまたはボリュームデータの右クリックメニューの[ログの表示]を使用して参照できます。シンプルなPIDシミュレータA.P.E. Research DAX Files (.dax) and APDT File (.apdt)ACFACF %.0f°ACFセクションACF がゼロに減衰ACF ズーム:ADFAFM Workshopのスペクトラム ファイル (.csv)AFM data from NASA Phoenix mission (.dat, .lbl + .tab)AIST-NT ファイル (.aist)APE ファイル (.dat)ASCII データ行列 (.txt)ASCII グラフ曲線ファイルASCII グラフのインポートは、対話形式で実行する必要があります。ASFクロージングASFオープニングATC SPMxFormat data (.spm)AUX in 10AUX in 3 (SUM)AUX in 4 (反りシグナル)AUX in 5 (PicoPlus Aux BNC)AUX in 6 (Surface Potential)AUX in 7AUX in 8AUX in 9AUX in BNCシンボルの追加すべてのラベルを同じにするアスペクト比分散:Aarhus MUL files (.mul)%s について横軸横軸X絶対値差Accurex II テキスト ファイル (.txt)アクション適応非線形カラーマッピング曲率を追加勾配を追加コメントヘッダーに情報追加低いスコアにマスクを追加FFT マスクに長方形を追加するFFT マスクに楕円を追加するマスクにノイズを追加するマスクに選択範囲を追加するマスクにごま塩ノイズを追加します。ボリュームデータのフェーズを調整アフィン補正各行スキップ後各サンプルスキップ後Alicona Imaging AL3D files (.al3d)スキャンライン揃え[行の整列] では、マスクがデータに存在する場合にマスク領域を使用/除外できます。カーブを整列種々の方法によるラインレベリングスキャン ラインを X 軸に合わせるグラフを整列。さまざまな方法でスキャンラインをレベリングします。グラフの右クリックメニューでは、すべてのグラフ機能も使用できます。すべてのチャンネルすべてのデータフィールドからボリュームを作成するには、すべてのデータフィールドの解像度が同じである必要があります。すべてのプロファイル線に沿って右端に沿ってアルファ値Ambios 1D profilometry data files (.dat)Ambios 1D profilometry data files (.xml)Ambios amb files (.amb)Amphitheater振幅振幅 (V)振幅 (m)振幅分布関数SPMデータの視覚化と分析ツール。Analysis Studio XML (.axz, .axd)分析XYZドリフトの解析ドリフトの分析および/または削除XYZデータのドリフトを分析します。Anfatec files (.par + .int)角度角度分布角度分布角度角傾斜分布角度スペクトルアニール別のマスク任意の空白追加Apple icon (.icns)水平面に多項式歪みを適用水平面に多項式歪みを適用.適用Gaussian幅ニューラルネットワークの適用オープニングフィルターの適用パースペクティブの適用エリア半高さを上回る面積凸包の面積エリアスケールグラフ曲線下の領域数学データに対する算術演算ボリューム・データに対する算術演算配列 '%s' は、存在しないにもかかわらず、ゼロ以外の数の要素を持ちます。別のデータとしてアスペクト比アスペクト比Assing AFM ファイル (.afm)アスタリスクAsylum Research Ergo HDF5 files (.h5)非対称一番上画像処理データの添付別のデータフィールドを画像処理データとして追加するファイルから付与ボリュームデータのZ軸キャリブレーションを付与、抽出、削除します。Attocube ASCII files (.asc)投稿者投稿者:自己相関関数自己相関の長さ高さにOtsuの方法を使用した自動しきい値。拡張子による自動検出自動色範囲(末尾カット)自動面方向に基づくレベリング。面が上を指すようにレベリングします。未認識のファイルを未加工データとして自動インポートする場合は、[RAW ファイルのインポート]ダイアログで有効/無効にできます。水平面の回転を自動的に修正する自動的検出平面の回転によってデータを自動的に平準化する平均平均絶対傾斜角平均最大高さ粗さの平均最大高さ粗さの平均最大ピーク高さ粗さの平均最大谷深さ3番目に低い谷と3番目に高い谷ピークの平均高さ平均値プロファイルの平均波長平均類似構造の平均化類似構造の平均化軸はイメージの外側にあります。変換する軸軸のプロパティ軸の表示情報が短すぎます。BCR files (.bcr, .bcrf)BRCBスプライン背景Bad zip fileBall on stick弾道堆積バーバー長 zバー幅 xバー幅 yバー基本的なフィルタ:平均、中央値、ノイズ除去、…反転、値反転、回転などの基本的な操作を 90 度の倍数で行います。マスクによる基本的な操作:反転、除去、抽出。画像処理との基本的な操作:抽出、除去。Benyuan CSM files (.csm)高さと角度の分布のほかに、統計関数ツールは相関関数、パワースペクトル密度(PSDF)およびその他の関数を計算します。最良の見積もりBigTIFF データ型%uは、従来の TIFF で見つかりました。BigTIFF 予約フィールドは、8 と 0 ではなく%uされ、%uされます。Bilateral最小値Binの次元バイナリビン分割されたデータビニング黒Blackmann空白行で区切られた行列ブレンド深さブラインド推定Villarubiaのアルゴリズムを用いたSPMティップのブラインド推定。ブラインドティップ推定Block not a document block.青ボルツマン曲げステップ境界線距離ボーダーランダムボーダーどちらも境界直方体メッシュを構築…Building stray field dependence...ワイヤフレームモデルの構築…組み込みBurleigh 2.1 files (.img)Burleigh Image Studio files (.bii)Burleigh exported data (.txt, .bin)行別 (同一)バイトスワップパターンFITS ファイルの読み取り中に CFITSIO エラー: %s。CRC エラーCSVCWT閉じたカーブ積算有効なデータだけが含まれるようにカットオフCairoでエラーが発生しました: %s画像の保存中にCairoからエラーが発生しました1D統計関数の計算2D自己相関関数の計算2D パワースペクトル密度の計算I-Vトンネル電流スペクトルからDOS spectrumを計算ボリュームデータ上のk平均法クラスタリングボリューム データの k中央値法でクラスタリング差を計算角勾配分布の計算排除ピクセルの差を計算値分布と傾斜分布のエントロピーを計算するフラクタル寸法の計算良い平均的なライン形状を計算するグラフ曲線の統計情報を計算全体の曲率を計算する粗さパラメータの計算行/列統計関数の計算表面プロファイル パラメータを計算します。ティップ領域関数を計算2 次元角度分布の計算不確実性の計算計算ボリューム データの K-平均法によるクラスタリングを計算します。ボリューム データの k中央値のクラスタリングを計算します。2 次元自己相関関数を計算して分析します。2 つのデータ フィールドの相互相関を計算します。フラクタル寸法を計算するには、いくつかの方法(分割、ボックスカウント、三角測量、電力スペクトル)を使用します。1つまたは複数の画像で繰り返される同じ形状から良い平均的なライン形状を計算します。グラフや画像の勾配を1Dあるいは2Dで計算したり、角度分布をグラフにします。1 次元統計関数 (高さ分布、相関、PSDF) を計算します。全体の曲率を計算します。グラフ曲線の単純な統計情報。ティップ領域関数を計算します。ボリューム PSF を計算します。すべての方向への勾配の投影である角度の 2 次元分布を計算します。2 次元のパワースペクトル密度関数を計算し、その線形プロファイルを抽出します。伝達関数の計算中…キャリブレーション'%s'はすでに存在しますキャリブレーション データ ファイルには、次の値が必要です。
正確に 1 列。ファイルからのキャリブレーションキャリブレーション名:一時ファイルを作成できません: %s。ユーザー構成ディレクトリ%s作成できません: %sユーザー モジュール ディレクトリ %sを作成できません: %sユーザー UI ディレクトリ %sを作成できません: %sBzip2 でエンコードされたデータを解凍できません。 Bzip2 サポートは組み込まれていませんでした。圧縮データを解凍できません。 Zlib サポートは組み込まれていませんでした。Gzipエンコードされたデータを解凍できません。 Zlib サポートは組み込まれていませんでした。ヘルプを表示できません。プラグイン '%s' を実行できません: %s。Fdopen() できません。既にファイルが開かれています: %s。データの読み込み方法を次の形式で理解できません: %s。高さチャネルが見つかりません。イメージ ヘッダー ブロックが見つかりません。%sにオブジェクト %sが見つかりません。ピエゾヘッダーブロックが見つかりません。対応するパラメータ ファイルが見つかりません。Cannot get pixbuf loader: %s.データ ファイルを読み込めません: %sイメージを読み込めません: %s圧縮されていないファイル サイズを取得できません。読み取り用のファイルを開くことができません: %s。書き込み用のファイルを開くことができません: %s。AFM HEADER_TABLE値を解析できません。'スキャンサイズ' フィールドを解析できません。%dの%d後にデータ値を解析できません。プレビューできませんチャンネルラベルを読み取れません。ファイルの内容を読み取れません。ファイルの内容を読み取れません: %sファイルから読み取れません: %s。一時ファイルを読み取れません: %s。プリセットを保存できません: %s軸の階層を理解できません。ファイルに書き込めません: %s。キャニーエッジ検出画像処理カンチレバー角度Carl Zeiss CLSM images (.lsm)Carl Zeiss SEM scans (.tif)大小文字を区別中心値中心 x 位置中央 y 位置確実性マップ分析確実性マップ…既定のマスクの色を変更するマスクの色を変更する単位の変更ボリュームデータプレビューの変更連続データ内の位相の変更物理寸法、単位、または値のスケールを変更するチャネル情報が予期せず終了しました。チャネル:チャンネルチャネルとグラフの名前は、データ ブラウザで名前をダブルクリックすることで変更できます。すべてのファイルのチャンネルファイル内のチャネル文字配列はファイルに収まりません。Checks the stray field dependence consistency.カラーグラデーションの選択Choose GL Materialチャンクタイプ%u複数回発生しました。円形円 (下)円(上)分類データ・セットの分類複数のデータ フィールドを使用してデータ セットを分類する。クリアクリーンアップログを消去する選択したオブジェクトをクリアフィルタマスク全体をクリアする3D ビューをマウスの右ボタンでクリックすると、GL マテリアルまたは偽色グラデーション セレクターが表示されます。マウスの右ボタンで偽のカラースケールをクリックすると、誤ったカラーグラデーションセレクターが表示されます。ファイルを閉じるファイルリストを閉じる列相関づけ先被覆被覆:Code V interferogram files (.int)係数行列Coerce StatisticsCoerce value distribution to強制色:コロン:色カラーグラデーションカラーグラデーションエディタカラーグラデーション '%s'カラー範囲カラーレンジツールは、いくつかの偽色スケールのマッピングモードを提供し、それらのいずれかのモードをデフォルトモードにすることができます。カラーバー色柱状性既存のマスクと組み合わせる既存のマスクと組み合わせる:コンマ区切り値コマンドコメントは NUL で終了しません。コメントにCRLF の終了コードがありません。ドリフトを補正Component fraction圧縮データ内の圧縮データが見つかりました。圧縮は、デタッチされたファイルに対してのみサポートされます。圧縮タイプ%uはサポートされていません。離散ウェーブレット変換の計算高速フーリエ変換の計算Hough変換の計算Log-Phi座標で PSDF を計算する連続ウェーブレット変換の計算垂直磁気媒体の上の迷磁場を計算する別の z レベルの迷子場シフトを計算するL-curve データ計算中…角度分布の計算.すべての画像をつなげてエクスポート条件%c: %s円錐円錐保守的なノイズ除去定数 X定数 Y定数 Z定数値:格子を構築中…接触接触弾性率連続性阻害制御ブロックマークがCBではない、ファイルが破損している。収束小数桁:すべてのデータフィールドを 3D データに変換するデータフィールドを3Dデータに変換する3 つのチャネルを XYZ データに変換XYZ データに変換すべてのデータフィールドを 3D ボリュームデータに変換します。データ フィールドを XYZ データに変換します。データフィールドを3Dボリュームデータに変換します。MFM データを強制的にグラデーションに変換します。3 つのチャネルを XYZ データに変換します。畳み込みフィルタ畳み込みカーネルコンボリューション2つの画像を畳み込む畳み込み2つの画像を畳み込みます。すべての適合値を見積もりにコピー他からコピー結果をクリップボードにコピーテーブルをクリップボードにコピーコピーライト:Corning Tropel UltraSort CSV export (.csv)Corning Tropel UltraSort data (.ttf)補正データ格子補正回転補正データ補正アフィン歪みを補正水平傷跡(ストローク)を修正する遠近法の歪みを補正ライン内のステップを修正する補正補正されたオフセット補正元の像をブラべー格子像に適合させ、アフィン変換で補正します。ライン欠陥(主に実験的アルゴリズム)を修正します。画像の遠近歪を修正または適用します。粒子特性の相関第1セットの相関...第2セットを相関付ける…平均シフトを決定するために関連付け…相関...相関相関長相関長 T相関行列相関検索相関メソッド相関長ツール。相関行列
相関最大相関スコア相関、平準化相関、生Cosine設定を読み取ることができませんでした。カウントCoupled PDEsACF イメージの作成イメージディレクトリの作成PSDF イメージの作成ポイントの作成マスクの作成外部にマスクを作成する変位グラフを作成する新しいアイテムを作成する選択したアイテムに基づいて新しいアイテムを作成する粒子の内接円の選択範囲を作成する粒子の外接四角形の選択範囲を作成する粒子の外接円の選択範囲を作成する粒子に内接する四角形の選択範囲を作成する通常のポイントからイメージディレクトリを作成する新しいイメージを作成する新しいボリューム データの作成簡単なキャリブレーションデータを作成するティップ画像の作成Createc files (.dat)対数カラースケールで画像処理データを作成陰影をつけた画像処理データを作成します。ビニングで小さいイメージを作成。角度平均プロファイル グラフを作成します。外れ値のマスクを作成します。残りの部分と繋がっていない値の部分のマスクを作成します。他のチャネルを使用してマスクを作成または変更します。さまざまな勾配 (Sobel、 Prewitt) を使用して処理画像を作成します。ボリュームデータの作成…クレジット基準の組み合わせ条件臨界寸法測定切り抜き切り抜きデータ2つの画像の交差部分を切り取る外側のピクセルを避けて結果を切り取る切り取ってデータにする内部にトリミング切り抜きツールは、データを小さいサイズに切り抜きます。2つのイメージの交差する領域を切り取ります。十字形ゼロで交差相互相関2 つのデータ フィールドを相互に関連付ける相互相関…交差キューブカウント角度の累積分布高さ分布現在のイメージCurrent Line Stray Field現在のX軸は次のようになります:現在のY軸は次のようになります:現在のZ軸は次のようになります:電流・反り・振幅曲率曲率 1曲率 2曲率断面曲率角 1曲率角度 2曲率中心 X 位置曲率中心 y 位置曲率中心 Z 値曲率半径 1曲率半径 2曲率カーブ曲線のプロパティX位置:Y位置:曲線:曲線カーブは、カーブタブからグラフウィンドウにドラッグすることで、他の(互換性のある)グラフにコピーできます。カーブをグラフから削除するには、[カーブ]タブでカーブを選択し、[Delete]を押します。グラフを切り取りすべてのカーブを切り取りグラフの切り取りはずれ値を除外カットオフシリンダー円柱 (横だおし)円柱DATA_INFOには、%s列が含まれていません。DATA_INFO行に含まれるフィールドは%d未満です。DME GDEF files (.gdf)DME MIF files (.mif)DME files (.img)DOSスペクトル「%s」のためのDOSスペクトラムDWTDWT異方性DWT異方性検出データデータ + フィットデータ + 多項式データ演算式には、値 (d)、マスク値 (m)、微分 (bx、by) および座標 (x, y) を含めることができます。データ演算は、科学電卓として機能します: 単に算術式を入力します。データ ブラウザデータ形式データ処理データ処理→寸法と単位→基本的な操作によって、スケール、オフセット、横方向および値単位が変更されます。データ処理→マスク→マーク付けは、別のデータ、マスクまたは画像処理に基づいてイメージマスクを設定することができます。データ処理→画像処理→エッジ検出→ステップは、良好なダイナミックレンジを備えた微細なステップ検出器ですデータ調整データブロックが切り捨てられますデータ ブロックは切り捨てられます。データの逆シリアル化に失敗しました。データの逆シリアル化は成功しましたが、予期しないオブジェクト%s。データ フィールドのディメンションは正の数ではありません。予期される%sではなく、データ ファイル %sが見つかりました。データ ファイルが短すぎます。詳細よりも大きなデータですか?データ行%uには 4 つの項目が含まれていません。データ行がYの横座標で始まりません。データ行の長さ(%u)がX座標の数に対応しません。%u。データ処理→画像処理ツールよって作成された画像処理では、基になるデータは変更されません。 後続のすべての操作は、引き続き基になるデータに適用されます。データ処理データ範囲詳細と同じデータ?データ サイズ%luは、ポイント サイズ%uの倍数ではありません。データ サイズ%uデータ ディメンション (%u×%u) と一致しません。データ サイズ%uは、%u×%uデータ ポイントの数と一致しません。データ合成モジュールは、既存の画像を変更するためにも使用できます。データ タグがありません。比較するデータ%dデータ型が無効か、サポートされていません。再計算のためにデータ値の単位は、deg、rad、m、Hz または V である必要があります異なる <i>x</i> および <i>y</i> メジャーを持つデータは、ピクセル単位またはリアリスティック縦横比で表示できます。 データ ウィンドウの左上隅のメニューを使用すると、これら 2 つのモードを切り替えることができます。データ: %s
データセット %sには、画像解像度%d×%dと一致しない%dアイテムがあります。日付:ダウベッヒ12ダウベッヒ20ダウベッヒ4ダウベッヒ6ダウベッヒ8Dechecker圧縮データの解凍に失敗し、エラー%d。圧縮変数の解凍がエラー%dで失敗しました。デコンボリューションデコンボリューション画像デコンボリューションデフォルト欠陥半径欠陥の種類平面のイメージまたはスキャン ラインを変形する変形カオス度Dektak OPDx data files (.OPDx)Dektak XML data files (.xml)Delaunay削除選択した項目の削除区切り文字: %s区切り文字: 0x%02x区切り文字: 空白デルタ関数ノイズ除去水平/垂直スキャン結果からノイズ除去直交するスキャン方向の2つの画像データに基づいてノイズ除去します。密度粒子を堆積させる…派生数量説明説明:デタッチされたヘッダーは、データ ファイルを参照しません。詳細ガウスステップフィルタを使用して輪郭を検出する検出されました検出されたステップDeveloped length展開したプロファイル長さ開発者Development is supported by the Czech Metrology Institute: 開発バージョン、ビルド%s斜め十字ダイヤモンドダイヤモンド差Difference normX 値と Z 値の数が異なります拡散限定アグリゲーションデジタルAFMデータの再校正Digital Micrograph DM3 TEM data (.dm3)Digital Micrograph DM4 TEM data (.dm4)膨張データ膨張膨張…Dimension 3100D files (.001, .002, ...)大きさ寸法と単位方向方向 1方向 2最大マーティン径の方向最小マーティン径の方向方向 (φ) グラフ円板離散レベル離散状態円板変位変位フィールド表示データを3Dビューで表示する表示マスク:選択内容の表示、コピー、エクスポート表示:複数の画像から同時にスキャン線グラフを表示および抽出します。全体の粒子統計量を表示します。距離距離変換距離測定ツールは、距離と角度を測定します。マスクのユークリッド距離変換多項式による歪み歪んだ変位フィールドを使用して、平面内のイメージまたは個々のスキャン ラインを変形させます。マスクを分配するマスクを他のチャンネルに分配する次に分配マスクを他のチャンネルに分配します。分布分布幅分布幅:角度の分布各種粒特性分布分割せずマスクのみを使用するドキュメント履歴ドメインドーナツ下しずくサイズデータブラウザからウィンドウにチャンネルまたはグラフをドラッグすると、対応するファイルにそれらのチャンネルまたはグラフがコピーされます。選択マネージャ ツールから選択をデータ ウィンドウにドラッグすると、選択内容がターゲット データにコピーされます。フレームを描画ラベルを描画マスクを描画数を描画選択範囲を描画Tickを描画マスクのラベルを描画文字をスケールバーの上に描画ドリフトドリフト線ドリフト補正Dual Lensmapper files複製重複ブロック%02x。ECSファイル (.img)EM4SYS NX II files (.bmp)EXR image loading failed with libImf error: %sEXR image writing failed with libImf error: %s背景抽出各チャネルには、独自のメタデータがあります。 マウスの右ボタンでクリックし、メタデータブラウザーを選択して、それらを表示します。各ボリューム データには、独自のメタデータがあります。 マウスの右ボタンでクリックし、メタデータブラウザーを選択して、それらを表示します。エッジガウスステップフィルタを使用したエッジ検出。エッジの高さ(左)エッジの高さ (右)マスクの編集選択した項目の編集[既定→マスク色を編集]は、デフォルトのマスクカラーを設定します。 この色は、マスクが設定されていないデータにマスクが作成されたときに使用されます。エディタ電気化学電流 (Iec)電気化学電圧(Vec)基本 XYZ データ操作。楕円楕円楕円体楕円形状楕円放物線空の式空のかっこヘッダー行の%uに空のセクション名。Gaussian乗数を有効にするローレンツ乗算を有効にするべき乗を有効にする3コンポーネントを有効にする有効Encapsulated PostScript (.eps)ファイルの終わりチャネル ブロックでファイルの終わりに達しました。カラー データ ヘッダーでファイルの末尾に到達しました。ファイルの終わりがカラー データに到達しました。フレーム データ #%u でファイルの末尾に到達しました。フレーム ヘッダー #%u でファイルの末尾に到達しました。ファイルの終わりがイメージ ブロックに到達しました。ページ ヘッダーでファイルの末尾に到達しました。文字列 #%u でファイルの末尾に達しました。データ フィールド内でファイルの末尾に到達しました。別のチャネルが予期されたときにファイルの終わりに達しました。「%s」フィールドを探すときに、ファイルの終わりに達しました。サンプル #%d の %d を読み取る際に、ファイルの終わりに達しましたサンプル #%u の %u を読み取る際に、ファイルの終わりに達しました値が予期された時点でファイルの終わりに達しました。ファイルのリストの末尾規定された統計的プロパティを適用するランク変換を使用して、ローカルのコントラストを強化します。画像全体エントロピーEntropy at scalesEntropy deficit等価円半径等価正方形側マスクの連続部分を消去する浸食浸食...エラーファイル '%s' の読み込み中にエラーが発生しましたファイルの読み込み中にエラーが発生しました: %s
エラー: 粒子がありません。エラー: ポイントが不足しています。エラー: 範囲外です。エラー: 粒子が大きすぎます。エラー: 粒子が小さすぎます。エラー: 粒子が多すぎます。見積もりEstimate Lift Height Shift伝達関数推定Estimate lift height difference in MFM data既知のデータと理想的な画像から伝達関数を推定する既知のデータと理想的な画像から伝達関数を推定する推定シフト:算出されたティップフォースボリュームを評価するフォースボリュームカーブの評価高速スキャン軸の熱ドリフトを評価・補正評価された信号高速スキャン軸の熱ドリフトを評価・補正します。粒の分布を評価します (マスクの連続部分)。評価中...進行プロットEvovis XML data files (.xml)指定された通りに過剰な尖度マスク領域を除外する除外点スクリプトの実行 (Ctrl-E)「%c」が行%uでより多くのフィールドをスキップすることが期待され、「%.16s」を得ました予期される '%s' 配列または 'ABSENT' です。「%s」が行%uでより多くのフィールドをスキップすることが期待され、「%.16s」を得ましたファイル ヘッダーから計算される予期されるデータ サイズは %u バイトですが、実際のサイズは %u バイトです。Expected delimiter `%c' after data in row %u, column %u, got `%c'Expected delimiter `%s' after data in row %u, column %u, got `%.16s'予期されるヘッダー終了マーカー '%s' が見つかりませんでした。予期されるヘッダー開始マーカー '%s' が見つかりましたが、'%s' が見つかりました。想定されるタグ %u サイズは %u バイトですが、実際のサイズは %u バイトです。Expected whitespace to skip more fields in row %u, got `%.16s'指定範囲で色を設定指数指数 (ACF)指数 (HHCF)指数 (PSDF)指数 (RPSDF)%s をエクスポート3D ビューをエクスポート3D ビューをエクスポートGXYZF のエクスポートログのエクスポート透明な背景を持つ PNG 画像をエクスポートする元の粒子値をエクスポートテキストのエクスポートXYZ のエクスポートラベルエクスポートメタデータエクスポート単位エクスポート16 ビットのグレースケールとしてエクスポートグラフデータをテキストファイルにエクスポートするグラフをビットマップにエクスポートグラフをPostScriptへエクスポートグラフをラスターイメージにエクスポートするPNG にエクスポートPostScriptにエクスポートテキストファイルエクスポートボリューム データをテキスト ファイルにエクスポートするデータを単純な ASCII 行列としてエクスポートします。データをシンプル XYZ テキスト ファイルとしてエクスポートします。グラフ データをテキスト ファイルにエクスポートします。グラフをPostScriptにエクスポート画像をその他の 3D データ形式として書き出し、3D 形式から XYZ ポイントを読み込みます。ボリューム データを単純な ASCII 形式でエクスポートします。式に不明な識別子が含まれています拡張罫線を追加して拡張する結果を罫線に拡張する畳み込みまで拡張拡張枠線を追加して画像を拡張します。外部外部パス選択の抽出Z 等値面を抽出するポイントスペクトロスコピーの抽出および表示角度平均プロファイルを抽出するイメージ プレーンと線グラフを抽出する新しいイメージにマスクを抽出するグラフの一部から新規に作成パス選択データの抽出画像処理データを新しいイメージに抽出する任意の線に沿ったプロファイルの抽出新しいファイルへの抽出ボリュームデータプレビューをイメージに抽出する等値面の Z 座標を抽出する曲線に沿って、画像のまっすぐな部分を抽出します。パス選択に沿って座標と接線を抽出します。ボリューム データからイメージ プレーンと線グラフを抽出します。ボリューム データからイメージに等値面の Z 座標を抽出します。外挿 ACF 減衰が 1/eF-DスペクトルFEI Magellan SEM image (.tif)FEI TIA (Emispec) dataFFTFFT 虚部FFT ModulusFFT PhaseFFT 実部FFT フィルタリングFarther thanFraction of B関数:面境界線面面分析多平面レベリングファセット レベルでは、多くの場合、標準平面の平準化を使用できない大きなフィーチャを使用してデータを平準化できます。 平坦な領域の法線を上向きにすることで、表面を水平にします。マスクがデータに存在する場合、ファセットレベルはマスク領域を使用/除外します。面の平面サイズ:面レベルの傾き多平面レベリング…面イメージ データの読み取りに失敗しました。失敗:分割する高速スキャン軸:最速の減衰方向特徴FemtoScan SPM filesFemtoScan text files (.txt)フィルタリング画像固定精度:基準レコードがファイルに収まりません。フィールドフィールド データ サイズ %ux%u はイメージのサイズ %ux%u と一致しません。テキスト エンコーディングの場合、フィールドバイトスキップを -1 にすることはできません。フィールドバイトスキップは、ファイル内のバイト数よりも多くを指定します。フィールド行スキップは、ファイル内の行数よりも多い行を指定します。ファイルFile %s is missing in the zip file.ファイルタイプ: %sファイル '%s' は既に存在します。 置き換えますか?ファイルコンポーネント/アイテム '%s' が切り捨てられます。ファイルに NaN または無限大が含まれています。ファイルに含まれるデータ ポイントが XSize*YSize 未満です。ファイルに (インポート可能な) データが含まれています。ファイルにエクスポート可能なチャネルがありません。ファイルに含まれていません
読み取り可能なデータ。ファイルにグリッド寸法が含まれていません。タグのスキャン中にファイルの末尾に到達しました。ファイルが予期せず '%s' の中で終了しました。ファイル形式のバージョン %.1fはサポートされていません。ファイルは行末の変更によって破損し、ファイルのバイナリ部分が破損しました。

通常、このエラーは、圧縮されていない電子メールで送信された場合、FTP で ASCII モードで送信 (バイナリを使用)、MS Windows の一部のバージョンで [圧縮フォルダに送信] によって圧縮された場合、またはプラットフォームに依存せずにテキストを格納しようとするその他のファイル転送によって、ファイルがテキストとして扱われる場合に発生します。ファイル ヘッダーは ISO-8859-1 文字セットから変換できません: %sファイル ヘッダーの末尾が空行ではありません。ファイル ヘッダーが予期せず終了しました。ファイル ヘッダーがファイルより大きいです。ファイル ヘッダーが切り捨てられます。ユーザーがファイルのインポートをキャンセルしました。ファイル情報ブロックはファイルの外部にあります。ファイル情報のブロック サイズが無効です。ファイルが壊れています。ファイルが壊れている、マジックヘッダーが一致しません。ファイルが空です。ファイルは%sファイルではない、深刻な破損している、または未知のフォーマットのバージョンです。ファイルがNanoscopeファイルではないか、または不明なサブタイプです。ファイルが短すぎるので、想定されるファイルの種類にできません。ファイルが欠けています。ファイルのメイン.xmlには複数のデータ要素が含まれています。ファイル名は、Omicron フラット ファイルの想定される形式ではありません。ファイルが大きすぎてプレビューできませんファイル バージョン %u.%u はサポートされていません。ファイル → Merge では、選択したファイルから現在のファイルにすべてのデータがインポートされます。ファイル→最近の→ドキュメント履歴を開くと、最近ロードされたファイルのブラウザが開き、名前で検索できます。ファイル:FileDescBeginをFileDescの中に入れることはできません。FileDescBegin has no corresponding FileDescEnd.FileDescEnd has no corresponding FileDescBegin.空白塗りつぶし連続した空の領域をマスクで塗りつぶすマスクの下のデータをゼロで埋める単純接続されていない部分を塗りつぶしフィルタマスク全体を塗りつぶすフィルター粒子フィルターフィルタマスクプロパティによって粒子をフィルタリングフィルタ: %sフィルタされたデータフィルタリングされた FFTフィルタリングしたFFT係数フィルタ画像フィルタリング中…論理式としきい値を使用して、プロパティ別に粒子をフィルタリングします。最終温度グラフ曲線のピークを検索するデータ間の単純な関係を見つける極小値を検索中…グラフ曲線上のピークを検索します。細かいステップ検出表示最初のチャンネルはオフになります。第1微分勾配変換最初の画像最初のセクションはデータセットではありません最初のベクトルフィッティングフィットエリアフォースカーブをフィッティンググラフにフィッティングフィッティング結果形状フィッティングフィットテラス伝達関数フィッティングフォースカーブをフィッティングするグラフデータに関数を合わせる臨界寸法にフィッティングフィッティングに失敗フォースカーブのフィッティング幾何学的形状にフィッティング関数に合わせてグラフを調整多項式バックグラウンドを持つテラスを合わせる既知のデータおよび画像からの伝達関数をフィッティングフィッティングが中断されました定義済みの幾何学的形状をデータにフィッティングします。多項式バックグラウンドを持つテラスにフィットします。フィッティング関数フィッティング関数:%s
フィット形状フィッテイングされたステップ高フィッティング進行中…フィッティング…修正しきい値を1000倍に固定:Flat topFlat-top[ベースを平坦化]は、正のフィーチャを持つベース フラット 表面の自動平準化を実行します。正の形状を持つ表面の底面を平坦化するFlexible Image Transport System FITS (.fits)Z 軸を反転データを水平および垂直に反転データを斜めに反転データを水平方向に反転するデータを縦に反転するFloat (32bit)以下の機能力勾配力のセットポイント原点を中心に図形を強制的に配置する力の強さフォーマットバージョンが%d。 バージョン 5 のみがサポートされます。内部極大値が見つかりました
%d 個の内部極大値が見つかりましたフラクタル次元フラクタル補正フラクタル補間フラクタル・ラプラスブレンド非整数ブラウン運動フレーム #%u は、スキャンされたデータ ヘッダーに対して短すぎます。フレーム #%u は、分光法データ ヘッダーには短すぎます。フレームモードに対してフレームが短すぎます。ドットまたはデータに対してフレームが短すぎます。フリーハンドでマスク描画フリーハンドでマスク削除頻度周波数分割周波数シフト周波数空間指数関数摩擦または位相ここから:最小値から最大値までの範囲で色をつけるFull diamond完全なファイル パス: %s。俵型全球正方形Full triangle downFull triangle leftFull triangle rightFull triangle up関数Pythonで書かれた関数FunctionsFw水平力 GL MaterialGLマテリアル'%s'GL マテリアル エディタGL materialsGSXM netCDF files (.nc)Garbage `%.16s' in row %u, column %uデータ サンプル #%u の後にガベージを実行します。最初のヘッダー部分より前は捨てる。タグ ヘッダー行の代わりにガベージが見つかりました。ガウスガウス (ACF)ガウス (HHCF)ガウス (PSDF)ガウス (RPSDF)ガウス (非対称)Gaussian (ライン)Gaussian (2次元)ガウスステップ検出ガウススムージングガウス曲率ガウス曲率ガウス一般畳み込みフィルタ一般的な k ランク フィルターは、近傍からの k 番目のランク値でデータを置き換えます。General power柱状表面を生成する非整数ブラウン運動のような表面を生成する格子ガスをアニーリングして画像を生成するGenerate image by coupled PDEsドメインを含むイメージを生成する格子ベースの表面を生成するライン ノイズを生成する動的モデルを使用して粒子を生成するパターン表面を生成する動的モデルを使用してロッド状の微小構造を生成する弾道堆積による表面の生成拡散限定凝集による表面の生成ランダム円板の表面を生成ランダムに積み重ねられた形状の表面を生成ランダムに配置された繊維の表面を生成ランダムにオブジェクトを配置して表面を生成無相関ノイズ表面の生成スペクトル合成を用いて表面を生成する分離された位相を使用して表面を生成する波を生成生成画像単純な成長アルゴリズムによって、柱状表面を生成します。ハイブリッドイジングモデルを使用してドメインイメージを生成します。格子ガスモデルをアニーリングして画像を生成します。結合された偏微分方程式モデルの順に画像を生成します。単純な動的モデルを使用して粒子を生成位相分離構造を生成します。ランダムな接触円板を生成します。非整数ブラウン運動に似たランダムな表面を生成します。スペクトル合成を使用してランダム表面を生成します。幾何学的な形状をランダムに積み重ねて表面を生成します。ランダムにオブジェクトを配置して表面を生成します。単純な動的モデルを使用してロッド状の微小構造を生成規則的またはランダムな格子に基づいて表面を生成します。弾道堆積によって表面を生成。拡散限定凝集によって表面を生成します。ランダムに配置された繊維から構成される表面を生成します。相関のないランダムノイズを生成します。各種ラインノイズを発生させます。様々な波を発生させます。線の生成中…ジェネレータユーザー定義の行列を持つ汎用畳み込みフィルタ。Gnuplotに合う良い平均プロファイル粒度相関粒子分布粒子位置粒子測定粒子測定ツールは、個々の粒子を調べるのに最適です。 全粒粒子統計は、データ処理→粒子で利用できます。粒子除去粒子統計粒子の要約粒状測定ツールは、選択されたマスクの連続部分の特性を計算します。粒子最小ベーシス体積粒子数粒子特性統計粒子除去ツールは、マスクや基礎データの連続部分を削除します。粒子の要約情報粒子や他の関心領域はマスクでマークされます。 多くの関数は、マスクされた領域で何か面白いことをすることができます。グラフグラフピークグラフ統計グラフ軸ラベルは、ラベルをクリックすると後で編集できます。グラフカーブのプロパティは、カーブをクリックして編集できます。グラフキー(凡例)プロパティは、凡例をダブルクリックして編集できます。グラフ → 重要なディメンションは、抽出されたプロファイル グラフのステップを測定します。Graphics Interchange Format GIF (.gif)グラフグレーティング(3レベル)グレーチング(シンプル)グレーティング画像緑グループ ID は有効な識別子ではありませんグループ ID が一意ではありませんグループカウント [データセット]柱状表面を拡大する成長/縮小GwyXYZ データファイルGwyddion Simple Field (.gsf)Gwyddion 今日のヒントGwyddionユーザーガイドでは、Gwyddionに実装されている多くのメソッドとアルゴリズムについて詳しく説明しています。Gwyddion dumb dump files (.dump)Gwyddionは数学の申し子です。Gwyddion native format (.gwy)ネイティブ型の HDF データはサポートされていません。HDF5 library error %ld in function %s.HHCFHSym高さ:ハールHalf (16bit float)半俵型半球半球HammingHannHarrisコーナー画像処理職位ヘッダー ブロック%uの位置またはサイズが無効です。ヘッダー フィールド '%s' がありません。ヘッダーが短すぎます (%d バイトのみ)。ヘッダーが短すぎます (%lu バイトのみ)。ヘッダー行%uキー値の区切り記号がありません。ヘッダー行%uは、プレフィックス %sを欠いています。ヘッダー行はコロンで始まります。インデックス%uのヘッダー プロパティ ファイルがありません。ヘッダーは突然行%uで終了しました。ヘッダー マーカーの末尾がありませんヘッダー タグ キーが空です。ヘッダー タグ キーは、nul 終端ではありません。ヘッダータグ '%s' キーは、nul に埋め込まれません。ヘッダー タグ '%s' には CRLF ターミネータがありません。ヘッダー タグ '%s' の値は、nul に埋め込まれません。ヘッダータグ '%s' 値は nul で終了しません。ヘッダー長%u実際のヘッダー長%uとは異なります高さ高さ差スコア高さ差、平準化済み高さ差、生高さ分布高さヒストグラム高さ:ヘルツの弾性率ヘルツの弾性率ヘルツの変形モデル16 進データの値 (%u) は、サイズ (%u) に対応する値よりも少なくなります。六角形六角形のピラミッド六角柱非表示コントロールをすべて非表示ツール ダイアログを非表示にする (Esc キー)ハイパスハイパス画像Hitachi AFM files (.afm)Hitachi AFM files, old (.afm)Hitachi SEM files (.txt + image)Hitachi-AFM has not registered file type `%s'.Shift キーを押しながら、選択したラインの方向を 15°ごとに制限します。Shift キーを押しながら、選択した楕円の形状を完全な円に制限します。Shift キーを押しながら選択した長方形の形状を完全な正方形に制限します。穴水平ギャップ:水平/垂直ライン水平水平Prewittグラデーション画像処理水平Sobelグラデーション画像処理水平プロファイル%d水平サイズHough変換Houghサークル r=%dHoughラインHoughライン画像処理Hough変換。色相双曲線平坦化I-VスペクトルI-ZスペクトルIEEE doubleIEEE halfIEEE singleIQRISO 28600:2011 SPM data transfer files (.spm)ISO 5436-2 OpenGPS data (.x3p)Imaginary partすぐに更新IDIdentical _measures1D FFT フィルタリングなど、グラフ上で複数の領域が選択されている場合、マウスの右ボタンでクリックすると、個々の領域を削除できます。Igor Pro text waveIgor binary waves (.ibw)画像の差画像画像(スキャンライン)イメージ A にはマスクがありません。イメージ B にはマスクがありません。画像情報画像の差画像データはファイルの外部にあります。画像データはファイルの終わりを越えて開始されます。ACFの画像:イメージ ヘッダー レコードが短すぎます。イメージが大きすぎて TARGA として格納できません。イメージが小さすぎます。ラベル%uの画像番号がインデックス内の%uの数と一致しません。Tで測定された画像サイズイメージスライス画像画像(2次元)虚部詳細画像のはめ込み詳細画像を全体画像にはめ込み全体像の中に詳細な高分解の画像をはめ込みます。はめ込んだ詳細画像インポート %sグラフデータのインポートNMM Profile SetデータをインポートしますImport support for files of type

%s

is incomplete due to the lack of documentation, testing files and/or people willing to help with the testing.

If you can help to improve the import please contact the author of module %s-%s:

%sインポートされたチャンネルインポートされたデータは正しくない可能性があります。16ビットグレースケールPPM、PNGおよびTIFF画像をインポートし、OpenEXRイメージをインポートし、エクスポートします(可能な場合)。A.P.E. Research DAX データ ファイルをインポートします。AFM Workshopのスペクトラムファイルをインポートします。NASA Phoenix Mars missionデータをインポートします。AIST-NT データ ファイルをインポートします。APE (Applied Physics and Engineering) データをインポートします。Aarhus MUL データをインポートします。Accurex II テキスト ファイルをインポートします。Alicona Imaging AL3D ファイルをインポートします。Ambios 1D profilometryデータ ファイルをインポートします。Ambios AMB データ ファイルをインポートします。Analysis Studio XML (.axz & .axd) ファイルをインポートします。Infatec データ ファイル (2 つの部分.txt + .int) をインポートします。Assing AFM データファイルをインポートします。Attocube Systems ASC ファイルをインポートします。files.Imports Automation & Robotics Dual Lensmapper data filesBenyuan CSM データをインポートします。Burleigh BII binary データをインポートします。Burleigh IMG data files version 2.1 をインポートします。Burleigh text/bin をインポートします。Carl Zeiss CLSM データをインポートします。Carl Zeiss SEM データをインポートします。Code V interferogram ファイルをインポートします。Corning Tropel UltraSortデータをインポートします。Createc データ ファイルをインポートします。DME GDEF データをインポートします。DME MIF データをインポートします。Danish Micro Engineering (DME) データをインポートします。Dektak OPDx データをインポートします。Dektak XML データ ファイルをインポートします。Digital Instruments Nanoscope II データをインポートします。ECS IMG ファイルをインポートします。EM4SYS データをインポートします。Evovis XML データをインポートします。FEI Magellan SEM データをインポートします。FEI Tecnai imaging and analysis (former Emispec) データをインポートします。FemtoScan SPM データをインポートします。FemtoScan TXT ファイルをインポートします。Gwyddion XYZ フィールドファイルをインポートします。Hierarchical Data Format (HDF) files, version 4データをインポートします。Hitachi AFM データをインポートします。Hitachi S-3700 and S-4800 SEM filesデータをインポートします。Igorのバイナリ波形(.ibw)をインポートします。Image Metrology BCR データファイルをインポートします。IntelliWave interferometric ESD データをインポートします。Intematix SDF データをインポートします。IonScope SICM データをインポートします。JEOL JSPM データファイルをインポート.JEOL データファイルをインポート.JPK 画像データをインポート.LEXT データをインポートします。Leica CLSM image files (LIF) データをインポートします。MapVue data files (.map) データをインポートします。Matlab MAT files v5 データをインポートします。MicroProf FRT profilometer データをインポートします。Molecular Imaging MI データをインポートします。Molecular Imaging STP データをインポートします。NANOTOP AFM データをインポートしますNT-MDT データをインポートします。Nano Measuring Machine profile データをインポートします。NanoScan XML データをインポートします。NanoScanTech .nstdat データをインポートします。NanoSystem profilometry データをインポートします。Nanoeducator データをインポートします。Nanomagnetics' NMI file format version 3 and 5 データをインポートしますNanonics NAN データをインポートします。Nanonis DAT spectrum データをインポートします。Nanonis SXM データをインポートします。Nanosurf EZD and NID データをインポートします。Nanosurf PLTファイルをインポート.Nanotec WSxM データをインポートします。OLS データをインポートします。OME-TIFF データをインポートします。Olympus OIR データをインポートします。Omicron STMPRG (tp ta) データをインポートします。Omicron (two-part .par + .tf*, .tb*, .sf*, .sb*)データをインポートします。Omicron flat データをインポートします。Pacific Nanotechnology PNI データをインポートします。Park Systems データをインポートします。Quesant データをインポートします。RHK Technology SM3 データをインポートします。RHK Technology SM4 データをインポートします。RHK Technology SPM32 データをインポートします。Renishaw WiRE data files (WDF) データをインポートします。S94 STMデータをインポートします。SIS (Surface Imaging Systems) データをインポートします。SPMLab floating-point データをインポートします。Seiko XQB, XQD, XQT and XQP データをインポートします。Sensofar PLu file format, version 2000以降 データをインポートします。Sensolytics text データをインポートします。Shimadzu SPM データをインポートします。Surf データをインポートします。Surfstand group SDF (Surface Data File) データをインポートします。SymPhoTime data files, version 2.0 データをインポートします。Tescan SEM データをインポートします。Thermicroscopes SpmLab R3 to R7 データをインポートします。Imports Thermo Fisher SPC files.Unisoku data files (two-part .hdr + .dat)データをインポートします。WITec ASCII export データをインポートします。WITec WIT データをインポートします。WItec Projectデータをインポートします。WSF ASCII データをインポートします。Imports WinSTM (.stm) files.Wyko OPD and ASC filesデータをインポートします。Zemax グリッドサグデータファイルをインポートします。ISO 28600:2011 SPM フォーマットのインポート・エクスポート。Nearly raw raster data (NRRD) データをインポートします。MetroPro (Zygo) データをインポートします。低深度のピクセルデータ (PNG, TIFF, JPEG, …)からインポートします。読込可能な形式はGDK pixbufに依存します。Hierarchical Data Format (HDF), version 5 データをインポートします。GXSMで作成された network Common Data Form (netCDF) データをインポートします。古い NTMDT MDA Spectra データをインポートします。旧Veeco Dimension 3100D ファイルをインポートします。ユーザー指定の形式に従って、ASCII とバイナリの両方の生データ ファイルをインポートします。単純なテキスト ファイルをグラフ カーブとして読み込みます。すべて改善方向を改善トレーニング中Inhibitorカップリング発生傾斜(勾配)グラフ傾斜分布傾斜θ傾斜φ傾斜Include domain wallsマスク領域のみを含めるパラメータ ファイルの軸の数が正しくありません。局所部分のコントラストを上げる別々の次数インデックス[距離] ツールで個々の線分を削除するには、リストから線分を選択し、[削除] を押します。プロファイルツールで個々の行を削除するには、リストから行を選択し、Delete キーを押します。情報データ ブラウザー→表示は、閉じたデータ ブラウザーを戻します。インフォメーション初期値初期粒子設定…初期値OpenGL の初期化に失敗しました。 Gwyddion の起動時にコンソールに出力される <tt>glxinfo</tt> および警告メッセージの出力を確認してください。初期化しています…インスタント3Dレンダリングインスタント:Integer (32bit)積分IntegrationIntelliWave interferometric data (.esd)Intematix SDF data files (.sdf)対話型インタラクティブなカラーレンジツールは、データまたは高さ分布ヒストグラムのいずれかで、偽のカラースケールにマップする必要があるデータ範囲を選択することができます。内部内部エラーACF水平補間ラプラス方程式の解法によるマスク下のデータの補間フラクタル補間を使用してマスクの下でデータを補間する小さな欠陥を補間(手動で選択)補間...補間マスクと選択範囲を交差させる異なるベクター図形の交差点交差点無効な '%s' 値: %d。無効な '%s' 値: %g。%sの引数が無効です無効なデータ アドレス 0x%0xが見つかりました。 ファイルは、いくつかの未知の形式のバージョンです。イメージ データに対して無効なデータ型%d。行データに対して無効なデータ型%d。無効なフィールド次元: %d。ファイル ヘッダーが無効です。無効な項目キー形式「%s」フィールドを検索するときに無効な行が見つかりました。行%uでオブジェクトのネストが無効です。無効な演算子%c引数無効またはサポートされていないタグの種類%u。不正な平面番号%uがタグ '%s' にあります。%uバイトで構成される型%uクレームの無効な short タグ。無効なタグ データ位置が見つかりました。エントリ '%s' に無効なタグ型定義があります。無効なトークンInverse cosh反転(谷を見つける)マスクを反転ボリュームデータの値を反転する平均に関する値を反転するボリュームデータの値を反転IonScope SICM files (.img)Isosurface z for %.*f %s自由フィットパラメータよりも多くのデータポイントを選択する必要があります項目 '%s' が%uではなく、予期しない型%u。項目 '%s' がファイルの終わりを越えています。項目キーに無効な文字が含まれています項目キーが既知のデータに属していない軸ごとのヘッダー フィールド%sの項目は、引用符で囲まれません。計算の繰り返し (回数 %d)JEOL JSPM data files (.tif)JEOL data files (.tif)JPEG (.jpeg,.jpg)JPEG 2000 (.jpx)JPKフォースカーブ(.jpk-force, .jpk-force-map, .jpk-qi-data)JPK画像データ(.jpk、.jpk-qi-image)k中央値K相関 (PSDF)k平均法K平均中心値 %dk平均 %s のクラスターk平均 %s 誤差k平均法計算中...k中央値中心%d%s のk中央値クラスター%s のk中央値誤差k中央値計算中…K-ランクフィルタKaiser 2.5Keep grains satisfying:横方向オフセットを保持するサイズを維持するカーネルサイズカーネルサイズキーヘッダー行のキー%u空です。キー '+' または '=' は、データ ウィンドウをズームします。キー '-' (マイナス) は、データ ウィンドウを縮小します。キー 'Z' は、データ ウィンドウのズームを 1:1 にリセットします。Keyence VK4 data files (.vk4)尖度KuwaharaL-curveLJ 粒子強度:LJ 粒子強度:光源 θ:ラベルプロパティラベル テキストラベル文字列の長さは%u20より大きい。ラベルLanczosラプラスラプラス ソルバーラプラシアン背景基礎容積ガウスのラプラシアンのステップ検出画像処理水平横目盛水平の次元が物理量と異なります水平力シミュレーター横目盛水平単位:Lattice格子ベクトル格子緩和投影面の選択を可能にするレイヤー。単一の長い曲線の選択を可能にするレイヤー。2 次元の格子の選択を可能にするレイヤー。任意の直線の選択を可能にするレイヤー。結合された水平線と垂直線の選択を可能にするレイヤー。楕円領域の選択を可能にするレイヤー。水平線または垂直線の選択を可能にするレイヤー。長方形の領域の選択を可能にするレイヤー。十字または非表示として表示される複数のポイントの選択を可能にするレイヤー。長さによって最小二乗数Leica LIF image files (.lif)長さレベル %d粒子のレベリング回転レベリングXYZ データレベリングすべての XY 平面をレベリング仮想的な円弧を転がしてレベリング平面を 3 つの点に合わせデータをレベリング中央値減算によるレベリング平均平面補正によるレベリング平均平面減算によるレベリング仮想的な球を転がしてレベリング各面が上向きになるようにレベリング折れ線グラフをレベリング。カーブをレベリング個々の粒子をレベル化し、ラプラシアン補間法を使用する間のシフトを補間する指定された線と交差を使用して行をレベリングレベリングされたデータ表面のレベリングすべての XY 平面をレベリングする単純な平面減算または回転によってデータをレベリング氏、最小値または平均値を 0 に修正します。個々の粒子をレベルし、ラプラシアン補間法を使用する間のシフトを補間する。正の形状持つ表面の平坦な底面を水平にします。LibUnique
ライセンスLift height difference estimation from data blur光源と材質制限範囲データ範囲の制限下限/上限しきい値を使用してデータ範囲を制限パーセンテージに制限次数を制限ライン行%uには、必須ラベル '%s' は含まれません。ライン + ポイントラインノイズラインスタイルライン幅:ライングラフラインレベリングライン幅:リニアリニアフィット直線List ‘%s’ has %u items which differs from the number %u given by ‘%s’.LoGキャリブレーションデータの読み込みキャリブレーションデータの読み込みテキストファイルからキャリブレーションデータを読み込むテキストファイルからキャリブレーションデータをロードします。読み込まれた%dデータ ポイント次の方法で読み込まれました: %s。ドキュメント履歴の読み込みファイルバージョン%u.%uのロードは実装されていません。読み込み設定SPML (Scanning Probe Microscopy Markup Language) データをインポートします。Gwyddion ネイティブ データ ファイル (シリアル化されたオブジェクト) を読み込んで保存します。ローカル RMS 値ベースのステップ検出画像処理後処理によるローカル RMS 値ベースのステップ検出勾配検出の視覚化画像処理局所非線形性ベースのエッジ検出画像処理ローカル正規化局所スロープAzimuth画像処理Locating...%sのログ (%s)Log-Phi PSDF対数ロジスティック回帰対数スケール変換ローレンツLow level exclude limitローパスローパス画像背面に移動下限しきい値下限しきい値:LumaMFM データの再計算MFM 力勾配最大最小周波数最小次数最小次数:最大周波数可読形式等価楕円の主半軸ピクセルを正方形にするサンプル #%d の %d を読み取る際に、不正な形式のデータが検出されましたサンプル #%u を読み取る際に不正な形式のデータが検出されましたヘッダー行の形式が正しくありません (=)。選択した選択を管理するZ軸キャリブレーションの管理多くのモジュール (%u) は登録に失敗しました。MapVue files (.map)非接続部分をマークエッジ検出による粒子のマークしきい値で粒子をマークWatershedで粒子をマークスカーをマーク次でマーク2D 勾配でエリアをマークする他の部分と繋がっていない値の部分をマーク平均値から 3σ より遠いデータをマークするしきい値で粒子をマークするWatershedで粒子をマークエッジ検出機構を使用して粒子をマークするロジスティック回帰で粒子をマークする水平傷跡をマークする (ストローク)線に反転記号を付けます次でマークマークマークされたデータ範囲マーク付きテラスマーカー半径:境界をマーキング…外れ値をマーク…傷跡(水平線形アーティファクト)をマークまたは削除します。エッジ検出方法で粒子をマークします。しきい値(高さ、勾配、曲率)で粒子をマークします。Watershedアルゴリズムで粒子をマークします。マスクマスクAマスク A はデータ d にあります%dマスクBマスク B はデータ d 内にあります%dマスクエディタマスクエディタツールは、マスクの作成、編集、反転、拡大、縮小ができます。色マスク…マスクの色は、データビューを右クリックしてメニューから「マスクカラー」を選択することで変更できます。マスクの組み合わせと修正マスクエディタツールは、マスクの部分のインタラクティブな変更を可能にします。使用中のマスクマスクモードMatlab MAT 5 files (.mat)最大位置局所部分コントラストを最大化します。最大最大マーティン径最大幅最大境界方向最大境界サイズ最大拡大最大拡大:高さ上限プロファイルの最大高さ粗さの最大高さ最大刻まれたディスクの中心x位置最大刻まれたディスク中央y位置最大刻み込みディスク半径最大ピーク高さ粗さのピークから谷までの最大高さ最大ピット深さ粗さの最大ピーク高さ粗さの最大谷深さ最大値境界の最大値最大 z 値測定平均平均曲率平均と偏差平均曲率平均堆積厚平均差: %.*f %s平均粒面積平均粒径平均正規:平均形状平均半径平均粗さプロファイルの不規則性の平均間隔平均平方差平均平方差:平均値平均値減算距離を計測する面を測定する格子を測定するポイント間の距離と方向を測定するグラフ内の距離を測定する面角度を測定する個々の粒を測定する(マスクの連続部分)格子を測定する測定モードは 2 または 3 でなければなりません。%uが無効です。2次元格子のパラメータを測定します。Median中央値レベリング変位の中央値中央値中央値レベリング…データ結合ファイルのマージXYZ データのマージ2 つの XYZ ポイント セットをマージする2つの画像を結合するマージMerged graph at x: %d y: %d結合画像2つのイメージを結合します。%sのメッセージ無題のメッセージメタデータブラウザ…%sのメタデータ (%s)方式方式:MetroPro files (.dat)MicroProf FRT files (.frt)MicroProf FRT text files (.txt)Micromap SDF files (.sdfa)最小位置最小最小マーティン径最小幅最小および最大最小境界方向最小境界サイズ最小拡大最小拡大:最小円周中心 x 位置最小円周中心 y 位置最小円周半径最小テラス面積最小テラス長さ:最小値境界の最小値最小 z 値Minkowski boundaryMinkowski connectivityMinkowski volume等価楕円の短半軸鏡像反転不明な値の代用%sの引数がありません右かっこが見つかりませんヘッダー行にコロンがありません。データフィールド高さがありません。データフィールド幅がありません。データ開始マーカー (*) がありません。データ開始マーカー [データ] がありません。データ開始マーカー \x1a\x04 が見つかりません。データ フィールド マーカーの終わりがありません。データの終わりマーカーがありません。ヘッダーがありません。左かっこが見つかりません演算子%c引数がありませんいくつかの整数が無いか不正です。天国は何を意味するか知っているでしょうけど。エネルギー AB を混合するMixing energy ACエネルギーBCを混合モードモデルAFMティップモデルティップモデルモデルと信号は互換性がありません。モデル化された先端SPMティップモデルモジュールモジュール ブラウザModulusモーダスモーメントモーメントベースモンテカルロ複数のレコード ディメンションが見つかりました。形態学的操作マスクによる形状操作Gwyddion が正しくアップグレードされていない可能性が高い。 代わりに、1つのインストールが別のインストールで上書きされ、今では混乱しています。

モジュールディレクトリを完全に削除してください

%s

Gwyddion を再インストールします。

特定のエラーについては、「モジュール ブラウザー→情報」を参照してください。下に移動上に移動ラベルを移動光源の移動(L)すべての互換性のあるデータを含むマルチチャンネルファイルマルチチャネル相互相関マルチプロファイル交差切り取りN.A.NN トレーニング エラーNNANNA 3DNT-MDT files (.mdt)NTMDT old MDA Spectra data (.sxml .dat)名前名前-バージョン:名前:Nano Measuring Machine data import must be run as interactive.Nano Measuring Machine files (*.dsc)Nano-Solution/NanoObserver data (.nao)NanoScan XML files (.xml)NanoScanTech data (.nstdat)NanoSystem profilometry files (.spm)Nanoeducator files (.mspm, .spm, .stm)Nanomagnetics File (.nmi)Nanonics files (.nan)Nanonis SXM files (.sxm)Nanonis spectrum files (.dat)Nanoscope II filesNanoscope III filesNanosurf PLT files (.plt)Nanosurf files (.ezd, .nid)Nanotop files (.spm)自然対数 (e)ナイーブ ACF は 1/e に減衰Nearly raw raster data (NRRD) files (.nrrd)ネガ反転負の横軸処理負領域負の縦軸処理'%s' と '%s' のヘッダー フィールドが見つかりません。ネストされたディレクトリが見つかりましたNetCDF レコードはサポートされていません。ネットワークネットワーク名:ネットワークニューラルネットワークトレーニングニューラルネットワークSPMデータ処理新しい高さ新しい単位:新しい幅新しい寸法新しいグラフ新規アイテムいいえズーム領域が選択されていません。ヘッダー ファイルに対応するデータ ファイルが見つかりませんでした。どの基準にもデータが選択されません(すべての ID は 0 です)。「%s」に対応するデータ ファイルが見つかりませんでした。読み込まれたデータがありませんデータは使用されません。空きパラメータは選択されていません。レンダリングされたイメージはありませんマスクなしこのファイルタイプを読み込むモジュールはありません。このファイルの種類に保存できるモジュールはありません。隣接するものが見つかりません画像内のポイントが選択されていません。行%uで継続する前のレコードはありません。提案なし
適切なテラスステップが見つかりませんテラスが見つかりませんでしたタイムスタンプ チャネルが見つかりません ('タイムスタンプ' と呼ばれるか、単位を秒単位で指定します)。表示する作業方法がありません
%s
Web ブラウザで見つかりました。試みに関する詳細は、コンソールまたは gwyddion .log で確認できます。ノイズ抑制しきい値ノイズタイプノイズ発生マスク非インタラクティブサンプルごとの不均一ビットはサポートされていません。非一様チャネル リストはサポートされていません。不均等なポイントやセグメントの番号付けはサポートされていません。非ゼロ行スキップは、非圧縮ファイルに対してのみサポートされます。非接触なし (ポイントのみ)Normalize as _integralすべての粒子が堆積する(%u)
より多くの修正手順を試してください。オフセット (%d) に十分なライン (%d) がありませんなし俵型Null原点を左上隅に移動し、水平方向のオフセットを無効にする手順数レベル数ピーク数組み合わせの数: %u。データ ファイルの数:粒子の数島の数%u行の数が%uスキャン行数より少ない行トリガー数。極大値の数パス ポイントの数ポイントの数ポイント数:%dの%d
ポイント数: %u
マージされ、近すぎる場合: %u
境界に追加されました: %uテラスの数NuttallOMOMSオフセット省略透明度:縦座標外枠幅:オーバーサンプリングObject File Format (.off)オブジェクトに複数の参照があります%sのオブジェクトリストは切り捨てられます。%s型のオブジェクトは切り捨てられます。オブジェクトマークされたオブジェクト八角形オフセット分散オフセットオフセットOlympus LEXT OLS3000 (.ols)Olympus LEXT OLS4000 (.lext)Olympus OIR data files (.oir)Olympus packed OIR data files (.poir)Omicron MATRIX (.mtrx & .mtrx)Omicron MATRIX (param.mtrx & data.mtrx)データをインポートします。Omicron STMPRG files (tp ta)Omicron files (.par + data)Omicron flat files (*.*_flat) データをインポートします。1ラインに1つのXYレイヤー1ラインに1つのZプロファイル画像位置が調整されました
%d 枚の画像位置が調整されました片側(負)片側(正)PI E710 および KDT180-100-Im イメージングフォーマットのみが実装されています。エリア イメージング ファイルのみがサポートされます。インポートできるのは、2 つの列を持つファイルだけです。イメージ ファイルとライン ファイルのみがサポートされます。読込可能なもののみ表示標準および不規則なマッピングのみが実装されますが、ファイルにはマッピングタイプ '%s' があります。2 次元データと 3 次元データのみがサポートされます。2 次元イメージのみがサポートされます。軸%sでは、タイプ %sのみがサポートされます。ズームされたパーツのみ不透明度スケールファイルを開くOpen Microscopy OME-TIFF (.ome.tiff)Python スクリプトを開くPython 言語でスクリプトを開く (Ctrl-O)選択したファイルを開くOpenEXR data type %u is invalid or unsupported.OpenEXR images (.exr)OpenGL 3D ViewOpenGL 3D グラフィックスは使用できませんOpenGL はコマンド ライン オプションで無効にされました。OpenMP parallelization「%s」の開封に失敗しましたオペランド演算子演算子:オプションピークの順序次数ベース縦軸Y縦座標画像異なる画像から計算された縦座標データ元データ方向方向等価楕円の向きOrigin元データに合う元画像元の画像その他他のスケール:その他の文字外枠色:外れ値しきい値:出力出力オプション出力サイズ出力タイプ統計出力出力タイプ出力タイプ:上書きPCX (.pcx)PGM images with 16bit depth (.pgm)PID/スキャン速度比PNG images with 16bit depth (.png)PNI files (.pni)POSIX _number形式PSDFPSDF %.0f°PSDF ガウシアン フィットPSDF セクションPSDF指数適合PSI バイナリ ヘッダーが短すぎます。プローブタイプページ放物線放物線放物線放物線バンプ放物線ステップ平行Parallel Media Stray Fieldパラメーターパラメータ '%s' がないか、または無効です。パラメータ エラーパラメータ推定に失敗しましたパラメータ ファイルが短すぎます。パラメータタグセットが不完全です。パラメータPark Systems data files (.tiff, .tif)粒子生成粒子サイズ粒子長粒子半径粒子半径:粒子幅パーティション分割Pascal realPassing Schwoebelパスパスレベリング[パス レベリング] ツールは、手動で選択したラインに沿ってスキャンラインを揃えてレベリングします。 大きな形状がない場合は、通常、行を自動的に整列します。パスレベリングツールは、ユーザが設定したパスに沿ってスキャンラインを揃えてレベリングします。パターンピーク数軸ごとのヘッダー フィールド%sに含まれる項目が少なすぎます。軸ごとのヘッダー フィールド%sに含まれる項目が多すぎます。マスクを使用して基本的な形状操作を実行します。マスクの単純で真のユークリッド距離変換を実行します。Perpendicular Media Stray Field物理スケール:Phase位相(度)位相(ラジアン)位相調整結果A位相調整結果B位相のみ物理寸法物理寸法が無効です。物理的な寸法が異なるグラフデータを対数スケールに変換します。ピクセルサイズ:ピクセル的に正方形PicoHarp files (.pt3)PicoView Data Files (.mi)図形を積み重ねるPixbuf ローダーはデータを拒否しました: %s。Pixbuf 保存に失敗: %s.ピクセル領域ピクセル領域 MFM フォース グラデーションピクセル寸法が異なるインチあたりのピクセル数:Pixmap はファイルタイプ '%s' を登録していません。プロット色:2 番目のカーブを右に配置するプレースホルダ配置主な対角線に沿った平面プレーンテキスト平面構成%uはサポートされていません。平面平面レベルマスクがデータに存在する場合、平面レベルはマスク領域を使用/除外します。平面レベリング平面減算平面分散平面レベリングのプレビューデータ平面:お待ちくださいグラフプロットプロットスタイルプロットスタイル:背景グラフをプロットドリフトグラフをプロット全範囲をプロットポイント密度マップをプロットサイズグラフをプロットある粒度を別の関数としてプロットします。ある画像データを別の画像データの関数としてプロットし、関係を検索します。プラグイン '%s' は意味のあるデータを返しませんでした。プラグイン '%s' はファイルの読み込みを実装しません。プラグイン '%s' はファイル保存を実装しません。プラグイン '%s' はゼロ以外の終了状況を返しました: %d。プラグインプロキシは、データ処理やファイルの読み込み/保存モジュールを装って、データに対して外部プログラム(プラグイン)を照会、登録、実行できるモジュールです。プラグインプロキシはインタラクティブとして実行する必要があります。パワーポイントスペクトロスコピーポイントスペクトロスコピーは、グラフに点スペクトルを抽出します。ポイントタイプポイントタイプ:Point chargeポイント密度マップポインタツールは、ポインタの下の値を読み取ります。ポイントポイントプロファイルあたりのポイント数:ポイント: %dPolygon file format (.ply)多項式 (0次)多項式 (1次)多項式 (2次)多項式 (3次)多項式 (4次)多項式 (5次)多項式係数多項式バックグラウンド多項式レベリング…Portable Network Graphics (.png)Portable Pixmap (.ppm,.pnm)Portable document format (.pdf)位置:位置ポジション正正領域ポスト処理電力パワースペクトル密度パワースペクトル密度XYの重み付け:Zの重み付け:パワースペクトルパワー指数(ACF)%sの正規化された強度最小値で埋める前お好み埋めるレベルl前処理された画像前処理ランク変換を使用したローカル コントラストによる画像処理局所部分のコントラストを最大化X スケールを保持保存領域既存のマスクを保持するプリセット名:プリセットCtrl-C キーを押すと、チャンネル、グラフ、または 3D ビューのイメージがクリップボードにコピーされます。Ctrl-F を押すと、最後に使用されたデータ処理関数が、現在のデータに同じパラメーターを使用して実行されます。Ctrl-Shift+F を押すと、最後に使用したデータ処理関数のパラメータダイアログが再表示されます (または、パラメータがない場合は直ちに実行されます)。Esc キーを押すと、ツール ウィンドウが非表示になります。ほとんどのウィンドウで F1 キーまたはヘルプ ボタンを押すと、Web ブラウザでユーザー ガイドの関連部分が表示されます。プレビュープレビューオプションプレビュー数:プレビュー:ファイルを開くダイアログのプレビューは、平面や線分の平準化を適用して表示できます。 プレビューリストの下部にあるスイッチを使用します。Prewittエッジ画像処理プリミティブセルPrinceton Instruments SPE filesPrinceton Instruments camera SPE files.確率プローブ訓練されたニューラルネットワークを使用したデータ処理プロフィールプロファイル%dプロファイル%uプロファイル長さ比水平および/または垂直スキャンラインを読み取るプロファイルツール。プロファイルツールは、選択した線からプロファイルグラフを作成します。プロファイル軸に沿ったプロファイルプログラムメッセージProgressive preview投影エリア投影境界長予想長射出補正射影長方形隆起割合擬似ラプラスPsi HDF4 files (.hdf)タイトルに単位を追加PygwyコンソールPygwy, GwyddionのPythonラッパー。ピラミッドピラミッド(3面)ピラミッド(ダイヤモンド)錐体ピラミッドPython インタプリタエラーPython Scripting InterfacePython インタプリタエラーが発生しました。Python ラッパー コンソール二次スプライン数量レベリング数Quesant files (.afm)RGB合計RHK SM3 files (.sm3)RHK SM4 files (.sm4)RHK SPM32 files (.sm2)RMSRMS(粒状)RMS の粗さRMS 値乱数の根乱数の根:RaランクRaw transformラジアルACFラジアルPSDF放射状プロファイル放射状平滑化放射距離放射状プロファイル %d放射状プロファイル放射状に平滑化ランダム円板ランダム繊維ランダムノイズランダムオブジェクトランダムでこぼこランダム定数ランダム線形ランダムな方向ランダムポイントの順序がサポートされていません乱数化範囲範囲の最大値範囲の最小値範囲:ランクランクフィルタランク変換ランク差ランクフィルター (%.1f %%)ランク変換ランク変換…XYZ データのラスタライズ画像にラスタライズXYZ データを画像にラスタライズします。比率α = T/L生データ ファイル生データのインポートは対話形式で実行する必要があります。再表示最後を再表示再初期化回転をリセット反転未加工ファイルの読み取り値を読み取る読み込み値ツールは、選択した点を <i>z</i>=0 平面に通るようにデータをシフトできます。値を読み取りツールには、ローカルファセット法線も表示されます。水平および垂直プロファイルの読み取り複数の画像から同時にラインを読み取るマウス カーソルの下の値を読み取るチャンネルを読む…ファイルの読み取り中…高速スキャンファイルの読み取りはまだ実装されていません。ATC SPMxFormat データをインポートします。Digital Micrograph DM3 and DM4 ファイルをインポートします。Flexible Image Transport System (FITS) データをインポートします。ISO 5436-2 OpenGPS .x3p データをインポートします。Nano-Solution/NanoObserver .nao データをインポートします。Sensofar PLUx データをインポートします。Gwyddion シンプルフィールドファイルを読み取り、エクスポートします。Gwyddion dumb dump ファイルの読込や出力をします。実部力勾配を再計算する再計算されたデータ再計算された MFM データボリューム データのディメンションまたは値の範囲をキャリブレーションします。再調整されたデータスキャンの横軸または値の範囲を再調整します。Rect四角四角形長方形赤やり直す最後に元に戻した操作をやり直すビニングによるサイズの縮小参照平面較差登録された関数:登録 モジュール登録正規化されたフィルタ規則化された画像デコンボリューション。関係関連データイメージ サイズとの関係緩和タイプ高さを緩和中…格子を緩和中…リリース%sRemote Control削除多項式背景を削除マーク・スカーズで最後に使用された設定で実行されるツールボックスの傷跡を削除します。スポットを削除する存在しないファイルのエントリを削除する画像の枠に接している粒子を削除するフィルタリングでグラフノイズを除去します。個々の粒を除去する(マスクの連続部分)データからマスクを削除するグラフカーブからノイズを除去XY 平面から外れ値を削除する多項式で背景を削除する画像処理データをデータから削除するエクスポートしたイメージから白い枠線を削除するフラクタル補間を使用してマスクの下のデータを削除します。マスクの下のデータを削除し、ラプラス方程式解で補間します。すべての XY 平面から外れ値を削除表面のレンダリング…ベクター(SVG、PDF、EPS)とピックスマップ(PNG、JPEG、TIFF、WebP、PPM、BMP、TARGA)の画像にデータをレンダリングします。一部のフォーマットへのエクスポートは、GDK に依存しており、その他のライブラリはインストールに依存する場合があります。Renishaw WiRE data files (.wdf)繰り返しRepeat Lastファイルを置き換えますか?バグの報告:必須タグ %uまたは%uが見つかりませんでした。必須のタグ %uが見つかりませんでした。復元リサンプリング正方形のサンプルに対する非 1:1 アスペクト比を持つデータのリサンプルピクセルサイズへのリサンプリングリサンプリングされたデータ指定したピクセル サイズにデータをリサンプリングします。カラーバーのスペースを確保する範囲をリセット残渣: %g
解像度復元結果結果 A結果 B結果の単位結果タイプ結果タイプ:結果の書式設定結果サイズ結果結果
Rev水平力サンプル内のビットを反転する前の値に戻す回転円弧回転球球を回転中…周期値を再ラップするひし形尾根リングRms (Rq)行二乗平均平方根ルート平均平方根 (RMS) 勾配プロファイルの二乗平均平方根 (RMS) 波長RMS粗さRMSうねり回転すべてのポイントを回転する角度で回転任意の角度で回転データを時計回りに 90 度回転するデータを反時計回りに 90 度回転回転 (R)データの回転回転粗さ粗さパラメータ平均粗さまるめ真円度真円度ライン背景行レベルリングのプレビューデータ行/列統計行/列統計関数ツール、平均値、中央値、最大値、最小値、RMSなどRq (RMS)Rt全実行部分実行プラグイン %sの実行計算を実行しています…修正しています (%d アクティブな粒子)…RzS94 STM files (.s94)SEMイメージSEM画像シミュレーション…SIS files (.sis)SPIP ASCII files (.asc)SPML files (.xml)SPMLab floating-point files (.flt)STP files (.stp)Square画像カラーグラジエントモードへ光源モードへオーバーレイモードへ対称対称に同じエリアSamples are signed3D ビューをイメージに保存する距離テーブルの保存面ベクトルを保存ファイルの保存フィッティングレポートを保存フラクタル寸法を保存粒子統計量の保存粒子情報の保存メタデータを保存パラメータの保存ピークパラメータの保存Python スクリプトの保存方法結果をファイルに保存粗さのパラメータを保存統計量の保存テーブルの保存テラスフィット調査を保存テラステーブルを保存結果をファイルに保存するスクリプトの保存 (Ctrl-S)スクリプトを名前で保存 (Ctrl-Shift-S)テーブルをファイルに保存する%sを使用して保存。「%s」への3Dビューの保存に失敗しました「%s」の保存に失敗しましたScalable Vector Graphics (.svg)スケールスケールアダプティブスケール・スペースアダプティブ比でスケーリングデータのスケーリングサイズを自動スケールするスケール値の範囲 (V)全体を表示 (S)スケーリングされたデータサイズでスケーリング幅でスケーリング任意の係数でデータをスケーリングします。スキャンラインの不一致スキャン サイズ のヘッダー フィールドはデータと重複します。ファイルをスキャン (%uカーブ).スキャン中…傷跡傷跡の種類シャウムスコアセットマスク検索 (開始)検索 (終了)検索が取り消されました相関を使用した詳細の検索詳細検索相関関係を使用して、別の画像の詳細を検索します。極大値を探しています...2 番目のXYZデータ:第2画像2 番目の_sourceデータ第二方向2 番目の画像2 番目に近い距離2 番目のベクトルセカンダリ データ 項目にプライマリ データがありませんセクション%s行%uで終了しましたが、開始されたことはありません。Section %s ended at line %u instead of %s.Section %s started at line %u before %s ended.セクション:セグメント%uWatershedによる領域Watershedで領域分割 セグメンテーションセグメント化された距離セグメント化されたランダムWatershedで分割したセグメントSeiko files (.xqb, .xqd, .xqt, .xqp)色を選択領域の手動選択下のサンプル領域を選択選択した領域選択されたライン選択したφ選択されたθ選択選択範囲マネージャー半円Sensofar PLUx files (.plux)Sensofar PLu files (.plu, .apx)Sensolytics text files (.dat)分離位相曲線の色を設定するゼロ設定プレビュー設定デフォルトとして設定マスクを選択に設定する平面をゼロに設定する次のように選択を設定します:選択した項目を既定として設定現在のビュー設定を既定として設定する全範囲に設定マスク適用マスク解除設定ファイル '%s' を読み取ることができません: %s

保存された設定の損失を防ぐために、更新は修復または削除されるまで行われなくなります。いくつかのエッジ検出法(LoG、キャニー、およびいくつかの実験的なもの)でが画像を作成します。明るさ:データの陰影作成陰影作成形状シャープマスク移動マスク移動画像に対してマスクを移動させる。最大データ値をゼロにシフト平均データ値をゼロにシフト最小データ値をゼロにシフトするZ 平面の値をゼロにシフトするShifted fieldShifted field differenceZレベル = %dの場合は 0 にシフトZ カーブの値を、定義された位置で 0 にシフトします。Shimadzu files表示軸表示枠を表示グリッド表示ラベル表示選択を表示するボリューム データの 3D ビューを表示する適応カラーマップで差を表示カラーバーを表示ファイル メッセージの表示コントロールをすべて表示格子の表示方法読み込み可能なファイルのみを表示表示された部分の範囲はゼロです。表示される平面:表示範囲 (%.*f - %.*f) %sボリューム データの 3D像を表示縮小境界から縮小サイズサイズ:Siemens starシグマZレベルでシグマフィット:シグナル符号あり16 ビットワード符号あり32 ビット ワード符号あり64 ビット ワード符号付きバイトシリコン 7x7自己相関を用いた類似の構造の平均化シンプルなキャリブレーションデータ単純なエラー マップ単純なパラメータ高さ像から簡単なSEM画像シミュレーション。高さ像から簡単なSEMシミュレーションシンプルなXYZデータレベリング…データ フィールドを使用した単純な算術演算。ボリュームデータを使用した単純な算術演算。グレーティング測定に基づく単純なエラーマップ単純なエラーマッピング2 つのデータ フィールド (またはデータ フィールドとスカラー) を使用した単純な操作。計測に対するPID効果のシミュレーションSimulate stray field above current line平行磁気媒体の上の磁場をシミュレートする水平力チャンネルの形状アーチファクトをシミュレートWatershedをシミュレート…シミュレーションパラメータ電流線磁場のシミュレーション垂直媒体上の磁場のシミュレーション別のレベルの磁場z成分変化のシミュレーション並列磁気メディアのシミュレーションSincSingle merged abscissaSingle value evolutionサイズSize _A (dir. left)Size _B (dir. right)傾斜歪みスライスボリュームデータSlope傾斜分布勾配角度分布スロープ導出分布傾斜分布傾斜図斜面最も遅い減衰方向最も遅い減衰の長さ滑らかな曲がったステップ滑らかな円錐スムーズな接続極座標での平滑化スムーズなピラミッド滑らかなピラミッド(3面)滑らかな傾斜ステップ極座標でイメージを滑らかにします。平面にスナップSobel輪郭画像処理保存されていないデータがあります。
%s
本当に終了しますか?ディスク上のデータファイルを変更しています。空間反射範囲指定しきい値を指定結果単位を明示的に指定する単純なキャリブレーションデータを指定します。単位を指定単位を指定:スペクトルスペクトルデータはファイルの終わりを越えて開始されます。スペクトル合成スペクトロスコピースペクトロスコピースペクトロスコピーのヘッダーが短すぎます (%lu バイトのみ)。分光法ツールは、点分光法データを表示し、グラフ→フィットFD曲線を使用して後で分析することができるスタンドアロングラフに抽出します。球スプラインパスXYZ データの分割方向に基づいて XYZ データを分割分割されたデタッチされたデータ ファイルはサポートされていません。FWD分割低周波数と高周波数に分割REV分割画像を低周波数と高周波のコンポーネントに分割します。スポット削除ツールは、選択したアルゴリズムを使用して、データの小さな部分 (ズームされたビューに表示) を補間します。正方形矩形波スタックは実行可能ではありませんステージエラーマップステージエラーマッピング星開始オフセット開始行開始 開始半径完全な計算開始…部分的な計算開始統計関数統計量統計量ツールは、マスク、長方形の選択、または両方の交点によって対象領域を制限することができます。統計関数ツールは、データの選択された部分の1次元統計関数(高さ分布、相関、PSDF、ミンコウスキー機能)を計算する。統計量統計ツール。ステップ(片側)ステップ(両面)ステップ拡大ステップ拡大:ステップ検出ステップ検出しきい値ステップ検出しきい値:ステップの高さ (負)ステップの高さ(正)ステップStereolitography STL (.stl)スティッチングオフセットを使用してスティッチング原点からのオフセットに基づいて複数の画像を貼り合わせます。パスを直線にパスに沿ってまっすぐにする直線になったStray Field Plane Shift不適切なコンマStray field consistency check不適切なシンボル%d色範囲をデータの一部分に合わせる文字列値が有効な UTF-8 ではありませんストライプ%u: Stripe currentストライプ強い構造要素の構造化上付きFFT マスクから四角形を減算するFFT マスクから楕円を引く事前に平均値を差し引くマスクから選択範囲を引く順序ベースのアルゴリズムを使用して背景を減算します。多項式で背景を減算してレベリングします。ボリュームデータ平面の要約ボリュームプロファイルの要約平面の要約プロファイル要約ボリューム データのプロファイルをチャネルに要約します。ボリュームデータ平面を プレーンをグラフにまとめます。Sun raster image (.ras)同一オブジェクトの複数の画像の超解像抑制SupresSurf files (.sur)表面表面プロファイル表面再構成表面積定義された先端による表面拡張表面再構成定義された先端による表面の再構成表面勾配Surfstand SDF files, binary (.sdf)Surfstand SDF files, text (.sdf)アンケート独立度で測量を実行することはできません。ボリューム軸の入れ替えX 軸と Y 軸を入れ替える軸の入れ替えボリュームデータの軸を入れ替えます。ユーザーの選択に基づいて連続データのフェーズを入れ替えるシンボル対称すべて対称に多重対称T2測定モードは実装されていません。タブTAB文字TARGA (.tga,.targa)TFの高さTF normTF幅TIFF (.tiff,.tif)TIFF and BigTIFF images with high depth (.tiff)TIFF ディレクトリ%luが予期せず終了しました。TIFF ディレクトリ %uは、複数の競合する ZTC 座標に割り当てられます。しきい値光源切り替えタグ%uサイズは%uバイトで、タグマーカーとサイズを保持するには十分ではありません。タグ%uサイズは%uバイトで、タグマーカーを保持するには十分ではありません。タグ%uサイズは%uで、コンテンツを保持するには不十分です。タグエントリの種類は、グループでもデータでもありません。不明なタグ%uにタグ マーカーがありません。タグタイプは、マーカー'%s'で始まりません。データ d から結果単位を取得します%dターゲットグラフターゲットグラフ:スキャンラインごとテントテラスリストテラスの不一致テラス(理想的)Tescan TIF SEM image (.tif)Tescan two-part SEM image (.hdr + .png)四面体テキストテキスト データの値 (%u) が、サイズ (%u) に対応する値より少ない数です。テクスチャテクスチャアスペクト比テクスチャの方向テクスチャ方向インデックスかやぶき屋根ベアリング比曲線OME TIFF ヘッダーは、ファイル内の TIFF ディレクトリよりも多くの TIFF ディレクトリを指定します。ファイルは既に '%s' に存在します。 置き換えると内容が上書きされます。最初の行に含まれる項目が多すぎます。名前 '%s' が無効です。サンプルごとのビット数 %dは、このファイルの種類に対して無効またはサポートされていません。データ ファイル値の%d
%dする平面の数とは異なります。パラメーター ファイルを読み込めません。データの種類が不明です。 開発者に報告してください。パラメータ '%s' の値が無効またはサポートされていません。フィルタリングする粒子はありません。パス選択はありません。Thermicroscopes SpmLab filesThermo Fisher SPC files細い線マスクを細くするこのツールは、インストールされていないように見える、動作する%sの種類のレイヤーを必要とします。 インストールを確認してください。このバージョンの Gwyddion は、OpenGL のサポートなしで構築されました。3コンポーネント モデル3 点レベル3つの選択した点を通して合った平面を差し引くことによってデータをレベリングします。しきい値しきい値サイズをデータのピクセルサイズに合わせるタイルチルト指定した量で傾ける指定した量だけ画像を傾けます。時間時系列の順序が間違っています。時間の値は、DOUBLE 型にする必要があります。ティップ領域関数チップ拡張ティップ異方性ティップ先端半径Tip magnetizationティップ回転ティップ傾斜チップ確実性マップヒント操作:拡張(畳み込み)、浸食(再構成)および確実性マップ。先端半径の変化タイトルチャンネルの画像を pixmap グラフィック形式(PNG、TIFF、JPEG、..)にエクスポートするには、ファイル→名前を付けて保存してこの形式で保存するだけです。ここまで:X軸の対数切り替えY軸の対数切り替え指定されたマトリックス ディメンションの DataList アイテムが多すぎます。ドキュメント情報が短すぎます。パラメーター情報が短すぎます。データ処理 → 粒子→ フィルタを使用すると、小さすぎる粒度をフィルタで除外できます。ツールツールボックス エディターツールボックス グループツールボックス項目ツール最上位の要素は '%s' ではありません。トポグラフィートポグラフィとFlexgirdトポグラフィーとSPSトポグラフィーとSPS (スクリプト)総粒子体積 (ラプラス)総粒子体積 (最小)総粒子体積 (ゼロ)ポイント数合計:総投影面積 (絶対値)総投影面積 (相対値)総投影境界長さトレーリングガベージ画像処理のためのNN訓練トレーニングトレーニング分類器…トレーニングエラートレーニングステップ:トレーニングはキャンセルされました。訓練中…粒子をマークするロジスティック回帰を訓練します。Translatable title伝達関数サイズ伝達関数伝達関数推定明示的な関数形式でフィッティングし伝達関数を推定します。グラフ軸を対数スケールに変換する表面を指定された統計的特性に変換します。翻訳者三角Triangle down左三角形Triangle rightTriangle upタブ三角測量…TriangulationTriangulation type最大値をトリム最低値をトリムトリム最小値トリム最大値トリム後の平均トリム平均トリムした平均フィルタリングとレベリング。トリムしたレベリングとフィルタリング範囲指定された変位平均切り捨てられたヘッダー行。チューリングパターン2つのガウス(PSDF)2 次元 CWT (連続ウェーブレット変換)。2 次元 DWT (離散ウェーブレット変換)2 次元 FFT (高速フーリエ変換) 座標 (対数周波数、角度) に変換されます。2 次元 FFT (高速フーリエ変換)。2次元FFTフィルタリング両面タイプ不確実性 z取り消しアクションを複製フィルタ マスクへの最後の変更を元に戻す予期しないデータ項目の種類予期しないイメージ ブロック。結合一意の ID レコードが短すぎます。Unisoku files (.hdr + .dat)ユニット コード %dが無効か、サポートされていません。単位ユニバーサル不明 XYZ %d不明なチャネル %d不明なデータ型 '%s' です。不明なエラー不明なファイルタイプヘッダー: ‘%s’。不明な形式のバージョン%c。不明な機器番号%u。不明な行%d不明な変数型%u。不明なボリューム %d非マーク未解決の識別子符号なし 16 ビットワード符号なし 32 ビットワード符号なし 64 ビットワード符号なしバイトサポートされていないサンプル形式無題上互換性のあるデータの X と Y すべて更新上側上限しきい値上限しきい値:境界を使用する表示範囲を使用小数点記号としてピリオドを使用するすべての画像の1番目のマスクを使用アイコン一覧:マスクを使用イメージ全体を使用する (マスクを無視)局所平面フィッティングを使用使用されたキャリブレーションデータ:ユーザーユーザー定義ユーザー指定VSymVTK structured gridVTK structured grid (.vtk)値値 (最大)値のスケール値の分布値の範囲値系列値は、FLOAT タイプでなければなりません。値シフト値の単位:値値は高さ (メートル) にする必要があります。
次の結果はあまり意味がありません。変数 '%s' は、無効なデータまたは存在しないデータを参照します。Variationバージョン垂直垂直Prewittグラデーション画像処理垂直Sobelグラデーション画像処理垂直位置垂直プロファイル%d垂直サイズ表示ログを表示…眺望:値と傾斜分布のエントロピー計算を視覚化します。面の向きを視覚化、マーク、測定します。体積ボリュームデータVolume TFボリューム X グラフボリューム Y グラフボリューム Z キャリブレーションボリューム Z グラフボリュームデータレイヤーを3Dデータ化するWITec ASCII files (.dat)WITec files (.wit)WItec Project files (.wip)WSF ASCII files (.wsf)WSxM curve files (.cur)WSxM files (.tom, .top, .stp)Warning: Colorful images cannot be reliably mapped to meaningful values.Wavefront geometry definition (.obj)波うねりうねり平均うねり最大高さ脆弱WebP (.webp)WelchGwyddion をディレクトリ引数で実行すると、このディレクトリを示すファイルを開くダイアログが開きます。白幅幅幅:WienerフィルターWin32 protocol
WinSTM files (.stm)ウィンドウ幅:ウィンドウ高さ:Windows or OS2 Bitmap (.bmp)ワイヤフレームのしきい値ピクセル中点値のラップ角度などの周期値を別の範囲にラップします。データ項目 ID が正しくありませんイメージヘッダーのサイズが正しくありません:%uではなく%u。Base64 エンコードデータのサイズが間違っています。Wyko ASCII export files (.asc)Wyko OPD files (.opd)XX係数X Pixmap (.xpm)X周期:X単位X補正X差X方向XドリフトXドリフト:X エラー %dX グラフ y: %d z: %dX 位置X位置:X 範囲: %.*fから%.*f %s
X slice at %.*f%s%s (#%d)X スパン: (%.*f - %.*f) %sX 接線X不確実性X不確実性 %dX ビューX(反転)X 軸XコンポーネントX範囲X/Y比のしきい値X11 protocol
XML フッターはデータと重なっています。XML 解析に失敗しました: %sXYデノイズXY ポイントは通常のグリッドを形成するため、補間は必要ありません。XYZXYZ チャネルXYZ データXYZ データXYZ データ ファイル (.xyz)数値の不安定性のため XYZ データの正規化が失敗したか、中断されました。方向に基づいて XYZ データが分割されます。XYZ データ:XYZ text data (.xyz)YY 係数Y補正Y 差Y方向YドリフトYドリフト:Y エラー %dX: %d z: %dでの Y グラフY周期:Y位置Y位置:Y slice at %.*f%s%s (#%d)Y スパン: (%.*f - %.*f) %sY 接線Y不確実性Y不確実性 %dY ビューY(反転)Y 軸Y成分Y範囲はい[既定に設定]ボタンを使用して、特定の 3D ビュー設定を既定に設定できます。お気に入りの GL マテリアルは、マテリアル エディタでデフォルトとして設定できます: [GL マテリアル→編集] をクリックします。 既定のマテリアルは太字で表示されます。お気に入りの偽色グラデーションは、グラデーションエディタでデフォルトとして設定することができます: カラーグラデーション→編集します。 既定のグラデーションは太字で表示されます。ZZ範囲Z軸のキャリブレーションは失われます。Z 軸の値Z補正ZドリフトZドリフト:Z エラー %dZフィッティング:X の Z グラフ: y %d: %dZレベル:%d、Z単位:%sZ位置:ZスケールZ シフトZ slice at %.*f%s%s (#%d)Z スパン: (%.*f - %.*f) %sZ不確実性Z不確実性 %dZ ビューZ(反転)Z軸キャリブレーションが異なるZキャリブレーションアクション:Zキャリブレーション曲線Z範囲ZTC 座標 (%u,%u,%u) は、指定された範囲の範囲外です。Zemax grid sag data (.dat)ゼロゼロ交差ステップ検出平均値をゼロにゼロベース体積ゼロ交差エッジ検出。ゼロ交差ステップ検出画像処理ズームズーム 1:1ズーム 1:1ズームインマウスの選択による拡大ズームアウト曲線全体にズームアウトズーム:Zunc low bound %dZunc up bound %dACF横座標Activation追加マスク接着力すべてのカーブ境界のみを変更する環境光量振幅角度互換性のあるすべての画像に適用アスペクト比アスペクト比:自動自動切り抜き自動Zスケール自動的に未知のファイルの生データインポートを提供平均一致ポイント平均反復平均スペクトル平均半径積み重なりを回避背景色:バックグラウンドタイプ境界高さレベルベース振幅ベース振幅:ベース周波数ベース周波数:ベース平面:バイアスバイナリデータ太字Borderボーダー幅:Border:両方両方向境界処理キャリブレーションデータプレビュー変更円サイズクリア閉じる接触弾性率コピー曲率カーブデータデータ処理追加先データ遅延数値区切り記号はカンマです変形削除密度マップ微分(D)詳細画像検索の詳細長さの差拡散光次元単位:方向表示:距離タイプDistribute分布Divisor:ドキュメント履歴…下詳細画像をダウンサンプリング円を描画描画ツールしずくサイズエッジシフトエッジ幅編集終了マーカーの長さ:各レベルのシグマを見積もり各レベルの見積もりサイズExchange constant線形スキューの排除実行元画像をすべて含むようにエクスポート生データのエクスポート数式数式:ExteriorタイプExteriorタイプ:画像抽出グラフに抽出FFTマスクエディタカラーバーFeature記号フィールド区切り文字ファイル(F)フィルFilm厚さフィルタータイプフィルター:Fit シグマ固定フィラー値固定解像度Fixed units:Fluxフォントサイズ:フォント:フレーム厚さ:関数タイプGapサイズギャップ厚みギャップ:ガウス FWHMガウシアンぼかしグラジエントグラフ曲線グラフ:グラフ:重力:成長推定推定パラメータHardしきい値高さ高さ緩和高さ:Hessian隠れノード:マスクを隠す水平方向水平方向の多項式次数水平移動水平サイズ水平サイズ:水平:HueオフセットHurst指数ID:理想的な応答理想的な応答:プレビュー勾配(θ)グラフ高さ情報Inhibitor強度初期温度内部スケールバーすぐに適用すぐに更新積分(I)Integration radius積分ステップ内挿方法内挿タイプ内挿タイプ:交差マスク逆変換反転反転マッピング高さ逆数2 番目カーブを反転斜体L-curve表示ラベル:ラプラシアン水平水平スケール水平単位格子格子タイプ:左長さ長さしきい値:長さ:光源 φ:光源Like Current Imageラインとテキストの色:ラインタイプ:LoG畳み込み印加負荷Locate対数スケール下限Magnetic chargeマークマスクマスク色マスク色:空の領域をマスクマスクプレビューマスクピクセルサイズを揃える材質:最大繰り返し数:最大繰り返し:最大次数最大次数:中央地値溶解次と結合方法方法:最小最小半径Mixモードモード:モデル:モンテカルロ時間ステップMore…複数の画像使用隣接線:新規新規グループ新規項目次次のヒントノイズタイプ垂直力正規化行数ガウシアン数クラスタ数:回数側面の数ステップ数値の個数波形の数ポイント数正射影プロジェクション他の区切り文字出力平面の高さオーバーレイオーバーレイ - 光なしPSDF放物型性パターンパーセンテージ物理 1:1物理的に正方形ピクセル半径平面サイズPlot Initsグラフプロットマスクをプロットポイントサイズ:ポイント多項式の次数多項式の次数:位置PrecisionPrecision:RMSを保存成長による粒子の融合を防ぐストライプをプレビュー前のヒントプローブタイプ比例(P)QualityQ値Q値:量量:RMS半径再計算イメージ微調整正則化パラメータ緩和ステップ緩和ステップ:Remanent magnetization削除する外れ値を削除名称変更レンダリング現在のイメージを置換リセットティップのリセット分解能結果バイト単位でビットを反転反転レイアウト右定規元画像と同じサイズに同じ次数同じ解像度サンプルサイズ画像の保存スケール入力に比例してスケーリングスケール:スケール:スキャンライン検索範囲第2フィルター分離曲線プロファイルを分離SeparateスペクトルSeparate uncertainty分離選択形状形状マスクを表示プロファイルを表示起動時にヒントを表示シグマシグマ:シグナル:一つの画像サイズ:スキューたるみ傾きスロープ幅コントロール ポイントにスナップ原点にスナップSobelデリバティブSoftしきい値空間周波数ストライプへ分割バネ定数バネ定数:正方形ビニング現在のイメージから開始Stationarityスケール_Step検出カーネルステップ検出カーネル:StickingStripe幅下付き減算マスク提案平均化の代わりに合計値低減方法表面モビリティ:現在の画像から次元を取得絶対値を取る温度テンプレートテキストデータテキスト:厚みしきい値Tickの長さ:時間しきい値:ティップ形状先端の曲率半径タイトルタイトル:許容範囲許容範囲:Top fractionロジスティック回帰を訓練タイルに変形変換タイプ変形後透明透明背景空の罫線を切り捨てTrim fraction対称的なトリム切り落とし2次元分布タイプタイプ:取り消しUniaxial anisotropyカラーグラデーションを解除上更新プレビュー更新上限大きな画像をアップサンプリング訓練された回帰を使用値スケール:値の単位値の単位:ベクター垂直配置:垂直方向垂直ギャップ:垂直方向の多項式次数垂直移動垂直サイズ垂直サイズ:垂直:Volumeデータ波形Waveletタイプ重さ幅幅:ウィンドウタイプウィンドウタイプ:ライン内X中心X補正係数X補正係数:XデータX変位Xドリフト:Xの取得方法:_XラベルXオフセットXオフセット:XピクセルサイズXピクセルサイズの不確実性X解像度X:X不確実性:X範囲:X:XYZデータY中心Y補正係数Y補正係数:YデータY変位Yドリフト:Y from:_YラベルYオフセットYオフセット:YピクセルサイズYピクセルサイズの不確実性Y解像度Y:Y不確実性:Y範囲:Y:Z補正係数Z補正係数:ZデータZ from:Zレベル:Zオフセット:Z範囲Z解像度Z shift byZ:Z不確実性:Z値:Zスケール(サンプルごと)Z:算出付近のグラフを拡大拡大:自動デフォルトフィッティング基本の左右角度データとしてビット下なし位置%dのバイトバイトなしキャリブレーション中心なしカラーグラデーション通常数jaデータ オフセットデータ範囲データ型パラメーターなし度チェス盤距離マンハッタン距離ユークリッド八角形八角形距離 4,8八角形距離 8,4指数ガウスべき乗数Skew Normal三角形均一ドリフト算出エラー見積もりBorder空値埋めLaplaceMirrorPeriodicフィールド終了ガウシアン開くフォーマット フラグフォーマットバージョン粒子量画像の深さCairo(五角形)立方六角形単斜晶系直方晶系ペンローズ (中央)ペンローズ(頂点)ランダム菱面体Snub square(三角形x3 + 正方形x2)正方形正方晶系三角形三斜晶系Truncated square(正方形+八角形)左長さなしlibpng エラーが発生しましたlibpng 初期化エラー (%s)なし点線実線マッチング多項式マジックページヘッダー最大結合なし最小3D-brick%dが%sに存在しませんチャネル%dが%sに存在しませんグラフ%dが%sに存在しませんスペクトル%dが%sに存在しません表面%dが%sに存在しません利用できません
1 つのオブジェクトが見つかりました
%d 個のオブジェクトが見つかりましたプロットハイブリッドプレースホルダーポイントpxpx<sup>-1</sup>px<sup>2</sup>終端参照カウントは%d(%s)残りのツール解像度右ラインなし新規ストック項目偶数なし奇数正方形tan β<sub>0</sub>なしすべてのファイルに初期値に上vdW: 円錐vdW: 円柱vdW: オフセット球vdW: 放物線vdW: ピラミッドvdW: 半球vdW: 球vdW: 錐台vdW: 2 つの球変更隠す保存スケーリング設定する算出フィッティング読込クイックフィッティング格納訓練するなしx スケール パラメータx 軸ドリフトy スケールパラメータy 軸ドリフトz レベルz スケール パラメータz 軸ドリフトzlib初期化はエラー %dで失敗しました。α:θθ = %.2f deg, φ = %.2f degθ:πφφ:χ<sup>2</sup> 結果:ϑ…