-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpanorama.html
1418 lines (1402 loc) · 167 KB
/
panorama.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>鲁虺搜索引擎网 http://search.luhui.net 鲁虺搜索引擎群 全球最好网真互动式种源文化传播交流索引平台 lǔ 鲁 huǐ 虺 wén 文 huà 化 wǎng 网search手机search网卡鲁虺search搜索,鲁虺search资源搜索,鲁虺search资源导航,鲁虺search搜索导航,鲁虺search链接,鲁虺search下载,鲁虺搜索</title>
<meta name="keywords" content="鲁虺search搜索,鲁虺search资源搜索,鲁虺search资源导航,鲁虺search搜索导航,鲁虺search链接,鲁虺search下载,鲁虺搜索" />
<meta name="description" content="鲁虺search资源搜索导航," />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="renderer" content="webkit" />
<link rel="shortcut icon" href="/favicon.ico" />
<style>
<!--
.logo{width:275px;height:71px;margin:9% auto 30px}
.search-form{width: 100%;text-align: center;}
.search-form .submit{display:inline-block;color:#fff;background-color:#39b29d;border-radius:2px;height:40px;line-height:27px;font-family:Arial,Microsoft YaHei;font-size:16px;padding:0 20px;border:none;cursor:pointer;letter-spacing:4px;}
-->
</style>
</head>
<p align="center">
<img class="logo" title="鲁虺搜索引擎群聚合搜索" src="static/images/ai.gif"><section class="search" id="bt-search">
</p>
<div class="search-form" id="tijiao">
<input name type="text" id="wd" autocomplete="off" value placeholder="鲁虺联合搜索引擎群,海量资源赶快上车!" style="width: 500px; height: 32px; font-size: 16px; outline: 0; border: 1px solid #cdcdcd; margin-bottom: 30px; padding-left: 5px; padding-right: 5px; padding-top: 3px; padding-bottom: 3px">
<input type="submit" value="搜索" onclick="submit();return false" class="submit">
<script type="text/javascript">
function submit() {
var s = document.getElementById('wd').value;
if(s.length<1){
alert('请输入关键词');return false;
}
window.open("http://search.luhui.net/search/?q=" + s,"_self");
}
</script>
</div>
</section>
<div class>
<p align="center">本站域名luhui.net,三秒钟就能记住哦</p>
<div id="mw-content-text" lang="zh-Hans-CN" dir="ltr" class="mw-content-ltr" style="direction: ltr; color: rgb(32, 33, 34); font-family: sans-serif; font-size: 15.008px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">
<div class="mw-parser-output">
<div role="note" class="hatnote navigation-not-searchable" style="font-size: small; padding-left: 2em; margin-bottom: 0.8em; margin-top: 0.8em;">
<a title="Wikipedia:消歧义" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=消歧义">
<img alt="Confusion grey.svg" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Confusion_grey.svg/24px-Confusion_grey.svg.png" decoding="async" width="24" height="18" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Confusion_grey.svg/36px-Confusion_grey.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Confusion_grey.svg/48px-Confusion_grey.svg.png 2x" data-file-width="260" data-file-height="200" style="border: 0px; vertical-align: middle;"></a> <b>提示</b>:此条目的主题不是<b><a class="mw-redirect" title="全息摄影" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=全像攝影">全息摄影</a></b>。</div>
<div class="thumb tright" style="margin: 0.5em 0px 1.3em 1.4em; width: auto; background-color: transparent; clear: right; float: right;">
<div class="thumbinner" style="border: 1px solid rgb(200, 204, 209); padding: 3px; background-color: rgb(248, 249, 250); font-size: 14.1075px; text-align: center; overflow: hidden; width: 242px;">
<a class="image" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=File:Estrela_Março_2010-21a.jpg">
<img alt="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Estrela_Março_2010-21a.jpg/240px-Estrela_Março_2010-21a.jpg" decoding="async" width="240" height="483" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/be/Estrela_Mar%C3%A7o_2010-21a.jpg/360px-Estrela_Mar%C3%A7o_2010-21a.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/be/Estrela_Mar%C3%A7o_2010-21a.jpg/480px-Estrela_Mar%C3%A7o_2010-21a.jpg 2x" data-file-width="2818" data-file-height="5670" style="border: 1px solid rgb(200, 204, 209); vertical-align: middle; background-color: rgb(248, 249, 250);"></a><div class="thumbcaption" style="border: 0px; line-height: 1.4em; padding: 3px; font-size: 13.2611px; text-align: left;">
<div class="magnify" style="float: right; margin-left: 3px; margin-right: 0px;">
<a class="internal" title="放大" style="text-decoration: none; color: rgb(6, 69, 173); display: block; text-indent: 15px; white-space: nowrap; overflow: hidden; width: 15px; height: 11px; user-select: none; background: transparent) url('https://zh.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e')" href="http://search.luhui.net/search/?q=File:Estrela_Março_2010-21a.jpg">
</a></div>
垂直的全景图</div>
</div>
</div>
<p style="margin: 0.5em 0px;"><b>全景图</b>(<span lang="en">panorama</span>)是一种广角图,可以以画作、照片、视频、三维模型的形式存在。全景图这个词最早由爱尔兰画家罗伯特·巴克提出,用以描述他创作的<a title="爱丁堡" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=爱丁堡">爱丁堡</a>全景画。现代的全景图多指通过相机拍摄并在电脑上加工而成的图片。</p>
<div id="toc" class="toc" role="navigation" aria-labelledby="mw-toc-heading" style="border: 1px solid rgb(162, 169, 177); background-color: rgb(248, 249, 250); padding: 7px; font-size: 14.2576px; display: table;">
<input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="margin: 0px; direction: ltr; position: absolute; opacity: 0; z-index: -1; display: none;"><div class="toctitle" lang="zh-Hans-CN" dir="ltr" style="text-align: center; direction: ltr;">
<h2 id="mw-toc-heading" style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border: 0px; font-size: 14.2576px; font-weight: bold; font-family: sans-serif; line-height: 1.3; display: inline;">
目录</h2>
<span class="toctogglespan" style="font-size: 13.4021px;">
<label class="toctogglelabel" for="toctogglecheckbox" style="cursor: pointer; color: rgb(6, 69, 173);">
</label></span></div>
<ul style="list-style-image: none; list-style-type: none; text-align: left; margin: 0.3em 0px; padding: 0px">
<li class="toclevel-1 tocsection-1" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#全景画">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
1</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景画</span></a></li>
<li class="toclevel-1 tocsection-2" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#全景摄影">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
2</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景摄影</span></a><ul style="list-style-image: none; list-style-type: none; text-align: left; margin-left: 2em; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; padding: 0px">
<li class="toclevel-2 tocsection-3" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#球面全景">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
2.1</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">球面全景</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-4" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#環景簡介">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
3</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景简介</span></a></li>
<li class="toclevel-1 tocsection-5" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#各種特殊攝影介紹">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
4</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">各种特殊摄影介绍</span></a><ul style="list-style-image: none; list-style-type: none; text-align: left; margin-left: 2em; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; padding: 0px">
<li class="toclevel-2 tocsection-6" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#寬景">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
4.1</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">宽景</span></a></li>
<li class="toclevel-2 tocsection-7" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#環景">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
4.2</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-8" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#全景">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
5</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景</span></a></li>
<li class="toclevel-1 tocsection-9" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#環景的拍攝方法">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
6</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景的拍摄方法</span></a></li>
<li class="toclevel-1 tocsection-10" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#環景的拍攝工具">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
7</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景的拍摄工具</span></a><ul style="list-style-image: none; list-style-type: none; text-align: left; margin-left: 2em; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; padding: 0px">
<li class="toclevel-2 tocsection-11" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#魚眼鏡頭的相關產品型號">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
7.1</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">鱼眼镜头的相关产品型号</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-12" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#環景的後製軟體">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
8</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">全景的后制软件</span></a></li>
<li class="toclevel-1 tocsection-13" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#電腦上的環景">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
9</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">电脑上的全景</span></a></li>
<li class="toclevel-1 tocsection-14" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#3D動畫上的環景">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
10</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">3D动画上的全景</span></a></li>
<li class="toclevel-1 tocsection-15" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#觀看的軟體">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
11</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">观看的软件</span></a></li>
<li class="toclevel-1 tocsection-16" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#衍生">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
12</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">派生</span></a></li>
<li class="toclevel-1 tocsection-17" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#參見">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
13</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">参见</span></a></li>
<li class="toclevel-1 tocsection-18" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#参考文献">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
14</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">参考文献</span></a></li>
<li class="toclevel-1 tocsection-19" style="margin-bottom: 0.1em;">
<a style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#外部連結">
<span class="tocnumber" style="display: table-cell; text-decoration: inherit; color: rgb(32, 33, 34); padding-left: 0px; padding-right: 0.5em;">
15</span><span class="toctext" style="display: table-cell; text-decoration: inherit;">外部链接</span></a></li>
</ul>
</div>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E5.85.A8.E6.99.AF.E7.94.BB"></span>
<span class="mw-headline" id="全景画">全景画</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景画" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=1">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">
19世纪中叶,全景图成为最常用的景观和历史事件的表现手法。1881年,荷兰海景画家梅斯达格(Hendrik Willem Mesdag)等人创作了梅斯达格全景画(<span class="ilh-all" data-orig-title="Panorama Mesdag" data-lang-code="en" data-lang-name="英语" data-foreign-title="Panorama Mesdag"><span class="ilh-page"><a class="new" original-title="Panorama Mesdag(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); background: none" href="http://search.luhui.net/search/?q=Panorama_Mesdag&action=edit&redlink=1">Panorama
Mesdag</a></span></span>),并将画放在一个直径约40米的环形面内,画长约120米,高14余米。<sup id="cite_ref-1" class="reference" style="line-height: 1; unicode-bidi: isolate; white-space: nowrap; font-weight: normal; font-style: normal;"><a style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="#cite_note-1">[1]</a></sup></p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E5.85.A8.E6.99.AF.E6.91.84.E5.BD.B1"></span>
<span class="mw-headline" id="全景摄影">全景摄影</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=2">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<h3 style="color: rgb(0, 0, 0); margin: 0.3em 0px 0px; padding-top: 0.5em; padding-bottom: 0px; overflow: hidden; font-size: 1.2em; line-height: 1.6; font-weight: bold;">
<span id=".E7.90.83.E9.9D.A2.E5.85.A8.E6.99.AF"></span>
<span class="mw-headline" id="球面全景">球面全景</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:球面全景" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=3">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h3>
<div class="thumb tright" style="margin: 0.5em 0px 1.3em 1.4em; width: auto; background-color: transparent; clear: right; float: right;">
<div class="thumbinner" style="border: 1px solid rgb(200, 204, 209); padding: 3px; background-color: rgb(248, 249, 250); font-size: 14.1075px; text-align: center; overflow: hidden; width: 302px;">
<a class="image" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=File:Zhuangyuan_Panorama.jpg">
<img alt="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Zhuangyuan_Panorama.jpg/300px-Zhuangyuan_Panorama.jpg" decoding="async" width="300" height="45" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/64/Zhuangyuan_Panorama.jpg/450px-Zhuangyuan_Panorama.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/64/Zhuangyuan_Panorama.jpg/600px-Zhuangyuan_Panorama.jpg 2x" data-file-width="11594" data-file-height="1744" style="border: 1px solid rgb(200, 204, 209); vertical-align: middle; background-color: rgb(248, 249, 250);"></a><div class="thumbcaption" style="border: 0px; line-height: 1.4em; padding: 3px; font-size: 13.2611px; text-align: left;">
<div class="magnify" style="float: right; margin-left: 3px; margin-right: 0px;">
<a class="internal" title="放大" style="text-decoration: none; color: rgb(6, 69, 173); display: block; text-indent: 15px; white-space: nowrap; overflow: hidden; width: 15px; height: 11px; user-select: none; background: transparent) url('https://zh.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e')" href="http://search.luhui.net/search/?q=File:Zhuangyuan_Panorama.jpg">
</a></div>
台中市新社区新社庄园的宽景图</div>
</div>
</div>
<div class="thumb tright" style="margin: 0.5em 0px 1.3em 1.4em; width: auto; background-color: transparent; clear: right; float: right;">
<div class="thumbinner" style="border: 1px solid rgb(200, 204, 209); padding: 3px; background-color: rgb(248, 249, 250); font-size: 14.1075px; text-align: center; overflow: hidden; width: 302px;">
<a class="image" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=File:World_Games_Main_Stadium_Panorama.jpg">
<img alt="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/World_Games_Main_Stadium_Panorama.jpg/300px-World_Games_Main_Stadium_Panorama.jpg" decoding="async" width="300" height="94" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/World_Games_Main_Stadium_Panorama.jpg/450px-World_Games_Main_Stadium_Panorama.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/World_Games_Main_Stadium_Panorama.jpg/600px-World_Games_Main_Stadium_Panorama.jpg 2x" data-file-width="5438" data-file-height="1695" style="border: 1px solid rgb(200, 204, 209); vertical-align: middle; background-color: rgb(248, 249, 250);"></a><div class="thumbcaption" style="border: 0px; line-height: 1.4em; padding: 3px; font-size: 13.2611px; text-align: left;">
<div class="magnify" style="float: right; margin-left: 3px; margin-right: 0px;">
<a class="internal" title="放大" style="text-decoration: none; color: rgb(6, 69, 173); display: block; text-indent: 15px; white-space: nowrap; overflow: hidden; width: 15px; height: 11px; user-select: none; background: transparent) url('https://zh.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e')" href="http://search.luhui.net/search/?q=File:World_Games_Main_Stadium_Panorama.jpg">
</a></div>
2009世运主场馆宽景图</div>
</div>
</div>
<p style="margin: 0.5em 0px;"><b>
<a class="mw-redirect" title="全景摄影" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=全景摄影">
全景摄影</a></b>(<span lang="en">panoramic photography</span>):就<a class="mw-redirect" title="摄影" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=攝影">摄影</a><a class="mw-redirect mw-disambig" title="发展" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=發展">发展</a>而言,早已迈入<a class="mw-redirect" title="数字" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=數位">数字化</a>,相对于异于传统单一<a title="视角" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=視角">视角</a>画面,对于物体有所谓的<a class="new" title="环物(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); background: none" href="http://search.luhui.net/search/?q=%E7%92%B0%E7%89%A9&action=edit&redlink=1">环物</a>(Object
VR)摄影。相对的,对于环境景物的呈现,就称为全景(Pano VR),用以与平面的360°“全景”画面有所区别。</p>
<p style="margin: 0.5em 0px;">VR是Virtual Reality(<a title="虚拟现实" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=虚拟现实">虚拟现实</a>)的缩写。</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E7.92.B0.E6.99.AF.E7.B0.A1.E4.BB.8B"></span>
<span class="mw-headline" id="環景簡介">全景简介</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景简介" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=4">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">全景摄影的概念源自于利用电脑播放软件,如QuickTime
Player,让用户能依本身的需要,旋转照片,产生一种有如身临其境的视觉效果。为了产生这样的照片,于是有了各种全景摄影技术的发明。</p>
<p style="margin: 0.5em 0px;">
在实际的应用上,根据用户需求的不同,或摄影者本身的技术限制,有可分为宽景,全景跟全景,可以单一照片欣赏,也可以利用软件播放。</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E5.90.84.E7.A8.AE.E7.89.B9.E6.AE.8A.E6.94.9D.E5.BD.B1.E4.BB.8B.E7.B4.B9">
</span><span class="mw-headline" id="各種特殊攝影介紹">各种特殊摄影介绍</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:各种特殊摄影介绍" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=5">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<h3 style="color: rgb(0, 0, 0); margin: 0.3em 0px 0px; padding-top: 0.5em; padding-bottom: 0px; overflow: hidden; font-size: 1.2em; line-height: 1.6; font-weight: bold;">
<span id=".E5.AF.AC.E6.99.AF"></span><span class="mw-headline" id="寬景">
宽景</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:宽景" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=6">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h3>
<p style="margin: 0.5em 0px;">是指画面比普通的广角的水平视角大,却又未涵盖到整个周围360°。</p>
<h3 style="color: rgb(0, 0, 0); margin: 0.3em 0px 0px; padding-top: 0.5em; padding-bottom: 0px; overflow: hidden; font-size: 1.2em; line-height: 1.6; font-weight: bold;">
<span id=".E7.92.B0.E6.99.AF"></span><span class="mw-headline" id="環景">
全景</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=7">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h3>
<p style="margin: 0.5em 0px;">源自于传统<a title="平面 (数学)" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=平面_(数学)">平面</a>的概念,水平视角包含完整一周360°,但受限于二度空间,无法完整呈现出置身于<a class="mw-redirect" title="球体" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=球體">球体</a>,或是<a title="立方体" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=立方體">立方体</a>内部的那种三维的立体空间之视觉效果,谓之为全景。在多重照片接合时,离画面中地平在线下越远,变形会越大,需要将照片的中线固定、上下端都左右来开来接合图片,而直线将呈现曲型。</p>
<div class="thumb tnone" style="margin-bottom: 0.5em; width: auto; background-color: transparent; margin-left: auto; margin-right: auto; overflow: hidden; max-width: 1058px;">
<div class="thumbinner" style="border: 1px solid rgb(200, 204, 209); padding: 3px; background-color: rgb(248, 249, 250); font-size: 14.1075px; text-align: center; overflow: hidden;">
<div class="noresize" style="overflow: auto;">
<a class="image" title="南天360度全景图,欧洲空间局拍摄" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=File:360-degree_Panorama_of_the_Southern_Sky.jpg">
<img alt="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/360-degree_Panorama_of_the_Southern_Sky.jpg/1050px-360-degree_Panorama_of_the_Southern_Sky.jpg" decoding="async" width="1050" height="319" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f4/360-degree_Panorama_of_the_Southern_Sky.jpg/1575px-360-degree_Panorama_of_the_Southern_Sky.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f4/360-degree_Panorama_of_the_Southern_Sky.jpg/2100px-360-degree_Panorama_of_the_Southern_Sky.jpg 2x" data-file-width="15204" data-file-height="4620" style="border: 0px; vertical-align: middle; background-color: rgb(248, 249, 250);"></a></div>
<div class="thumbcaption" style="border: 0px; line-height: 1.4em; padding: 3px; font-size: 13.2611px; text-align: left;">
<div class="magnify" style="float: right; margin-left: 3px; margin-right: 0px;">
</div>
<a class="mw-redirect" title="南天" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=南天">
南天</a>360度全景图,<a title="欧洲空间局" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=欧洲空间局">欧洲空间局</a>拍摄</div>
</div>
</div>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E5.85.A8.E6.99.AF"></span><span class="mw-headline" id="全景">
全景</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=8">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">
指于球体的空间状态,视角涵盖地平线+/-各180°,垂直+/-各90°,就立方体的空间状态,即为上下前后左右六个面完全包含。由于水平角度为360°,垂直为180°,能表达这种模式的照片有很多种,又跟球面的投影有关(类似绘制世界地图的投影,但是是内投影)。目前最广泛使用的单一照片呈现法式等距长方投影(<span lang="en">equirectangular</span>),全景照片的长宽比例固定为2:1。</p>
<div class="thumb tnone" style="margin-bottom: 0.5em; width: auto; background-color: transparent; margin-left: auto; margin-right: auto; overflow: hidden; max-width: 1008px;">
<div class="thumbinner" style="border: 1px solid rgb(200, 204, 209); padding: 3px; background-color: rgb(248, 249, 250); font-size: 14.1075px; text-align: center; overflow: hidden;">
<div class="noresize" style="overflow: auto;">
<a class="image" title="台湾台北市的宽景图" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=File:Taipei_skyline_sunset.jpg">
<img alt="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Taipei_skyline_sunset.jpg/1000px-Taipei_skyline_sunset.jpg" decoding="async" width="1000" height="307" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/41/Taipei_skyline_sunset.jpg/1500px-Taipei_skyline_sunset.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/41/Taipei_skyline_sunset.jpg/2000px-Taipei_skyline_sunset.jpg 2x" data-file-width="17488" data-file-height="5374" style="border: 0px; vertical-align: middle; background-color: rgb(248, 249, 250);"></a></div>
<div class="thumbcaption" style="border: 0px; line-height: 1.4em; padding: 3px; font-size: 13.2611px; text-align: left;">
<div class="magnify" style="float: right; margin-left: 3px; margin-right: 0px;">
</div>
<a class="mw-redirect" title="台湾" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=台灣">
台湾</a><a class="mw-redirect" title="台北市" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=台北市">台北市</a>的宽景图</div>
</div>
</div>
<div class="thumb tnone" style="margin-bottom: 0.5em; width: auto; background-color: transparent; margin-left: auto; margin-right: auto; overflow: hidden; max-width: 1408px;">
<div class="thumbinner" style="border: 1px solid rgb(200, 204, 209); padding: 3px; background-color: rgb(248, 249, 250); font-size: 14.1075px; text-align: center; overflow: hidden;">
<div class="noresize" style="overflow: auto;">
<a class="image" title="香港维多利亚港的宽景图" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=File:Hong_Kong_at_night.jpg">
<img alt="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Hong_Kong_at_night.jpg/1400px-Hong_Kong_at_night.jpg" decoding="async" width="1400" height="296" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Hong_Kong_at_night.jpg/2100px-Hong_Kong_at_night.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/75/Hong_Kong_at_night.jpg/2800px-Hong_Kong_at_night.jpg 2x" data-file-width="4481" data-file-height="948" style="border: 0px; vertical-align: middle; background-color: rgb(248, 249, 250);"></a></div>
<div class="thumbcaption" style="border: 0px; line-height: 1.4em; padding: 3px; font-size: 13.2611px; text-align: left;">
<div class="magnify" style="float: right; margin-left: 3px; margin-right: 0px;">
</div>
<a title="香港" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=香港">
香港</a><a title="维多利亚港" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=維多利亞港">维多利亚港</a>的宽景图</div>
</div>
</div>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E7.92.B0.E6.99.AF.E7.9A.84.E6.8B.8D.E6.94.9D.E6.96.B9.E6.B3.95">
</span><span class="mw-headline" id="環景的拍攝方法">全景的拍摄方法</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景的拍摄方法" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=9">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">
全景的拍摄是需要一些方法,并不是单纯把脚架转一圈,上下拍个几张就可以,还要考虑到光轴的问题。
光轴判定的举例,将两枝笔一前一后的立在桌上,当鼻子正对笔时,右眼看到近笔会在远笔的左方;而左眼则是看到近笔在远笔的右方。同样的,当单纯在脚架上转动相机时可能就会产生类似的现象,当脚架转动时,视角就改变了。</p>
<p style="margin: 0.5em 0px;">
之所以会这样是因为,一般脚架的转轴是在螺丝孔上,而大部分相机都会把固定螺丝制作在感光组件的正下方,但是相机的视角却不是产生在那里,实际上是在镜头中的某处,可能会随着焦距的不同(也就是光学变焦)而改变,一般应该会产生在光圈的附近(也就是光线进入镜头之后的交叉点)。</p>
<p style="margin: 0.5em 0px;">
虽然有这样的问题,但却是很容易克服的,只要经过简易的测量就可以量出那个点(当然不需要把相机拆开),虽然市面上有可调整的全景云台,但一般价格相对高昂,因此自制脚架亦是一个较佳的选择(但缺点就是焦距和机种不能换)。</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E7.92.B0.E6.99.AF.E7.9A.84.E6.8B.8D.E6.94.9D.E5.B7.A5.E5.85.B7">
</span><span class="mw-headline" id="環景的拍攝工具">全景的拍摄工具</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景的拍摄工具" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=10">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">以数字单反相机<a class="mw-redirect" title="DSLR" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=DSLR">DSLR</a>为例,如果使用<a class="mw-redirect" title="全片幅" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=全片幅">全片幅</a>(Full-Frame)的相机,只需配上一个<a class="mw-redirect" title="鱼眼镜头" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=魚眼鏡頭">全周鱼眼镜头</a>(Circular
Fisheye
Lens),向前平视按下快门一次,就能拍摄一张拥有视野(FOV)180度的单张照片,通常拍摄2~3张即可透过后制软件合成为一张等距柱状投影图(Equirectangular
Projection)类型的全景照;若是使用<a class="mw-redirect" title="APS-C" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=APS-C">APS-C</a>等等较小感光组件片幅的相机,也必须采用全周鱼眼镜头来拍摄,另外也可以采用对角鱼眼镜头(Full-Frame
Fisheye
Lens)来拍摄,但是采用对角鱼眼镜头来拍摄会对用户较为不利,由于视野不足180度,会造成使用被迫拍摄多张照片,导致照片边缘移动的路人或物体出现消失或出现的鬼影现象出现的机会大为增加;虽然全周鱼眼也会有这种现象,但是全周鱼眼只需2~3张照片即可完成接合作业,就比较不用耗费太多时间与精力在修补校正这些接缝上的鬼影。</p>
<h3 style="color: rgb(0, 0, 0); margin: 0.3em 0px 0px; padding-top: 0.5em; padding-bottom: 0px; overflow: hidden; font-size: 1.2em; line-height: 1.6; font-weight: bold;">
<span id=".E9.AD.9A.E7.9C.BC.E9.8F.A1.E9.A0.AD.E7.9A.84.E7.9B.B8.E9.97.9C.E7.94.A2.E5.93.81.E5.9E.8B.E8.99.9F">
</span><span class="mw-headline" id="魚眼鏡頭的相關產品型號">鱼眼镜头的相关产品型号</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:鱼眼镜头的相关产品型号" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=11">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h3>
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin-left: 1.6em; margin-right: 0px; margin-top: 0.3em; margin-bottom: 0px; padding: 0px">
<li style="margin-bottom: 0.1em;">全周鱼眼镜头(Circular Fisheye
Lens):指拍摄出来的成像为一圆形于画面中央,周围为黑色之鱼眼镜头,且圆形画面涵盖上下,左右各180度FOV。应用在全片幅机身的Sigma
8mm F3.5 EX DG CIRCULAR FISHEYE镜头、Canon EF 8-15mm f/4L fisheye
USM镜头等等。专门应用在APS-C片幅机身则为Sigma 4.5mm F2.8 EX DC CIRCULAR FISHEYE
HSM镜头</li>
<li style="margin-bottom: 0.1em;">对角鱼眼镜头(Full-Frame Fisheye
Lens):指拍摄出来的成像为全画面涵盖,对角线为180度FOV。例如: Nikon AF DX Fisheye 10.5mm
f/2.8G ED 镜头等等。</li>
</ul>
<p style="margin: 0.5em 0px;">
若于APS-C片幅机身上采用全周鱼眼进行拍摄,则可以拍出约略等同对角鱼眼镜头所得到的效果。</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E7.92.B0.E6.99.AF.E7.9A.84.E5.BE.8C.E8.A3.BD.E8.BB.9F.E9.AB.94">
</span><span class="mw-headline" id="環景的後製軟體">全景的后制软件</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:全景的后制软件" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=12">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin-left: 1.6em; margin-right: 0px; margin-top: 0.3em; margin-bottom: 0px; padding: 0px">
<li style="margin-bottom: 0.1em;">
支持接合多张鱼眼镜所拍出的照片为单张等距圆柱投影图(Equirectangular
Panorama)类型全景照的软件,有PTGUI等等。</li>
<li style="margin-bottom: 0.1em;">
支持将已接合的单张等距圆柱投影图拆解为六张不同视角的照片,以供用户自行修补照片接缝的软件,有Pano2QTVR等等。</li>
<li style="margin-bottom: 0.1em;">能自己手动修补环境照缝合处的软件,有Photoshop等等。</li>
<li style="margin-bottom: 0.1em;">完成输出FLASH并且能制作交互全景地图的软件,有Kolor
Panotour, Pano2QTVR,krpano等等。</li>
</ul>
<p style="margin: 0.5em 0px;"><b>全景图制作流程示例:(此为其中一个示范流程,实际情形会以各用户需求而有所不同)</b></p>
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin-left: 1.6em; margin-right: 0px; margin-top: 0.3em; margin-bottom: 0px; padding: 0px">
<li style="margin-bottom: 0.1em;">
准备一台全片幅或APS-C类型的数字单反相机,以及一个全周或对角鱼眼的镜头</li>
<li style="margin-bottom: 0.1em;">
准备全景云台接上脚架,并在拍摄前先试拍几张,校正相机在云台上的位置让照片接缝在接合时不会出现误差的破碇(若无全景云台可以采用转腰方式来拍摄,唯接合误差会变多而影响接合精准度)</li>
<li style="margin-bottom: 0.1em;">
将相机向右旋转90度,将云台水平旋转,对场景逐一按下快门,在旋转期间要注意不可以超出上一张的拍摄范围,必须每张照片互有重叠才可以,并且要留意每次按下快门时,照片接缝处有没有路人或车子等移动中的物体经过,如果有,则停止拍摄,待其通过再拍摄再按下快门,以免事后造成接合时的鬼影现象。</li>
<li style="margin-bottom: 0.1em;">
拍完存回电脑,打开PTGUI软件将拍摄完成的多张照片接合为一张等距圆柱投影图(Equirectangular
Panorama)类型的全景照片,以PSD格式存储。</li>
<li style="margin-bottom: 0.1em;">
打开Photoshop软件,将PSD文件读入,会发现各张照片都覆盖了一张白色遮罩,如果照片中有需要消除鬼影的必要,则可以逐一按下Shift+鼠标左键以开启或关闭遮罩,再以仿制印章工具和弯曲变形选项进行细部修正。修正完再存成TIF文件,此张TIF照片仍然是一张等距圆柱投影图(Equirectangular
Panorama)类型的全景照片。</li>
<li style="margin-bottom: 0.1em;">
打开Pano2QTVR软件,将上述TIF照片如果立方体般展开拆解成6张照片。</li>
<li style="margin-bottom: 0.1em;">
打开Photoshop软件,将六张照片中的天、地二张最高与最低处的照片进行修正与填补,您可以加上您要的字样或缩略图在上面,有许多人会制作一个圆形,加上照片拍摄的位置与主题,再存回此二张照片。</li>
<li style="margin-bottom: 0.1em;">
打开Pano2QTVR软件,一次读入所有照片,再将最后成果输出成Flash或MOV文件,若有需要可以加入背景音乐,一个交互式全景照即可完成。</li>
<li style="margin-bottom: 0.1em;">如果您想利用多张等距圆柱投影图(Equirectangular
Panorama)类型全景照,为立体空间的介绍来制作交互式虚拟导览Flash,可以再利用Kolor
Panotour软件来制作成一个地图项目,供游客进入四处查访。</li>
</ul>
<p style="margin: 0.5em 0px;">(下图是以对角鱼眼为主的全景照制作流程示例)<br>
</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E9.9B.BB.E8.85.A6.E4.B8.8A.E7.9A.84.E7.92.B0.E6.99.AF">
</span><span class="mw-headline" id="電腦上的環景">电脑上的全景</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:电脑上的全景" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=13">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">
早期在传统使用底片的相机时,便有所谓的全景相机,透过相机环绕一周,采用类似扫描的方式,记录下水平一圈360°,在当时,是没办法处里天空与地面的问题。
采用"全景"一词来代表包含天地的球体(Sphericity)或是立方体(Cube)投影的360°,乃是为了与摄影史上早已存在的全景相机有所区隔。而在一般商业行为上还以一种所谓的720°也是不正确的,只能是说一种商业行为的噱头。</p>
<p style="margin: 0.5em 0px;">
而在数字相机兴起之后,可透过电脑进行影像编辑,将影像经过定位、运算、变形、接合等过程。</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id="3D.E5.8B.95.E7.95.AB.E4.B8.8A.E7.9A.84.E7.92.B0.E6.99.AF">
</span><span class="mw-headline" id="3D動畫上的環景">3D动画上的全景</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:3D动画上的全景" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=14">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">
目前3D软件的照明技术,除了人工光源之外,也有仰赖单张高动态范围照片(原文称为HDRI)作为主要照明光源,此种照片采用了与等距柱状投影图(Equirectangular
Projection)类似的全景照,以人类眼球所见的世界来形容,就是包涵了天空至地面的视野,亦即180度一样宽阔,并且将头平转一圈,才能得到如此宽敞的视野,对于3D动画打光更有莫大的帮助。其拍摄设备和全景照一样,采用全幅相机、全周鱼眼与全景脚架,不过在拍摄过程中需要以包围曝光(Bracket
Exposure)的快门设置方式来拍摄不同曝光值下的多组照片,之后才能在后制软件中组成一张高动态范围照片,此张照片通常会以一张等距柱状投影图类型的全景照呈现,就像世界地图一样,把相机本身当作地球的中心,把拍摄下来的实景当作地球的表皮,而人的头部也置于地球中心的位置,如此四处转头就仿佛置身于环境之中。由于HDRI具有更多的亮光与暗部细节,所以照耀在3D场景中的模型身上,打光效果会更加真实,而且渲染(Render)运算速度会比一般打光方式还快。</p>
<p style="margin: 0.5em 0px;">
同理,3D动画软件的虚拟摄影机,也能仿造真实世界的相机,将3D场景的渲染成多张角度的照片,在后制软件将此组照片后制为等距柱状投影图类型的全景照片,以作为其它3D场景打光之用。例如3DS
Max的Panorama Explorer可以输六张不同角度的照片。</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E8.A7.80.E7.9C.8B.E7.9A.84.E8.BB.9F.E9.AB.94"></span>
<span class="mw-headline" id="觀看的軟體">观看的软件</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:观看的软件" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=15">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">有多种软件可以观看某种形式的全景,例如Quicktime
player播放软件以QTVR的MOV格式支持,MOV的QTVR本身是利用六面体(也就是存储六张照片,并在开启软件时变形、接合)来形成立体照片;又或著在网页中运行的Flash也有相关的VR程序(如360cities,或是网页版的<a class="mw-redirect" title="Google街景" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=Google街景">Google街景服务</a>所使用的);同时,<a class="mw-redirect" title="Google Earth" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=Google_Earth">Google
Earth</a>本身就是立体地图软件,则是利用视点位置的纪录,并且借由Pyramid(分层纪录,越是放大的层,每一张照片包含的区域越小,细节也就越多)的方法来记录细节的和许遂有了包括天空与地面,水平角度为360°,垂直为180°的全景。</p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E8.A1.8D.E7.94.9F"></span><span class="mw-headline" id="衍生">
派生</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:派生" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=16">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<p style="margin: 0.5em 0px;">有摄影师使用大<a title="光圈" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=光圈">光圈</a><a class="mw-redirect" title="长焦镜头" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=长焦镜头">长焦镜头</a>拍摄浅<a title="景深" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=景深">景深</a>的照片,拼接成一幅类似于直接使用<a title="广角镜" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=广角镜">广角镜头</a>拍摄的广视角的浅景深全景照片。此方法使用数字相机即可得到观感类似<a title="大画幅相机" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=大画幅相机">大画幅相机</a>拍摄的照片,生成照片<a title="景深" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=景深">景深</a>非常浅、清晰度与<a title="分辨率" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=分辨率">分辨率</a>很高,得到的照片被称作浅景深全景图(英语:<span lang="en">Bokeh
Panorama 或 Bokehrama</span>)。这个照片拍摄方法因为美国摄影师Ryan
Brenizer而知名,因此也被称作“Brenizer Method Panorama”。<sup id="cite_ref-2" class="reference" style="line-height: 1; unicode-bidi: isolate; white-space: nowrap; font-weight: normal; font-style: normal;"><a style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="#cite_note-2">[2]</a></sup></p>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E5.8F.83.E8.A6.8B"></span><span class="mw-headline" id="參見">
参见</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:参见" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=17">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<div role="navigation" aria-label="Portals" class="noprint portal plainlist tright" style="margin: 0.5em 0px 0.5em 1em; clear: right; float: right; border: 1px solid rgb(170, 170, 170);">
<ul style="list-style-type: none; line-height: 14.0325px; display: table; box-sizing: border-box; max-width: 175px; font-size: 12.7568px; font-weight: bold; margin: 0px; padding: 0.1em; background: rgb(249, 249, 249)">
<li style="margin-bottom: 0px; display: table-row;">
<span style="display: table-cell; padding: 0.2em; vertical-align: middle; text-align: center;">
<a class="image" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=File:Large_format_camera_lens.png">
<img alt="摄影" src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Large_format_camera_lens.png/24px-Large_format_camera_lens.png" decoding="async" width="24" height="28" class="noviewer" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/56/Large_format_camera_lens.png/36px-Large_format_camera_lens.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/56/Large_format_camera_lens.png/48px-Large_format_camera_lens.png 2x" data-file-width="218" data-file-height="252" style="border: 0px; vertical-align: middle;"></a></span><span style="display: table-cell; padding: 0.2em 0.2em 0.2em 0.3em; vertical-align: middle;"><a title="Portal:摄影" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=Portal:摄影">摄影主题</a></span></li>
</ul>
</div>
<table class="mbox-small plainlinks sistersitebox" style="font-size: small; clear: right; float: right; margin: 4px 0px 4px 1em; width: 238px; line-height: 1.25em; border: 1px solid rgb(170, 170, 170); background-color: rgb(249, 249, 249);" id="table1">
<tr>
<td class="mbox-image" style="border: none; padding: 2px 0px 2px 0.9em; text-align: center;">
<img alt="" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" decoding="async" width="30" height="40" class="noviewer" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" data-file-width="1024" data-file-height="1376" style="border: 0px; vertical-align: middle;"></td>
<td class="mbox-text plainlist" style="border: none; padding: 0.25em 0.9em; width: 164.625px;">
<a title="维基共享资源" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=维基共享资源">
维基共享资源</a>中相关的多媒体资源:<b><a class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding: 0px !important; background: none !important" href="https://commons.wikimedia.org/wiki/Category:Panoramics?uselang=zh-cn">全景图</a></b></td>
</tr>
</table>
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin-left: 1.6em; margin-right: 0px; margin-top: 0.3em; margin-bottom: 0px; padding: 0px">
<li style="margin-bottom: 0.1em;">
<a class="mw-redirect" title="Google街景" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=Google街景">
Google街景</a></li>
<li style="margin-bottom: 0.1em;">
<a title="Here (公司)" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=Here_(公司)">
Here</a>,地图服务商</li>
<li style="margin-bottom: 0.1em;">
<a title="路途全景图" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=路途全景图">
路途全景图</a></li>
<li style="margin-bottom: 0.1em;">
<a class="mw-redirect" title="全景摄影" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=全景摄影">
全景摄影</a></li>
<li style="margin-bottom: 0.1em;">
<a title="Hugin" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=Hugin">
hugin</a></li>
</ul>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E5.8F.82.E8.80.83.E6.96.87.E7.8C.AE"></span>
<span class="mw-headline" id="参考文献">参考文献</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:参考文献" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=18">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<ol class="references" style="list-style-image: none; counter-reset: mw-ref-extends-parent 0 list-item 0; font-size: 13.5072px; margin-left: 3.2em; margin-right: 0px; margin-top: 0.3em; margin-bottom: 0.5em; padding: 0px">
<li id="cite_note-1" style="margin-bottom: 0.1em; counter-increment: mw-ref-extends-parent 1; counter-reset: mw-ref-extends-child 0;">
<span class="mw-cite-backlink" style="user-select: none;"><b>
<a aria-label="跳转" title="跳转" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#cite_ref-1">
^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="http://cn.holland.com/page.php?cateid=&atcid=3830&tagid=">梅斯达格全景博物馆</a><sup class="noprint Inline-Template" style="line-height: 1;"><span style="white-space: nowrap;">[<i><a title="Wikipedia:失效链接" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="http://search.luhui.net/search/?q=失效链接"><span title="自2020年5月失效">永久失效链接</span></a></i>]</span></sup></span></li>
<li id="cite_note-2" style="margin-bottom: 0.1em; counter-increment: mw-ref-extends-parent 1; counter-reset: mw-ref-extends-child 0;">
<span class="mw-cite-backlink" style="user-select: none;"><b>
<a aria-label="跳转" title="跳转" style="text-decoration: none; color: rgb(6, 69, 173); background: none" href="#cite_ref-2">
^</a></b></span> <span class="reference-text"><cite class="citation web" style="font-style: normal;"><a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="https://photographylife.com/advanced-photography-techniques-brenizer-method-panorama">Advanced
Photography Technique: Brenizer Method Panorama</a>. Photography
Life. 2012-09-11 <span class="reference-accessdate">[<span class="nowrap" style="white-space: nowrap;">2021-02-02</span>]</span> <span title="连接到美国英语网页" style="font-family: sans-serif; cursor: default; color: rgb(85, 85, 85); font-size: 0.8em; bottom: 0.1em; font-weight: bold;">(美国英语)</span>.</cite><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzh.wikipedia.org%3A%E5%85%A8%E6%99%AF%E5%9B%BE&rft.atitle=Advanced+Photography+Technique%3A+Brenizer+Method+Panorama&rft.date=2012-09-11&rft.genre=unknown&rft.jtitle=Photography+Life&rft_id=https%3A%2F%2Fphotographylife.com%2Fadvanced-photography-techniques-brenizer-method-panorama&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"></span></span></li>
</ol>
<h2 style="color: rgb(0, 0, 0); margin: 1em 0px 0.25em; padding: 0px; overflow: hidden; border-bottom: 1px solid rgb(162, 169, 177); font-size: 1.5em; font-weight: normal; font-family: "Linux Libertine", Georgia, Times, serif; line-height: 1.3;">
<span id=".E5.A4.96.E9.83.A8.E9.80.A3.E7.B5.90"></span>
<span class="mw-headline" id="外部連結">外部链接</span><span class="mw-editsection" style="font-family: sans-serif; user-select: none; font-size: small; font-weight: normal; margin-left: 1em; vertical-align: baseline; line-height: 1em; unicode-bidi: isolate;"><span class="mw-editsection-bracket" style="margin-right: 0.25em; color: rgb(84, 89, 93);">[</span><a title="编辑章节:外部链接" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%85%A8%E6%99%AF%E5%9B%BE&action=edit§ion=19">编辑</a><span class="mw-editsection-bracket" style="margin-left: 0.25em; color: rgb(84, 89, 93);">]</span></span></h2>
<dl style="margin-top: 0.2em; margin-bottom: 0.5em;">
<dt style="font-weight: bold; margin-bottom: 0.1em;">
目前国际上比较知名的360°作品展示网站有:</dt>
</dl>
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin-left: 1.6em; margin-right: 0px; margin-top: 0.3em; margin-bottom: 0px; padding: 0px">
<li style="margin-bottom: 0.1em;">
<a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="http://worldwidepanorama.org/">
The World Wide Panorama</a></li>
<li style="margin-bottom: 0.1em;">
<a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="http://www.360cities.net/">
World Panoramic Photography - 360 Cities</a></li>
<li style="margin-bottom: 0.1em;">
<a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="http://panoramas.dk/">
Panoramas.dk</a></li>
<li style="margin-bottom: 0.1em;">
<a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="http://www.markwen.com/">
MarkWen Panorama</a></li>
<li style="margin-bottom: 0.1em;">
<a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="http://vr.eyehouse.co/">
eyehouse.co</a></li>
</ul>
<p style="margin: 0.5em 0px;"><br>
</p>
<dl style="margin-top: 0.2em; margin-bottom: 0.5em;">
<dt style="font-weight: bold; margin-bottom: 0.1em;">其它示例:</dt>
</dl>
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin-left: 1.6em; margin-right: 0px; margin-top: 0.3em; margin-bottom: 0px; padding: 0px">
<li style="margin-bottom: 0.1em;">
<a rel="nofollow" class="external text" style="text-decoration: none; color: rgb(51, 102, 187); padding-right: 13px; background: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/external-link-ltr-icon.svg?b4b84') no-repeat right center" href="https://web.archive.org/web/20160304093222/http://focusonpc.myweb.hinet.net/cubicvr/houtong/virtualtour.html">
以Kolor Panotour软件制成的全景地图示例,包含太阳耀光与背景音效</a></li>
</ul>
<table cellspacing="0" class="navbox" style="font-size: 13.207px; width: 1038px; clear: both; text-align: center; border-spacing: 0px; border: 1px solid rgb(162, 169, 177); margin-left: auto; margin-right: auto; margin-top: 0.5em; margin-bottom: auto; padding: 1px; background: rgb(253, 253, 253)" id="table2">
<tr>
<td style="padding: 2px;">
<table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" id="table3" style="font-size: 13.207px; width: 1030px; border-spacing: 0px; color: inherit; background:">
<tr>
<th scope="col" class="navbox-title" colspan="2" style="text-align: center; padding-left: 1em; padding-right: 1em; background: rgb(204, 204, 255)">
<span class="collapseButton" style="float: right; font-weight: normal; margin-left: 0.5em; text-align: right; width: 8em;">
[<a id="collapseButton0" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="#">隐藏</a>]</span><div class="plainlinks hlist navbar mini" style="display: block; font-weight: normal; float: left; text-align: left; margin-right: 0.5em; width: 8em;">
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); display: inline; white-space: nowrap; margin: 0px; padding: 0px">
<li class="nv-view" style="margin: 0px; display: inline; word-spacing: -0.125em; white-space: nowrap;">
<a title="Template:Photography" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Template:Photography">
<abbr title="查看该模板" style="cursor: inherit; text-decoration: none; font-variant: small-caps; border: medium none; background:">
查</abbr></a></li>
<li class="nv-talk" style="margin: 0px; display: inline; word-spacing: -0.125em; white-space: nowrap;">
<a title="Template talk:Photography" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Template_talk:Photography">
<abbr title="讨论该模板" style="cursor: inherit; text-decoration: none; font-variant: small-caps; border: medium none; background:">
论</abbr></a></li>
<li class="nv-edit" style="margin: 0px; display: inline; word-spacing: -0.125em; white-space: nowrap;">
<a class="external text" style="text-decoration: none; color: rgb(51, 102, 187); white-space: nowrap; padding: 0px !important; background: none !important" href="http://search.luhui.net/search/?q=Template:Photography&action=edit">
<abbr title="编辑该模板" style="cursor: inherit; text-decoration: none; font-variant: small-caps; border: medium none; background:">
编</abbr></a></li>
</ul>
</div>
<div style="font-size: 14.5277px;">
<a class="mw-redirect" title="摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=攝影">
摄影</a></div>
</th>
</tr>
<tr style="height: 2px;">
<td colspan="3"> </td>
</tr>
<tr>
<th scope="row" class="navbox-group" style="text-align: right; white-space: nowrap; padding-left: 1em; padding-right: 1em; background: rgb(221, 221, 255)">
<a class="new" title="摄影术语(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%94%9D%E5%BD%B1%E8%A1%93%E8%AA%9E&action=edit&redlink=1">
术语</a></th>
<td class="navbox-list navbox-odd" style="text-align: left; width: 948px; border-left: 2px solid rgb(253, 253, 253); border-right-color: rgb(253, 253, 253); border-top-color: rgb(253, 253, 253); border-bottom-color: rgb(253, 253, 253); padding: 0px; background:">
<div style="padding: 0em 0.25em;">
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="照片" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=相片">
照片</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="底帧式" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=底片格式">
底帧式</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="焦距" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=焦距">
焦距</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="视角" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=視角">
视角</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="35mm等效焦距" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=35mm等效焦距">
35mm等效焦距</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="光圈" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=光圈">
光圈</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="焦比" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=焦比">
焦比</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="景深" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=景深">
景深</a>(<a class="mw-redirect" title="超焦距" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=超焦距">超焦距</a>、<a title="模糊圈" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=模糊圈">模糊圈</a>)</li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="焦深" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=焦深">
焦深</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="快门" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=快門">
快门</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="连拍" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=連拍">
连拍</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="快门速度" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=快門速度">
快门速度</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="倒易律" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=倒易律">
倒易律</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="感光度" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=感光度">
感光度</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="阳光16法则" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=陽光16法則">
阳光16法则</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="曝光" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=曝光">
曝光</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="曝光值" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=曝光值">
曝光值</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="曝光补偿" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=曝光补偿">
曝光补偿</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="曝光宽容度" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=曝光宽容度">
宽容度</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="區域曝光法" data-lang-code="en" data-lang-name="英语" data-foreign-title="Zone System">
<span class="ilh-page">
<a class="new" original-title="区域曝光法(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%8D%80%E5%9F%9F%E6%9B%9D%E5%85%89%E6%B3%95&action=edit&redlink=1">
区域曝光法</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="逆光" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=逆光">
逆光</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="测光模式" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=测光模式">
测光模式</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="闪光指数" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=闪光指数">
闪光指数</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="閃光同步" data-lang-code="en" data-lang-name="英语" data-foreign-title="Flash synchronization">
<span class="ilh-page">
<a class="new" original-title="闪光同步(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%96%83%E5%85%89%E5%90%8C%E6%AD%A5&action=edit&redlink=1">
闪光同步</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="闪灯同步速度" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=閃燈同步速度">
闪灯同步速度</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="色温" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=色溫">
色温</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="色差" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=色差">
色差</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="红眼现象" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=紅眼現象">
红眼现象</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="黑白" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=黑白">
黑白</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="透视变形" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=透视变形">
透视变形</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="透视校正" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=透视校正">
透视校正</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="摄影流程(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%94%9D%E5%BD%B1%E6%B5%81%E7%A8%8B&action=edit&redlink=1">
摄影流程</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="摄影处理" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=攝影處理">
摄影处理</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="攝影印刷" data-lang-code="en" data-lang-name="英语" data-foreign-title="Photographic printing">
<span class="ilh-page">
<a class="new" original-title="摄复印刷(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%94%9D%E5%BD%B1%E5%8D%B0%E5%88%B7&action=edit&redlink=1">
摄复印刷</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="攝影科學" data-lang-code="en" data-lang-name="英语" data-foreign-title="Science of photography">
<span class="ilh-page">
<a class="new" original-title="摄影科学(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%94%9D%E5%BD%B1%E7%A7%91%E5%AD%B8&action=edit&redlink=1">
摄影科学</a></span></span></li>
</ul>
</div>
</td>
</tr>
<tr style="height: 2px;">
<td colspan="3"> </td>
</tr>
<tr>
<th scope="row" class="navbox-group" style="text-align: right; white-space: nowrap; padding-left: 1em; padding-right: 1em; background: rgb(221, 221, 255)">
<a class="new" title="摄影类型(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%94%9D%E5%BD%B1%E9%A1%9E%E5%9E%8B&action=edit&redlink=1">
类型</a></th>
<td class="navbox-list navbox-even" style="text-align: left; width: 948px; border-left: 2px solid rgb(253, 253, 253); border-right-color: rgb(253, 253, 253); border-top-color: rgb(253, 253, 253); border-bottom-color: rgb(253, 253, 253); padding: 0px; background: rgb(247, 247, 247)">
<div style="padding: 0em 0.25em;">
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="空中摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=空中攝影">
空中摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="建筑摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=建筑摄影">
建筑摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="纪实摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=紀實攝影">
纪实摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="新闻摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=新聞攝影">
新闻摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="艺术摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E8%97%9D%E8%A1%93%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
艺术摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="静物摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=静物摄影">
静物摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="自然攝影" data-lang-code="en" data-lang-name="英语" data-foreign-title="Nature photography">
<span class="ilh-page">
<a class="new" original-title="自然摄影(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E8%87%AA%E7%84%B6%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
自然摄影</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="人物摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=人物摄影">
人物摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="魅力摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=魅力摄影">
魅力摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="裸体摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=裸体摄影">
裸体摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="非裸摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=非裸摄影">
非裸摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="街頭攝影" data-lang-code="en" data-lang-name="英语" data-foreign-title="Street photography">
<span class="ilh-page">
<a class="new" original-title="街头摄影(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E8%A1%97%E9%A0%AD%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
街头摄影</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="天文摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=天文攝影">
天文摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="雲海攝影" data-lang-code="en" data-lang-name="英语" data-foreign-title="Cloudscape photography">
<span class="ilh-page">
<a class="new" original-title="云海摄影(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%9B%B2%E6%B5%B7%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
云海摄影</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="飞机摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=飞机摄影">
飞机摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="鐵道攝影" data-lang-code="ja" data-lang-name="日语" data-foreign-title="鉄道撮影">
<span class="ilh-page">
<a class="new" original-title="铁道摄影(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%90%B5%E9%81%93%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
铁道摄影</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="法医摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%B3%95%E9%86%AB%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
法医摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="广告摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%BB%A3%E5%91%8A%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
广告摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="商业摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=商業攝影">
商业摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="时装摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=時裝攝影">
时装摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="婚纱摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=婚紗攝影">
婚纱摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="图库摄影" data-lang-code="en" data-lang-name="英语" data-foreign-title="Stock photography">
<span class="ilh-page">
<a class="new" original-title="图库摄影(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%9B%BE%E5%BA%93%E6%91%84%E5%BD%B1&action=edit&redlink=1">
图库摄影</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="公关摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=公关摄影">
公关摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="业余摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%A5%AD%E9%A4%98%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
业余摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="废墟摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=廢墟攝影">
废墟摄影</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height: 2px;">
<td colspan="3"> </td>
</tr>
<tr>
<th scope="row" class="navbox-group" style="text-align: right; white-space: nowrap; padding-left: 1em; padding-right: 1em; background: rgb(221, 221, 255)">
<a title="摄影技术" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=攝影技術">
技术</a></th>
<td class="navbox-list navbox-odd" style="text-align: left; width: 948px; border-left: 2px solid rgb(253, 253, 253); border-right-color: rgb(253, 253, 253); border-top-color: rgb(253, 253, 253); border-bottom-color: rgb(253, 253, 253); padding: 0px; background:">
<div style="padding: 0em 0.25em;">
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="Afocal摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Afocal%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
Afocal摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="散景" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=散景">
散景</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="剪影 (摄影)" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=剪影_(攝影)">
剪影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="青写真(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%9D%92%E5%AF%AB%E7%9C%9F&action=edit&redlink=1">
青写真</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="向右曝光" data-lang-code="en" data-lang-name="英语" data-foreign-title="Exposing to the right">
<span class="ilh-page">
<a class="new" original-title="向右曝光(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%90%91%E5%8F%B3%E6%9B%9D%E5%85%89&action=edit&redlink=1">
向右曝光</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="闪灯补光(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%96%83%E7%87%88%E8%A3%9C%E5%85%89&action=edit&redlink=1">
闪灯补光</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="烟花摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E7%85%99%E8%8A%B1%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
烟花摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="哈里斯快门(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%93%88%E9%87%8C%E6%96%AF%E5%BF%AB%E9%96%80&action=edit&redlink=1">
哈里斯快门</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="高动态范围成像" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=高动态范围成像">
HDRI</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="高速摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=高速摄影">
高速摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="全息摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=全像攝影">
全息摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="红外线摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E7%B4%85%E5%A4%96%E7%B7%9A%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
红外线摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="柯利安摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%9F%AF%E5%88%A9%E5%AE%89%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
柯利安摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="風箏攝影" data-lang-code="en" data-lang-name="英语" data-foreign-title="Kite aerial photography">
<span class="ilh-page">
<a class="new" original-title="风筝摄影(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%A2%A8%E7%AE%8F%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
风筝摄影</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="长时间曝光摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=長時間曝光攝影">
长时间曝光摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="微距摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=微距攝影">
微距摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="Mordançage" data-lang-code="en" data-lang-name="英语" data-foreign-title="Mordançage">
<span class="ilh-page">
<a class="new" original-title="Mordançage(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Mordan%C3%A7age&action=edit&redlink=1">
Mordançage</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="多重曝光" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=多重曝光">
多重曝光</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="夜间摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%A4%9C%E9%96%93%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
夜间摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="追踪摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E8%BF%BD%E8%B9%A4%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
追踪摄影</a>/<a class="new" title="摄影平移(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%94%9D%E5%BD%B1%E5%B9%B3%E7%A7%BB&action=edit&redlink=1">摄影平移</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="全景摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=全景摄影">
全景摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="黑影照片(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%BB%91%E5%BD%B1%E7%85%A7%E7%89%87&action=edit&redlink=1">
黑影照片</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="印刷调色(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%8D%B0%E5%88%B7%E8%AA%BF%E8%89%B2&action=edit&redlink=1">
印刷调色</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="反转底片(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%8F%8D%E8%BD%89%E5%BA%95%E7%89%87&action=edit&redlink=1">
反转底片</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="重新拍摄(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E9%87%8D%E6%96%B0%E6%8B%8D%E6%94%9D&action=edit&redlink=1">
重新拍摄</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="Rollout摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Rollout%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
Rollout摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="色调反转(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E8%89%B2%E8%AA%BF%E5%8F%8D%E8%BD%89&action=edit&redlink=1">
色调反转</a>/<a class="new" title="萨巴蒂效应(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E8%96%A9%E5%B7%B4%E8%92%82%E6%95%88%E6%87%89&action=edit&redlink=1">萨巴蒂效应</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="立体摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E7%AB%8B%E9%AB%94%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
立体摄影</a>(<a title="3D眼镜" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=3D眼鏡">3D眼镜</a>)</li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="光圈收缩" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=光圈收縮">
光圈收缩</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="日光显影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%97%A5%E5%85%89%E9%A1%AF%E5%BD%B1&action=edit&redlink=1">
日光显影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="移轴摄影" data-lang-code="en" data-lang-name="英语" data-foreign-title="Tilt–shift photography">
<span class="ilh-page">
<a class="new" original-title="移轴摄影(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E7%A7%BB%E8%BD%B4%E6%91%84%E5%BD%B1&action=edit&redlink=1">
移轴摄影</a></span></span> <ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); display: inline; white-space: normal; margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="仿微缩模型" data-lang-code="en" data-lang-name="英语" data-foreign-title="Miniature faking">
<span class="ilh-page">
<a class="new" original-title="仿微缩模型(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E4%BB%BF%E5%BE%AE%E7%BC%A9%E6%A8%A1%E5%9E%8B&action=edit&redlink=1">
仿微缩模型</a></span></span></li>
</ul>
</li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="缩时摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=縮時攝影">
缩时摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="慢动作" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=慢动作">
慢动作摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="紫外线摄影(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E7%B4%AB%E5%A4%96%E7%B7%9A%E6%94%9D%E5%BD%B1&action=edit&redlink=1">
紫外线摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="晕影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=暈影">
晕影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="水中摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=水中攝影">
水中摄影</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="微型摄影术" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=微型摄影术">
微型摄影术</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="相机陷阱" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=相機陷阱">
相机陷阱</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="BeetleCam" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=BeetleCam">
BeetleCam</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="鸽子摄影" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=鴿子攝影">
鸽子摄影</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height: 2px;">
<td colspan="3"> </td>
</tr>
<tr>
<th scope="row" class="navbox-group" style="text-align: right; white-space: nowrap; padding-left: 1em; padding-right: 1em; background: rgb(221, 221, 255)">
<a title="构图" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=構圖">
构图</a></th>
<td class="navbox-list navbox-even" style="text-align: left; width: 948px; border-left: 2px solid rgb(253, 253, 253); border-right-color: rgb(253, 253, 253); border-top-color: rgb(253, 253, 253); border-bottom-color: rgb(253, 253, 253); padding: 0px; background: rgb(247, 247, 247)">
<div style="padding: 0em 0.25em;">
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="对角线构图法" data-lang-code="en" data-lang-name="英语" data-foreign-title="Diagonal method">
<span class="ilh-page">
<a class="new" original-title="对角线构图法(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%AF%B9%E8%A7%92%E7%BA%BF%E6%9E%84%E5%9B%BE%E6%B3%95&action=edit&redlink=1">
对角线构图法</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="框架构图法" data-lang-code="en" data-lang-name="英语" data-foreign-title="Framing (visual arts)">
<span class="ilh-page">
<a class="new" original-title="框架构图法(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%A1%86%E6%9E%B6%E6%9E%84%E5%9B%BE%E6%B3%95&action=edit&redlink=1">
框架构图法</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="Headroom" data-lang-code="en" data-lang-name="英语" data-foreign-title="Headroom (photographic framing)">
<span class="ilh-page">
<a class="new" original-title="Headroom(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Headroom&action=edit&redlink=1">
Headroom</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="Lead room" data-lang-code="en" data-lang-name="英语" data-foreign-title="Lead room">
<span class="ilh-page">
<a class="new" original-title="Lead room(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Lead_room&action=edit&redlink=1">
Lead room</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="三分法 (构图)" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=三分法_(構圖)">
三分法</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="Simplicity" data-lang-code="en" data-lang-name="英语" data-foreign-title="Simplicity (photography)">
<span class="ilh-page">
<a class="new" original-title="Simplicity(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=Simplicity&action=edit&redlink=1">
Simplicity</a></span></span></li>
</ul>
</div>
</td>
</tr>
<tr style="height: 2px;">
<td colspan="3"> </td>
</tr>
<tr>
<th scope="row" class="navbox-group" style="text-align: right; white-space: nowrap; padding-left: 1em; padding-right: 1em; background: rgb(221, 221, 255)">
<a title="摄影器材" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=摄影器材">
器材</a></th>
<td class="navbox-list navbox-odd" style="text-align: left; width: 948px; border-left: 2px solid rgb(253, 253, 253); border-right-color: rgb(253, 253, 253); border-top-color: rgb(253, 253, 253); border-bottom-color: rgb(253, 253, 253); padding: 0px; background:">
<div style="padding: 0em 0.25em;">
<ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=相機">
相机</a>(<a title="光场相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=光場相機">光场相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="单镜反光相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=单镜反光相机">
单反相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="双反相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=双反相机">
双反相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="旁轴相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=旁轴相机">
旁轴相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="直接观景式相机(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E7%9B%B4%E6%8E%A5%E8%A7%80%E6%99%AF%E5%BC%8F%E7%9B%B8%E6%A9%9F&action=edit&redlink=1">
直接观景式相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="高速摄影机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=高速攝影機">
高速摄影机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="玩具相機 (器材)" data-lang-code="en" data-lang-name="英语" data-foreign-title="Toy camera">
<span class="ilh-page">
<a class="new" original-title="玩具相机 (器材)(页面不存在)" style="text-decoration: none; color: rgb(0, 122, 94); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E7%8E%A9%E5%85%B7%E7%9B%B8%E6%A9%9F_(%E5%99%A8%E6%9D%90)&action=edit&redlink=1">
玩具相机</a></span></span></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="针孔相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=針孔相機">
针孔相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="傻瓜相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=傻瓜相机">
傻瓜相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="即时成像相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=即时成像相机">
即时成像相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="大画幅相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=大画幅相机">
大画幅相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="全景相机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=全景相机">
全景相机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="空拍机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=空拍機">
空拍机</a>)</li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="放大机" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=放大機">
放大机</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="底片" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=底片">
底片</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="底片片基(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E5%BA%95%E7%89%87%E7%89%87%E5%9F%BA&action=edit&redlink=1">
片基</a> <ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); display: inline; white-space: normal; margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="底帧式" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=底片格式">
底帧式</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="电影胶片" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=电影胶片">
电影胶片</a></li>
</ul>
</li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="镜头" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=鏡頭">
镜头</a> <ul style="list-style-image: url('https://zh.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515'); display: inline; white-space: normal; margin: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0.125em; padding-bottom: 0.125em">
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="变焦镜头" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=变焦镜头">
变焦镜头</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="定焦镜头" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=定焦镜头">
定焦镜头</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="广角镜头" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=廣角鏡頭">
广角镜头</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="标准镜头" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=標準鏡頭">
标准镜头</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="远摄镜头" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=遠攝鏡頭">
远摄镜头</a></li>
</ul>
</li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="mw-redirect" title="接环镜头" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=接環鏡頭">
接环镜头</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="摄影滤光镜" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=摄影滤光镜">
摄影滤光镜</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="遮光罩" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=遮光罩">
遮光罩</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="测光表" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=测光表">
测光表</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="闪光灯" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=闪光灯">
闪光灯</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a class="new" title="波带板(页面不存在)" style="text-decoration: none; color: rgb(186, 0, 0); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=%E6%B3%A2%E5%B8%B6%E6%9D%BF&action=edit&redlink=1">
波带板</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="云台" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=云台">
云台</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="单脚架" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=單腳架">
单脚架</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="三脚架" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=三腳架">
三脚架</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<a title="自拍杆" style="text-decoration: none; color: rgb(6, 69, 173); white-space: nowrap; background: none" href="http://search.luhui.net/search/?q=自拍杆">
自拍棒</a></li>
<li style="margin: 0px; display: inline; white-space: nowrap;">
<span class="ilh-all" data-orig-title="攝影穩定器" data-lang-code="en" data-lang-name="英语" data-foreign-title="Camera_stabilizer">
<span class="ilh-page">