AEES61摄像苹果手机拍近景模糊颗粒大是什么原因,是不是哪个键错了?敬请大师指点

AE+C#向IPageLayout增加指北针
///&summary&Add a North Arrow to the Page Layout from the Map.&/summary&
///&param name="pageLayout"&An IPageLayout interface.&/param&
///&param name="map"&An IMap interface.&/param&
///&remarks&&/remarks&
public void AddNorthArrow(ESRI.ArcGIS.Carto.IPageLayout pageLayout, ESRI.ArcGIS.Carto.IMap map)
if(pageLayout == null || map == null)
ESRI.ArcGIS.Geometry.IEnvelope envelope = new ESRI.ArcGIS.Geometry.EnvelopeClass();
envelope.PutCoords(0.2, 0.2, 5, 5); //
Specify the location and size of the north arrow
ESRI.ArcGIS.esriSystem.IUID uid = new ESRI.ArcGIS.esriSystem.UIDClass();
uid.Value = "esriCarto.MarkerNorthArrow";
// Create a Surround. Set the geometry of the MapSurroundFrame to give it a location
// Activate it and add it to the PageLayout's graphics container
ESRI.ArcGIS.Carto.IGraphicsContainer graphicsContainer = pageLayout as ESRI.ArcGIS.Carto.IGraphicsC // Dynamic Cast
ESRI.ArcGIS.Carto.IActiveView activeView = pageLayout as ESRI.ArcGIS.Carto.IActiveV // Dynamic Cast
ESRI.ArcGIS.Carto.IFrameElement frameElement = graphicsContainer.FindFrame(map);
ESRI.ArcGIS.Carto.IMapFrame mapFrame = frameElement as ESRI.ArcGIS.Carto.IMapF // Dynamic Cast
ESRI.ArcGIS.Carto.IMapSurroundFrame mapSurroundFrame = mapFrame.CreateSurroundFrame(uid as ESRI.ArcGIS.esriSystem.UID, null); // Dynamic Cast
ESRI.ArcGIS.Carto.IElement element = mapSurroundFrame as ESRI.ArcGIS.Carto.IE // Dynamic Cast
element.Geometry =
element.Activate(activeView.ScreenDisplay);
graphicsContainer.AddElement(element, 0);
ESRI.ArcGIS.Carto.IMapSurround mapSurround = mapSurroundFrame.MapS
// Change out the default north arrow
ESRI.ArcGIS.Carto.IMarkerNorthArrow markerNorthArrow = mapSurround as ESRI.ArcGIS.Carto.IMarkerNorthA // Dynamic Cast
ESRI.ArcGIS.Display.IMarkerSymbol markerSymbol = markerNorthArrow.MarkerS
ESRI.ArcGIS.Display.ICharacterMarkerSymbol characterMarkerSymbol = markerSymbol as ESRI.ArcGIS.Display.ICharacterMarkerS // Dynamic Cast
characterMarkerSymbol.CharacterIndex = 200; // change the symbol for the North Arrow
markerNorthArrow.MarkerSymbol = characterMarkerS
没有更多推荐了,
加入CSDN,享受更精准的内容推荐,与500万程序员共同成长![45/50] allura git commit: [#8035] Separate .eslintrc into configs for ES5 and ES6
allura-commits mailing list archives
Message view
hei...@apache.org
[45/50] allura git commit: [#8035] Separate .eslintrc into configs for ES5 and ES6
[#8035] Separate .eslintrc into configs for ES5 and ES6
Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/b4f0ae43
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/b4f0ae43
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/b4f0ae43
Branch: refs/heads/hs/8035
Commit: b4f0ae43a8cfa6a759
Parents: 5cc34c0
Author: Heith Seewald &&
Authored: Tue Jan 26 11:35:35
Committer: Heith Seewald &&
Committed: Wed Jan 27 15:21:32
----------------------------------------------------------------------
.eslintignore-es5 |
.eslintignore-es6 |
.eslintrc-es5
| 42 ++++++++++++++++++++++++++++++++++++++++++
.eslintrc-es6
| 39 +++++++++++++++++++++++++++++++++++++++
package.json
5 files changed, 87 insertions(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/allura/blob/b4f0ae43/.eslintignore-es5
----------------------------------------------------------------------
diff --git a/.eslintignore-es5 b/.eslintignore-es5
new file mode 100644
index dfa7af
--- /dev/null
+++ b/.eslintignore-es5
@@ -0,0 +1,2 @@
+Allura/allura/public/nf/js/build
+**/*es6.js
\ No newline at end of file
http://git-wip-us.apache.org/repos/asf/allura/blob/b4f0ae43/.eslintignore-es6
----------------------------------------------------------------------
diff --git a/.eslintignore-es6 b/.eslintignore-es6
new file mode 100644
index 0000000..ddff5f8
--- /dev/null
+++ b/.eslintignore-es6
@@ -0,0 +1 @@
+Allura/allura/public/nf/js/build
http://git-wip-us.apache.org/repos/asf/allura/blob/b4f0ae43/.eslintrc-es5
----------------------------------------------------------------------
diff --git a/.eslintrc-es5 b/.eslintrc-es5
new file mode 100644
index 3b774
--- /dev/null
+++ b/.eslintrc-es5
@@ -0,0 +1,42 @@
"rules": {
"indent": [2, 4],
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"no-console": 0,
"semi": [2, "always"],
"eqeqeq": 2,
"block-scoped-var": 2,
"consistent-return": 2,
// specify curly brace conventions for all control statements
"curly": [2, "all"],
// require default case in switch statements
"default-case": 2,
// disallow use of eval()
"no-eval": 2,
// disallow adding to native types
"no-extend-native": 2,
// disallow use of eval()-like methods
"no-implied-eval": 2,
// disallow this keywords outside of classes or class-like objects
"no-invalid-this": 2,
// disallow creation of functions within loops
"no-loop-func": 2,
// disallow declaring the same variable more then once
"no-redeclare": 2,
// disallow use of the with statement
"no-with": 2,
// require use of the second argument for parseInt()
"radix": 2
"globals": {
"parser": "esprima-fb",
"browser": true,
"jquery": true
"extends": "eslint:recommended",
"plugins": [
\ No newline at end of file
http://git-wip-us.apache.org/repos/asf/allura/blob/b4f0ae43/.eslintrc-es6
----------------------------------------------------------------------
diff --git a/.eslintrc-es6 b/.eslintrc-es6
new file mode 100644
index 5b95a
--- /dev/null
+++ b/.eslintrc-es6
@@ -0,0 +1,39 @@
"rules": {
"max-len": [1, 119, 4],
"indent": [2, 4],
"jsx-quotes": [0],
"quotes": [0],
"operator-linebreak": [2, "before", { "overrides": { "?": "after", "&&": "after"
"require-jsdoc": [2, {"require": {
"FunctionDeclaration": true,
"MethodDefinition": false,
"ClassDeclaration": false
"no-inline-comments": 0,
"comma-dangle": 0
"globals": {
"ReactDOM": true,
"React": true,
"$": true,
"window": true,
"_": true,
"ReactReorderable": true
"parser": "babel-eslint",
"es6": true,
"browser": true
"extends": "google",
"ecmaFeatures": {
"jsx": true,
"forOf": true,
"experimentalObjectRestSpread": true
"plugins": [
\ No newline at end of file
http://git-wip-us.apache.org/repos/asf/allura/blob/b4f0ae43/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 1f12ff5..3ae1bc9 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,9 @@
"watch": "broccoli-timepiece Allura/allura/public/nf/js/build/",
"env": "env",
"eslint": "eslint",
"lint": "eslint Allura/allura/public/nf/js/*.es6.js || true"
"lint-es5": "eslint -c .eslintrc-es5
--ignore-path .eslintignore-es5 Allura/allura/public/**/*.js
"lint-es6": "eslint -c .eslintrc-es6
--ignore-path .eslintignore-es6 Allura/allura/public/**/*.es6.js
"lint": "npm run lint-es5 && npm run lint-es6"
"repository": {
"type": "git",
(inline, 7-Bit, 5085 bytes)帖子很冷清,卤煮很失落!求安慰
手机签到经验翻倍!快来扫一扫!
拍微距和近景较多,镜头选择17-85还是18-200好呢?(各位大侠指点迷津)
2976浏览 / 20回复
小弟想买一台佳能60D, 之前没有接触过单反 选择让我很是发愁,我拍微距、近景较多,镜头选择17-85还是18-200好呢?上18-135,可是它没有防抖功能,又担心随手拍,出片会模糊。18-200拍风景和远景是比较好,那拍微距和近景效果会比17-85差好多吗?(各位大侠指点迷津)非常感谢!
热门排名: 第26名
所有镜头都可近摄,个体之间会有放大倍率的小幅差别,但真正的微距是需要微距镜头来拍摄的,或者在普通镜头加近摄镜效果也不错。
个人推荐17-85,因为我就是用的这个,吼吼
对 楼主 浪漫宇宙 说:=========================首推15-85 或者17-40 入手。。
对比来看选18-200更适合你,放大倍率更大些,还带防抖,虚化效果更好,近景拍人也够用了!
对 第3楼 佐汉 说:=========================顶佐版!
18-135俺曾经用过,也有防抖啊:佳能EF-S 18-135mm f/3.5-5.6 IS,防抖性能:光学防抖(相当于4级快门速度)
同意3楼佐版意见 入这两头其一 日后不会后悔
引用:6楼 溜溜和爸爸 于
14:16:15 发表
18-135俺曾经用过,也有防抖啊:佳能EF-S 18-135mm f/3.5-5.6 IS,防抖性能:光学防抖(相当于4级快门速度) [/quote]正解!我也是用18—135,和18—200相比只是变焦倍数小点,但18—200的长焦段成像差。
真喜欢微距的直接百微
引用:6楼 溜溜和爸爸 于
14:16:15 发表
18-135俺曾经用过,也有防抖啊:佳能EF-S 18-135mm f/3.5-5.6 IS,防抖性能:光学防抖(相当于4级快门速度) [/quote]我用的是佳能EF-S18-135MM镜头。
上佳能EF-S18-135MM合适。我用17-85,55-250镜头,感觉有点麻烦。
对 第3楼 佐汉 说:=========================谢谢版主回复,是不是长焦镜头,拍微距效果更好吗?
谢谢大家的回复非常感谢,18—200的长焦段成像差,和17-85短焦比明显吗
对 第12楼 浪漫宇宙 说:=========================长焦有一定放大效果,但,想要微距效果好,需要配相对更加专注于微距的镜头,比如百微,并且可以增加近摄接圈以提高放大倍率。
没有镜头可以达到所有拍摄目的,必须有所取舍。想要大而全而又不舍得投入资金,那是不可能办到的。
对 楼主 浪漫宇宙 说:=========================LZ,谁告诉你18-135没有防抖的????18-135当然有防抖啊!!!
不过要是拍微距还是百微好~~~~
现在17-85只比18-135贵1、2百元,如果要在这二款选,我推荐17-85
对 第15楼 功小羊 说:=========================我是看了,ZOL里面的参数对比,17-85和18-200写着光学防抖,18-135没有,你可以去看看。
[quote]引用:17楼 浪漫宇宙 于
20:56:20 发表我是看了,ZOL里面的参数对比,17-85和18-200写着光学防抖,18-135没有,你可以去看看。[/quote]http://detail.zol.com.cn/210/209095/param.shtml自己去看看ZOL里面的镜头参数吧…………光学参数最后一行,防抖性能!!再说了,18-135的型号后面就带了个“IS”,佳能的镜头里面IS就是防抖啊!!!不知道说你什么好了,真是马虎啊~~~~
可能感兴趣的板块:
用户名/注册邮箱/注册手机号
其他第三方号登录当开最大光圈仍无法正常拍摄时,需调整摄像机的什么功能键。_百度知道
当开最大光圈仍无法正常拍摄时,需调整摄像机的什么功能键。
我有更好的答案
那就得加增益了。一般是三档。3、6、12但要注意增益是电子处理,会有噪点。关于摄像机方面的资料,你可以参考我的百度空间。
海达郝老师
调整感光度,建议不要超过800使用摄像灯或者增加外界光源
为什么无法拍摄?是因为环境比较暗吗?那就开高感光度啊!把速度调慢
可以增加ISO感光度,快门速度调慢,曝光补偿...增加ISO颗粒会很粗,调慢快门速度会影响拍摄的清晰度需要三角架
你的意思是还是亮度不够?增加ISO
开增益,开到最大看看,噪点比较大。不行就打灯
其他4条回答
为您推荐:
其他类似问题
您可能关注的内容
最大光圈的相关知识
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。AE摄像机景深怎么没有效果 哪里出错了啊?无论怎么调,一点效果也没有_百度知道
AE摄像机景深怎么没有效果 哪里出错了啊?无论怎么调,一点效果也没有
求帮助啊 大神
我有更好的答案
在摄像机选项里,你还要调节孔径大小和模糊层次,多试试不同的参数,还有你仔细看看是不是没有打开景深
你看下那图吧,我都改过啊 多大都没有用 不知道为什么,用别人的工程文件就可以显示,纠结啊
……自己做不行,用别人的就行,还真是邪门,我也无能为力
那你能告诉吓我这个具体使用方法原理么,哪些禁忌
我也是自学
这种问题你只有找老师去解决
采纳率:43%
来自团队:
关掉Draft 3D
必须是三位图层才可以
是三维的啊 我三维开关都打开了的。。。。
1条折叠回答
为您推荐:
其他类似问题
您可能关注的内容
景深的相关知识
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。}

我要回帖

更多关于 苹果手机拍近景模糊 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信