diff --git a/model/wbb.txt b/model/wbb.txt new file mode 100644 index 0000000..d64c0e4 --- /dev/null +++ b/model/wbb.txt @@ -0,0 +1,2 @@ +6666677777 +wbbbbbbbb \ No newline at end of file diff --git a/other/wbb.txt b/other/wbb.txt new file mode 100644 index 0000000..d64c0e4 --- /dev/null +++ b/other/wbb.txt @@ -0,0 +1,2 @@ +6666677777 +wbbbbbbbb \ No newline at end of file diff --git a/scr/模糊专家系统/.gitignore b/scr/模糊专家系统/.gitignore new file mode 100644 index 0000000..2d2b47d --- /dev/null +++ b/scr/模糊专家系统/.gitignore @@ -0,0 +1,2 @@ +.idea +node_modules \ No newline at end of file diff --git a/scr/模糊专家系统/README.md b/scr/模糊专家系统/README.md new file mode 100644 index 0000000..d8077cd --- /dev/null +++ b/scr/模糊专家系统/README.md @@ -0,0 +1,549 @@ +相机导购专家系统 +==================================== + +如今单反相机的高度发达为摄影爱好者带来了无限的可能,让每个人都可以在花不是那么多钱的情况下创造艺术或是记录生活。我认为,这是科技给人带来的福音。 + +然而,正是因为单反市场太过发达,初入单反坑的玩家往往被搞得晕头转向。常见的单反厂商有尼康、索尼、佳能。高端市场有哈苏、徕卡,低端市场有理光、富士等。每个品牌又有很多个产品线,各有不同,设计给不同需求的用户使用。 + +如果对单反相机的参数没有深入的研究,仅仅是听商家的吹捧,那很难在最高的性价比上买到合适自己的那款相机。往往会花冤枉钱,或发现相机的主打功能自己根本就用不上。 + +本专家系统就为了解决这个问题而创建,担任一个细心公正的相机导购师,通过询问用户更在意哪方面的内容、平时使用情景、预算、对重量的承受能力等,为用户推荐最合适的相机,让用户少花冤枉钱,用最少的钱买到最有用的相机。 + +# 数据库的采集 + +对专家系统而言,不仅要有规则数据库,相机本身各项指标的数据库也非常重要。本专家系统采集权威平台:DxOMark的数据库,来获得详细的相机各项指标数据。 + +由于没有现成的数据可供下载,我自己使用NodeJS写了采集程序来做这件事情。代码如下: + +```javascript +let request = require('request').defaults({ 'proxy': "http://127.0.0.1:1080" }); +let Queue = require('promise-queue'); +let fs = require('fs'); +let path = require('path'); +let queue = new Queue(10); //最多同时10线程采集 + +request('https://www.dxomark.com/daksensor/ajax/jsontested', //获得相机列表 + (error, response, body) => { + let cameraList = JSON.parse(body).data; + let finishedCount = 0; + cameraList.forEach(cameraMeta => { + let camera = Object.assign({}, cameraMeta); + let link = `https://www.dxomark.com${camera.link}---Specifications`; //拼合对应的规格网址 + queue.add(() => new Promise(res => { //把request放入队列,以保证同时http请求不超过10个 + let doRequest = () => { + request(link, (error, response, body) => { + if (error) { //如果失败则重试 + console.log("retrying.." + camera.name); + doRequest(); + return; + } + let specMatcherRegexp = /descriptifgauche.+?>([\s\S]+?)<\/td>[\s\S]+?descriptif_data.+?>([\s\S]+?)<\/td>/img; + let match = specMatcherRegexp.exec(body); + while (match) { //用正则表达式匹配table里的每一个项目,并添加至采集结果中 + camera[match[1]] = match[2]; + match = specMatcherRegexp.exec(body); + } + fs.writeFileSync(path.join('./scraped', camera.name + '.txt'), JSON.stringify(camera, null, 4), { encoding: "UTF8" }); + finishedCount++; + console.log(`Finished ${finishedCount}/${cameraList.length}: ${camera.name}`); + res(); + }) + }; + doRequest(); + })); + }); + }); +``` + +采集结果如图所示,总共采集到357款单反产品: +![scrape](imgs/scrape.gif) + +# 数据清洗 + +数据采集完了,但有些数据比较脏(如含有 ),有些数据是我们不需要的,有些数据用起来不方便(如分辨率是 1234 x 1234形式的字符串),属性名中有空格和大写字符,也不美观。因此,额外添加一步数据清洗。 + +数据清洗之后,希望留下以下属性: + +> 相机名称、相机图片、价格、像素数量、每秒连拍数量、重量、对焦系统质量、最大感光度、模型出厂日期、触屏存在、可录视频、有闪光灯、有蓝牙、有GPS、防水、机身材质质量 + +数据清洗的代码实现为: +```javascript +let fs = require("fs"); +let path = require("path"); + +function parseNumberFunctionFactory(keyMatcher, valueMatcher = /(\d+\.?\d*)/im, + returnValueDecider = match => +match[1]) { + return (data) => { + let key = Object.keys(data).filter(_ => keyMatcher.test(_.trim()))[0]; + if (!key) return null; + let match = data[key].toString().match(valueMatcher); + if (match) + return returnValueDecider(match); + else + return null; + }; +} + +let parseResolution = parseNumberFunctionFactory(/^resolution$/im, /(\d+)\s*x\s*(\d+)/im, match => [+match[1], +match[2]]); +let parseFrameRate = parseNumberFunctionFactory(/frame rate/im); +let parseWeight = parseNumberFunctionFactory(/weight/im); +let parseAutoFocus = parseNumberFunctionFactory(/number of autofocus points/im); +let parseISO = parseNumberFunctionFactory(/ISO latitude/im, /(\d+)\s*-\s*(\d+)/im, match => [+match[1], +match[2]]); +let parseLaunchDate = parseNumberFunctionFactory(/launchDateGraph/im, /(\d+)-(\d+)-(\d+)/im, match => new Date(match[1], match[2] - 1, match[3])); +let parseTouchScreen = parseNumberFunctionFactory(/Touch screen/im, /yes/im, match => !!match); +let parseVideo = parseNumberFunctionFactory(/^Video$/m, /yes/im, match => !!match); +let parseFlash = parseNumberFunctionFactory(/^flash$/im, /yes/im, match => !!match); +let parseWaterproof = parseNumberFunctionFactory(/^waterproof$/im, /yes/im, match => !!match); +let parseBluetooth = parseNumberFunctionFactory(/^Bluetooth$/im, /yes/im, match => !!match); +let parseGps = parseNumberFunctionFactory(/^GPS$/im, /yes/im, match => !!match); +let parseIsMetal = parseNumberFunctionFactory(/^camera material$/im, /metal/im, match => !!match); + +let files = fs.readdirSync("./scraped"); +files.forEach(file => { + let data = JSON.parse(fs.readFileSync(path.join('./scraped', file), { encoding: "utf8" })); + let resolution = parseResolution(data); + //机身材质质量 + let frameRate = parseFrameRate(data); + let weight = parseWeight(data); + let autoFocus = parseAutoFocus(data); + let iso = parseISO(data); + let launchDate = parseLaunchDate(data); + let touchScreen = parseTouchScreen(data); + let video = parseVideo(data); + let flash = parseFlash(data); + let waterproof = parseWaterproof(data); + let bluetooth = parseBluetooth(data); + let gps = parseGps(data); + let isMetal = parseIsMetal(data); + let cleanedData = { + name: data.name, + image: data.image, + brand: data.brand, + price: data.price, + pixelDepth: data.pixelDepth, + pixels: resolution ? (resolution[0] * resolution[1]) : 0, + ISO: iso, + maxISO: iso ? iso[1] : 0, + launchDate: +launchDate, + touchScreen, + video, + flash, + waterproof, + bluetooth, + gps, + isMetal, + frameRate, + resolution, + weight, + autoFocus, + }; + fs.writeFileSync(path.join('./cleaned', file), JSON.stringify(cleanedData, null, 4), { encoding: "utf8" }); +}); +``` + +清洗结果演示: +```json +{ + "name": "Nikon D5", + "image": "//cdn.dxomark.com/dakdata/xml/D5/vignette3.png", + "brand": "Nikon", + "price": 6500, + "pixelDepth": 20.8, + "pixels": 20817152, + "ISO": [ + 50, + 3280000 + ], + "maxISO": 3280000, + "launchDate": 1452009600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5584, + 3728 + ], + "weight": 1225, + "autoFocus": 153 +} +``` +看起来好多了。 + +# 问题的设计 +斟酌一番后,我决定将询问用户的问题定为: + +1. 您将如何使用本相机(多选) + * 记录旅行 + * 拍摄学校或公司活动 + * 拍摄体育比赛 + * 拍摄自然风景 + * 拍摄人像 + * 拍摄天文 +2. 您看中哪些额外功能吗(多选) + * 内置闪光灯 + * 可录制视频 + * 可蓝牙传输照片 + * 可触屏 + * 内置GPS + * 防水 +3. 您是否愿意承受单反的重量 + * 没问题,3公斤的机器都扛得住 + * 在能避免负重的情况下尽可能避免负重 + * 不愿意接受重的单反,必须较为轻便 +4. 您愿意在单反上投入的经济 + * 很多,一步到位买高端设备 + * 普通,好用实用的设备 + * 经济,请推荐入门基本款 +5. 您有什么别的要求吗(多选) + * 尽量购买新的型号 + * 机身材质要好 + + +# 模糊专家系统的设计 + +一个显著的问题是:模糊专家系统一般只能用于数值的计算(如评估房价),但我这里做的,却是根据用户的输入推荐产品。用模糊专家系统如何做产品推荐呢? + +绕一个弯,不难解决这个问题:使用模糊专家系统对每一款相机产品计算出一个“推荐度”,根据推荐度排序,给用户推荐排名前三的产品。 + +具体的,我使用专家系统,计算出以下几个指标: + +> 适合拍摄旅行,适合拍摄活动,适合拍摄体育,适合拍摄风景,适合拍摄人像,适合拍摄天文,型号新,机身材质好,重量轻,价格低 + +用户的要求可以和这几个指标对号入座,来计算要求满足度。 + +对于另外一些如“有内置闪光灯”等指标,用不着用模糊专家系统,直接布尔判断来算满足度。 + +满足度根据规则加权平均,就是产品的总推荐度,排序后,前几名就是推荐给用户的相机。 + +这样做的好处,除了推荐相机之外,还可以列出相机的Pros & Cons (如:+ 适合拍摄天文 + 可录制视频 - 重量较重),只要去取满足度最高/最低的几名就可以了。 + +为实现模糊专家系统,我使用jFuzzyLogic框架,它是Java下最完整的模糊逻辑框架,支持fuzzy language (FCL),IEC 61131-7标准。 + +# 规则的建立 + +模糊专家系统在相机推荐中,最重要的工作就是:建立相机参数和相机适合拍摄的照片种类之间的联系,比如: + +> 适合拍摄体育类型相片的相机,需要有**很高**的连拍速度、**较好**的对焦系统。 + +在这个实验性的导购系统中,由我自己担任“领域专家”的角色。 + +首先,要定义术语,如: + +* 价格(美金)便宜: \$0-1000 中等: \$600-1700 贵: \$1500- + +翻译成FCL之后: + +``` +FUZZIFY price + TERM low := (0, 1) (1000, 0) ; + TERM medium := (600, 0) (800,1) (1500,1) (1700,0); + TERM high := (1500, 0) (1700, 1); +END_FUZZIFY + +FUZZIFY weight + TERM light := (0, 1) (500, 0) ; + TERM medium := (300, 0) (500,1) (700,1) (1000,0); + TERM heavy := (800, 0) (1000, 1); +END_FUZZIFY + +... +``` + +每个术语的定义如图所示: + +![fuzzify](imgs/fuzzify.gif) + +然后,要定义defuzzify规则,这里方便起见,均只定义“veryGood”、“good”、"average"、"bad"、"veryBad"。 + +``` +DEFUZZIFY travel + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY +``` + +最后,要定义规则,举例如下: + +* 如果 感光度范围 很高 而且 像素 高 那么 适合拍天文 高 + +* 如果 连拍速度 很高 而且 对焦系统 好 那么 适合拍体育 高 + +* 如果 重量 轻 且 有GPS 那么 适合记录旅行 高 + +* …… + +翻译成FCL之后: + +``` +RULEBLOCK travel + AND : MIN; + RULE 1 : IF weight IS light THEN travel IS good; + RULE 2 : IF video IS yes THEN travel IS good; + RULE 3 : IF gps IS yes THEN travel IS good; + RULE 4 : IF flash IS no THEN travel IS bad; + RULE 5 : IF weight IS heavy THEN travel IS veryBad; +END_RULEBLOCK + +RULEBLOCK sports + AND : MIN; + RULE 1 : IF frameRate IS high THEN sports IS veryGood; + RULE 2 : IF autoFocus IS high THEN sports IS veryGood; + RULE 3 : IF pixels IS high THEN sports IS good; + RULE 4 : IF frameRate IS low THEN sports IS veryBad; + RULE 5 : IF autoFocus IS low THEN sports IS veryBad; +END_RULEBLOCK + +RULEBLOCK astronomy + AND : MIN; + RULE 1 : IF pixels IS high THEN astronomy IS good; + RULE 2 : IF pixelDepth IS high THEN astronomy IS good; + RULE 3 : IF maxISO IS high THEN astronomy IS good; + RULE 4 : IF maxISO IS low THEN astronomy IS veryBad; + RULE 5 : IF pixels IS low THEN astronomy IS veryBad; +END_RULEBLOCK + +... +``` + +# 打分的具体实现 +数据和规则都准备就绪后,就可以开始进行模糊推理。 + +Java程序框架如下: + +```java +package ai.fuzzy; + +import com.alibaba.fastjson.JSON; +import net.sourceforge.jFuzzyLogic.FIS; +import net.sourceforge.jFuzzyLogic.FunctionBlock; +import net.sourceforge.jFuzzyLogic.plot.JFuzzyChart; +import net.sourceforge.jFuzzyLogic.rule.Variable; + +import java.io.*; +import java.nio.file.Paths; + +class CameraData { + public CameraAssessment assessment; + public String name; + public String image; + public String brand; + public Integer price; + public Integer pixelDepth; + public Integer pixels; + public Integer maxISO; + public Integer weight; + public Integer autoFocus; + public Long launchDate; + public Float frameRate; + public Integer[] resolution; + public Integer[] ISO; + public boolean touchScreen; + public boolean video; + public boolean flash; + public boolean waterproof; + public boolean bluetooth; + public boolean gps; + public boolean isMetal; +} + +class CameraAssessment { + public double travel; + public double event; + public double sports; + public double scenery; + public double portrait; + public double astronomy; + public double newModel; + public double durableBuild; + public double lightBuild; + public double lowPrice; +} + +public class Main { + public static void main(String[] args) throws IOException { + File rootFolder = new File("input"); + for (final File fileEntry : rootFolder.listFiles()) { + if (fileEntry.isFile()) { + CameraData camera = JSON.parseObject(readFileContents(fileEntry), CameraData.class); + camera.assessment = assess(camera); + writeFile(fileEntry, JSON.toJSONString(camera, true)); + } + } + } + + private static void writeFile(File fileEntry, String jsonString) throws FileNotFoundException { + ... + } + + private static String readFileContents(File fileEntry) throws IOException { + ... + } + + static CameraAssessment assess(CameraData cameraData) { + ... + } +} + +``` + +```assess```函数如下: + +```java + + static CameraAssessment assess(CameraData cameraData) { + CameraAssessment cameraAssessment = new CameraAssessment(); + String fileName = "fcl/camera.fcl"; + FIS fis = FIS.load(fileName, true); + + // Set inputs + fis.setVariable("price", cameraData.price); + fis.setVariable("pixelDepth", cameraData.pixelDepth); + fis.setVariable("pixels", cameraData.pixels); + fis.setVariable("maxISO", cameraData.maxISO); + fis.setVariable("weight", cameraData.weight); + fis.setVariable("autoFocus", cameraData.autoFocus); + fis.setVariable("launchDate", cameraData.launchDate); + fis.setVariable("frameRate", cameraData.frameRate); + fis.setVariable("touchScreen", cameraData.touchScreen ? 1 : 0); + fis.setVariable("video", cameraData.video ? 1 : 0); + fis.setVariable("flash", cameraData.flash ? 1 : 0); + fis.setVariable("waterproof", cameraData.waterproof ? 1 : 0); + fis.setVariable("bluetooth", cameraData.bluetooth ? 1 : 0); + fis.setVariable("gps", cameraData.gps ? 1 : 0); + fis.setVariable("isMetal", cameraData.isMetal ? 1 : 0); + + // Evaluate + fis.evaluate(); + + // Save results to cameraAssessment + cameraAssessment.travel = fis.getVariable("travel").defuzzify(); + cameraAssessment.event = fis.getVariable("event").defuzzify(); + cameraAssessment.sports = fis.getVariable("sports").defuzzify(); + cameraAssessment.scenery = fis.getVariable("scenery").defuzzify(); + cameraAssessment.portrait = fis.getVariable("portrait").defuzzify(); + cameraAssessment.astronomy = fis.getVariable("astronomy").defuzzify(); + cameraAssessment.newModel = fis.getVariable("newModel").defuzzify(); + cameraAssessment.durableBuild = fis.getVariable("durableBuild").defuzzify(); + cameraAssessment.lightBuild = fis.getVariable("lightBuild").defuzzify(); + cameraAssessment.lowPrice = fis.getVariable("lowPrice").defuzzify(); + + return cameraAssessment; + } +``` + +调用后,模糊专家系统就会给每个相机做评测,并作出如下输出: + +```json +"assessment": { + "astronomy": 0.07206054514320881, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.20107756449438624, + "portrait": 0.2280106572609703, + "scenery": 0.2280106572609703, + "sports": 0.07875190169689873, + "travel": 0.16167332382310975, + }, +``` + +分别是相机对于每一项情景的适合度,在0-1之间。 + +接下来,需要把用户输入和适合度整合,得出总评分。 + +这里,总评分直接通过用户输入和适合度做内积的方法获得,评分的同时,也记录分数变动记录,这样给用户推荐就可以说明推荐原因。 + +```javascript +function evaluate(item, tags) { + let score = 0, changes = []; + tags.forEach(tag => { + let reverse = false; + let normalizedTag = tag; + if (tag.startsWith("!")) { + //允许使用!开头,表示相反。如:!lowPrice时,lowPrice原本加分现在变成减分 + reverse = true; + normalizedTag = tag.substr(1); + } + let scoreChange = 0; + if (item.assessment[normalizedTag]) { // 如果是专家系统assess出来的结果,一个占20分 + scoreChange = (reverse ? -1 : 1) * (item.assessment[normalizedTag] * 20) * (weight[normalizedTag] || 1); + } else { // 如果不是,那么是“防水”等基本要求,一个占3分 + scoreChange = (reverse ? -1 : 1) * (item[normalizedTag] ? 1 : -1) * 3 * (weight[normalizedTag] || 1); + } + if (scoreChange) { + score += scoreChange; + changes.push([scoreChange, tag]); // 记录评分变化,之后好出pros & cons + } + }); + return { score, changes }; +} +``` + +系统核心算法大致就完成了。 + +# 参数调整 +参数调整方面,花了不少心思。 + +原来的专家系统规则中,用了比较多的OR,导致多款相机某个指标打分非常相近,没有区分度。因此,我后来重写了FCL,尽量避免使用OR。为了拉开差距,我还把原来的“good”、"average"、"bad"改成了“veryGood”、“good”、"average"、"bad"、"veryBad",以说明某些规格的重要性大于其他规格。 + +由于RULES的good、bad不平衡,会导致一些assessment普遍偏低,另一些普遍偏高,因此,在后续处理中,我把这些assessment进行了normalization,让他们的平均值归一到0。 + +又出现了新的问题:推荐的相机,基本都是“价格低”、“型号新”,即这两个特性给相机总体加分太多,掩盖了别的优点,因此,我人工指定了指标的权重,以削弱价格和型号新旧对总体评分的影响,彰显“适合拍的类型”在推荐中的占比。 + +但还有很多问题,其中最主要的是:数据区分度不明显,高端相机的数据都差不多;指标内部有较强的关联性(合适拍天文的,一般也合适拍风景)。数据内部关联性不好解决。 + +经过一番调整,系统可以产生尚可的结果。 + +# 前端与运行效果 + +为了获得更好的效果,我为专家系统做了一个用户友好的前端界面,可以引导用户输入信息、以用户友好的方式给出推荐结果。前端是使用React + antd做的,基于Web。代码省略,界面长这样: + +![ui](imgs/ui.png) + +以上用户选择会被转换为tags: + +```json +["travel", "scenery", "video", "gps", "!lowPrice", "durableBuild"] +``` + +然后,这些tags会被送到之前设计好的系统中进行运算(内积rank),获得结果。 + +![ui2](imgs/ui2.png) + +可以看出,本系统可以根据用户的需要推荐相机(Pros和Cons都与用户第一步选择的“需求”有关)。 + +并能以一种易于理解的方式说清楚每一项“需求”是如何影响最终打分的。 + +# 结论 + +本导购系统只是一个试水,效果还过得去。 + +在进行导购系统制作的过程中,我充分体验了制作一个专家系统需要的每一个步骤。从采集数据,到模糊集定义,到模糊集推理,到整合结果并输出给用户看。 + +这个专家系统与普通的估测房价/工资/小费的模糊专家系统不同,必须对模糊专家系统defuzzify之后的结果进行进一步的整合,并给用户做出推荐。这个整合算法,应该也能算是广义专家系统的一部分吧。 + +效果比预期的稍微差一些,我认为原因主要在: + +1. 原始数据不够完整(DxOMark上仍然很多型号缺很多数据) +2. 数据区分度不高、内部关联性太强(高端相机的指标都差不多;合适拍天文的,一般也合适拍风景) + +进一步完善数据库、调整参数、或换一种性价比的模型之后,有望提升整体效果。 + +但无论如何,本专家系统至少做到了往正确的方向响应用户的输入,有理有据地为用户推荐符合要求的相机。 + +这种专家系统是有价值的,在进一步的优化后,说不定能产生一些商业效益。 + +现在我仅仅对机身做了推荐,如果加上镜头的组合,那么规则更加复杂、要考虑的因素更加多。 + +但按照规则解决这些复杂的问题,或许就是专家系统真正意义所在。真的解决之后,专家系统就可以和一个专业的人类导购师一样,耐心服务每一位顾客,让每个人都把钱花在刀刃上。 \ No newline at end of file diff --git a/scr/模糊专家系统/README.pdf b/scr/模糊专家系统/README.pdf new file mode 100644 index 0000000..37d2c00 Binary files /dev/null and b/scr/模糊专家系统/README.pdf differ diff --git a/scr/模糊专家系统/frontend/.gitignore b/scr/模糊专家系统/frontend/.gitignore new file mode 100644 index 0000000..eb79dd5 --- /dev/null +++ b/scr/模糊专家系统/frontend/.gitignore @@ -0,0 +1,2 @@ +node_modules +.idea diff --git a/scr/模糊专家系统/frontend/package.json b/scr/模糊专家系统/frontend/package.json new file mode 100644 index 0000000..952e2ff --- /dev/null +++ b/scr/模糊专家系统/frontend/package.json @@ -0,0 +1,32 @@ +{ + "name": "frontend", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "webpack-dev-server" + }, + "dependencies": { + "antd": "^3.1.0", + "babel-core": "^6.26.0", + "babel-loader": "^7.1.2", + "babel-plugin-transform-object-rest-spread": "^6.26.0", + "babel-preset-es2015": "^6.24.1", + "babel-preset-react": "^6.24.1", + "css-loader": "^0.28.7", + "html-webpack-plugin": "^2.30.1", + "react": "^16.2.0", + "react-dom": "^16.2.0", + "style-loader": "^0.19.0", + "webpack": "^3.8.1", + "webpack-dev-server": "^2.9.4" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "babel-plugin-import": "^1.6.3", + "less": "^2.7.3", + "less-loader": "^4.0.5" + } +} diff --git a/scr/模糊专家系统/frontend/src/App.jsx b/scr/模糊专家系统/frontend/src/App.jsx new file mode 100644 index 0000000..d1cd01a --- /dev/null +++ b/scr/模糊专家系统/frontend/src/App.jsx @@ -0,0 +1,154 @@ +import React from 'react'; +import "./index.less"; +import rank from "./rank"; +import translateTag from "./translateTag"; +import { Layout, Menu, Breadcrumb, Button, Checkbox, Divider } from 'antd'; +const { Header, Content, Footer } = Layout; +import questions from "./questions"; + +export default class App extends React.Component { + constructor() { + super(); + this.state = { + selection: [[1, 0, 1, 0, 1, 1], [1, 1, 0, 0, 1], 0, 0, [1, 0]], + recommendations: [], + }; + } + + render() { + return +
+
+ + 相机推荐专家系统 + +
+ + + 相机推荐专家系统 + + + {!this.state.recommendations.length && +
+ {questions.map((question, questionIndex) => +
+

{question.text}

+ { + question.options.map((option, optionIndex) => +
{ + let newSelection = [...this.state.selection]; + if (question.multiple) { + newSelection[questionIndex] = [...newSelection[questionIndex]]; + newSelection[questionIndex][optionIndex] = _.target.checked; + } else { + if (!_.target.checked) return; + newSelection[questionIndex] = optionIndex; + } + this.setState({ selection: newSelection }); + }}>{option.text}
, + ) + } + +
, + )} + +
} + + {!!this.state.recommendations.length && +
+ {this.state.recommendations.map((recommendation, index) => +
+ #{index + 1} +
+
+
+ +
+
+ {recommendation.name} +
+
+ 推荐指数:{(recommendation.score+ 5).toFixed(2) } +
+
+ + + + + + + + + + + + + + + + + +
+ 价格: ${recommendation.price} + + 重量: {recommendation.weight}g + + 自动对焦: {recommendation.autoFocus}点 +
+ fps: {recommendation.frameRate} + + 分辨率: {recommendation.resolution[0]} * {recommendation.resolution[1]} px + + ISO: {recommendation.ISO[0]} ~ {recommendation.ISO[1]} +
+ 色彩位数: {recommendation.pixelDepth} px + + 出厂日期: {new Date(recommendation.launchDate).toLocaleDateString()} + + 其他功能: {recommendation.bluetooth ? "蓝牙" : ""} {recommendation.gps ? "GPS" : ""} {recommendation.touchScreen ? "触屏" : ""} {recommendation.video ? "录像" : ""} {recommendation.flash ? "闪光灯" : ""} {recommendation.waterproof ? "防水" : ""} +
+ +
+ +
+ Pros +
+ {recommendation.pros.map(_ => +
+ {translateTag(_[1])} +{_[0].toFixed(2)}
, + )} +
+
+ +
+ Cons +
+ {recommendation.cons.map(_ => +
- {translateTag(_[1], true)} {_[0].toFixed(2)}
, + )} +
+
+
+ +
+ +
, + )} +
} +
+ +
; + } +} \ No newline at end of file diff --git a/scr/模糊专家系统/frontend/src/data.js b/scr/模糊专家系统/frontend/src/data.js new file mode 100644 index 0000000..fd16f3b --- /dev/null +++ b/scr/模糊专家系统/frontend/src/data.js @@ -0,0 +1,14316 @@ +function normalizeAssessment(data) { + const shift = -.25; + let average = {}; + let sum = { + "astronomy": 0, + "durableBuild": 0, + "event": 0, + "lightBuild": 0, + "lowPrice": 0, + "newModel": 0, + "portrait": 0, + "scenery": 0, + "sports": 0, + "travel": 0, + }; + data.forEach(item => { + Object.keys(item.assessment).forEach(key => { + sum[key] += item.assessment[key]; + }); + }); + + Object.keys(sum).forEach(key => { + average[key] = (sum[key] / data.length); + }); + // console.log("average", average); + data.forEach(item => { + Object.keys(item.assessment).forEach(key => { + item.assessment[key] -= average[key]; + item.assessment[key] += shift; + }); + }); + return data; +} +let data = normalizeAssessment([ + { + "ISO": [ + 100, + 409600, + ], + "assessment": { + "astronomy": 0.7921614914185363, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.7856874321177771, + "portrait": 0.7576045965370796, + "scenery": 0.8045375741867704, + "sports": 0.9291960813256774, + "travel": 0.5369388594944149, + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 16, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/_EOS-1D_X_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1454342400000, + "maxISO": 409600, + "name": "Canon EOS-1D X Mark II", + "pixelDepth": 20, + "pixels": 20170320, + "price": 6000, + "resolution": [ + 5496, + 3670, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 1340, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07494712212536904, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7810649350649359, + "newModel": 0.36355583088798077, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1000D/vignette3.png", + "isMetal": false, + "launchDate": 1213027200000, + "maxISO": 1600, + "name": "Canon EOS 1000D", + "pixelDepth": 10, + "pixels": 10163412, + "price": 540, + "resolution": [ + 3906, + 2602, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5755769565758335, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000004, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.08141121495327112, + "travel": 0.6220838836751243, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_100D/vignette3.png", + "isMetal": true, + "launchDate": 1363795200000, + "maxISO": 25600, + "name": "Canon EOS 100D", + "pixelDepth": 18, + "pixels": 18103008, + "price": 650, + "resolution": [ + 5208, + 3476, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 370, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07831154821558377, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7910602920010132, + "newModel": 0.20206199259585128, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_10D/vignette3.png", + "isMetal": false, + "launchDate": 1046275200000, + "maxISO": 3200, + "name": "Canon EOS 10D", + "pixelDepth": 6, + "pixels": 6518336, + "price": 347, + "resolution": [ + 3152, + 2068, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5024719019858837, + "lowPrice": 0.7775606210893378, + "newModel": 0.4975339668211982, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08402243812167474, + "travel": 0.2107460535346639, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1100D/vignette3.png", + "isMetal": false, + "launchDate": 1297008000000, + "maxISO": 6400, + "name": "Canon EOS 1100D", + "pixelDepth": 12, + "pixels": 12507648, + "price": 599, + "resolution": [ + 4352, + 2874, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 495, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5310506986743073, + "lowPrice": 0.7833333333333332, + "newModel": 0.4999999999999988, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08402243812167474, + "travel": 0.5281263875886049, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1200D/vignette3.png", + "isMetal": false, + "launchDate": 1392134400000, + "maxISO": 6400, + "name": "Canon EOS 1200D", + "pixelDepth": 18, + "pixels": 18024930, + "price": 500, + "resolution": [ + 5202, + 3465, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 435, + }, + { + "ISO": [ + 50, + 3200, + ], + "assessment": { + "astronomy": 0.08088718423770246, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.21219561611464086, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 8.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II_N/vignette3.png", + "isMetal": false, + "launchDate": 1124640000000, + "maxISO": 3200, + "name": "Canon EOS 1D Mark II N", + "pixelDepth": 8, + "pixels": 8486560, + "price": 5986, + "resolution": [ + 3596, + 2360, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 3200, + ], + "assessment": { + "astronomy": 0.08088718423770246, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.20503698563063325, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 8.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II/vignette3.png", + "isMetal": false, + "launchDate": 1075305600000, + "maxISO": 3200, + "name": "Canon EOS 1D Mark II", + "pixelDepth": 8, + "pixels": 8486560, + "price": 1700, + "resolution": [ + 3596, + 2360, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 6400, + ], + "assessment": { + "astronomy": 0.09342324225505241, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2209083025062537, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_III/vignette3.png", + "isMetal": false, + "launchDate": 1172073600000, + "maxISO": 6400, + "name": "Canon EOS 1D Mark III", + "pixelDepth": 10, + "pixels": 10446048, + "price": 4050, + "resolution": [ + 3984, + 2622, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 102400, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.4623645236971117, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.07402016607354676, + "travel": 0.5369388594944149, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_IV/vignette3.png", + "isMetal": false, + "launchDate": 1255968000000, + "maxISO": 102400, + "name": "Canon EOS 1D Mark IV", + "pixelDepth": 16, + "pixels": 15980544, + "price": 5840, + "resolution": [ + 4896, + 3264, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1180, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.20771470038980863, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_II/vignette3.png", + "isMetal": false, + "launchDate": 1095696000000, + "maxISO": 3200, + "name": "Canon EOS 1Ds Mark II", + "pixelDepth": 16, + "pixels": 17101584, + "price": 6950, + "resolution": [ + 5108, + 3348, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 3200, + ], + "assessment": { + "astronomy": 0.4883569096025662, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22404805898254374, + "portrait": 0.7600269270691173, + "scenery": 0.9064384181476092, + "sports": 0.2835686488710699, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_III/vignette3.png", + "isMetal": false, + "launchDate": 1187539200000, + "maxISO": 3200, + "name": "Canon EOS 1Ds Mark III", + "pixelDepth": 21, + "pixels": 21557088, + "price": 7100, + "resolution": [ + 5712, + 3774, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1233, + ], + "assessment": { + "astronomy": 0.07206054514320881, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.20107756449438624, + "portrait": 0.2280106572609703, + "scenery": 0.2280106572609703, + "sports": 0.07875190169689873, + "travel": 0.16167332382310975, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds/vignette3.png", + "isMetal": false, + "launchDate": 1032796800000, + "maxISO": 1233, + "name": "Canon EOS 1Ds", + "pixelDepth": 11, + "pixels": 11094876, + "price": 2700, + "resolution": [ + 4082, + 2718, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 1265, + }, + { + "ISO": [ + 50, + 204800, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 14, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Dx/vignette3.png", + "isMetal": true, + "launchDate": 1318867200000, + "maxISO": 204800, + "name": "Canon EOS 1Dx", + "pixelDepth": 18, + "pixels": 18378666, + "price": 6800, + "resolution": [ + 5202, + 3533, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.7855811307617426, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.522251079660429, + "lowPrice": 0.7804838709677436, + "newModel": 0.799981870734887, + "portrait": 0.7715852026174138, + "scenery": 0.8332393753972969, + "sports": 0.5279560357326973, + "travel": 0.5211232696298297, + }, + "autoFocus": 9, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_200D/vignette3.png", + "isMetal": false, + "launchDate": 1498665600000, + "maxISO": 51200, + "name": "Canon EOS 200D", + "pixelDepth": 24, + "pixels": 25504128, + "price": 550, + "resolution": [ + 6288, + 4056, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 453, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07535797072568724, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.2073144372356606, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_20D/vignette3.png", + "isMetal": false, + "launchDate": 1092844800000, + "maxISO": 1600, + "name": "Canon EOS 20D", + "pixelDepth": 8, + "pixels": 8486560, + "price": 700, + "resolution": [ + 3596, + 2360, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.0737679018883037, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7920705751169291, + "newModel": 0.20346839241623776, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_300D/vignette3.png", + "isMetal": false, + "launchDate": 1061308800000, + "maxISO": 1600, + "name": "Canon EOS 300D", + "pixelDepth": 6, + "pixels": 6518336, + "price": 324, + "resolution": [ + 3152, + 2068, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08088718423770246, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5540553740977198, + "newModel": 0.2149295664334448, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_30D/vignette3.png", + "isMetal": false, + "launchDate": 1140451200000, + "maxISO": 3200, + "name": "Canon EOS 30D", + "pixelDepth": 8, + "pixels": 8486560, + "price": 738, + "resolution": [ + 3596, + 2360, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07521263147419484, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7798974358974388, + "newModel": 0.20961724884918687, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.0784042080851938, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 2.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_350D/vignette3.png", + "isMetal": false, + "launchDate": 1108569600000, + "maxISO": 1600, + "name": "Canon EOS 350D", + "pixelDepth": 8, + "pixels": 8185248, + "price": 560, + "resolution": [ + 3516, + 2328, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07471614206027041, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7822105263157916, + "newModel": 0.2178557811179551, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_400D/vignette3.png", + "isMetal": false, + "launchDate": 1156348800000, + "maxISO": 1600, + "name": "Canon EOS 400D", + "pixelDepth": 10, + "pixels": 10351656, + "price": 520, + "resolution": [ + 3948, + 2622, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08147334838865895, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.22404805898254374, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_40D/vignette3.png", + "isMetal": false, + "launchDate": 1187539200000, + "maxISO": 3200, + "name": "Canon EOS 40D", + "pixelDepth": 10, + "pixels": 10341168, + "price": 899, + "resolution": [ + 3944, + 2622, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7793057324840699, + "newModel": 0.2470739519371539, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_450D/vignette3.png", + "isMetal": false, + "launchDate": 1201104000000, + "maxISO": 1600, + "name": "Canon EOS 450D", + "pixelDepth": 12, + "pixels": 12401312, + "price": 570, + "resolution": [ + 4312, + 2876, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4385583965455643, + "portrait": 0.2453703030803535, + "scenery": 0.2453703030803535, + "sports": 0.0785942026656306, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_500D/vignette3.png", + "isMetal": false, + "launchDate": 1237910400000, + "maxISO": 12800, + "name": "Canon EOS 500D", + "pixelDepth": 15, + "pixels": 15039810, + "price": 1040, + "resolution": [ + 4770, + 3153, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.3936722085160627, + "portrait": 0.2453703030803535, + "scenery": 0.2453703030803535, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_50D/vignette3.png", + "isMetal": false, + "launchDate": 1219680000000, + "maxISO": 12800, + "name": "Canon EOS 50D", + "pixelDepth": 15, + "pixels": 15154290, + "price": 1300, + "resolution": [ + 4770, + 3177, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.47174036842704004, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07724829122938497, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D_pre_production/vignette3.png", + "isMetal": false, + "launchDate": 1265558400000, + "maxISO": 12800, + "name": "Canon EOS 550D pre production", + "pixelDepth": 18, + "pixels": 18789504, + "price": 900, + "resolution": [ + 5344, + 3516, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.47313961212919964, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08410422601060216, + "travel": 0.4999999999999997, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D/vignette3.png", + "isMetal": false, + "launchDate": 1267113600000, + "maxISO": 12800, + "name": "Canon EOS 550D", + "pixelDepth": 18, + "pixels": 17915904, + "price": 1000, + "resolution": [ + 5184, + 3456, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 25600, + ], + "assessment": { + "astronomy": 0.7676254200178484, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.4864719601124947, + "lowPrice": 0.1999999999999999, + "newModel": 0.40030730231223327, + "portrait": 0.7600174525443824, + "scenery": 0.8039867908150126, + "sports": 0.2751677762170413, + "travel": 0.4922776224805059, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_II/vignette3.png", + "isMetal": false, + "launchDate": 1221580800000, + "maxISO": 25600, + "name": "Canon EOS 5D Mark II", + "pixelDepth": 21, + "pixels": 21144402, + "price": 2199, + "resolution": [ + 5634, + 3753, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 810, + }, + { + "ISO": [ + 50, + 102400, + ], + "assessment": { + "astronomy": 0.7852640332162286, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.374491059147178, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.764356809725556, + "scenery": 0.8239906226360154, + "sports": 0.8582892526486077, + "travel": 0.441462135252791, + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_III/vignette3.png", + "isMetal": false, + "launchDate": 1330617600000, + "maxISO": 102400, + "name": "Canon EOS 5D Mark III", + "pixelDepth": 22, + "pixels": 23384000, + "price": 3499, + "resolution": [ + 5920, + 3950, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 910, + }, + { + "ISO": [ + 50, + 102400, + ], + "assessment": { + "astronomy": 0.7932706515974663, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000001, + "lowPrice": 0.1999999999999999, + "newModel": 0.7938960385640131, + "portrait": 0.7893076140630775, + "scenery": 0.8318405024316109, + "sports": 0.8349469265766305, + "travel": 0.6000000000000001, + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_IV/vignette3.png", + "isMetal": true, + "launchDate": 1472054400000, + "maxISO": 102400, + "name": "Canon EOS 5D Mark IV", + "pixelDepth": 30, + "pixels": 31262720, + "price": 3500, + "resolution": [ + 6880, + 4544, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 800, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.21219561611464086, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D/vignette3.png", + "isMetal": false, + "launchDate": 1124640000000, + "maxISO": 3200, + "name": "Canon EOS 5D", + "pixelDepth": 12, + "pixels": 13222104, + "price": 2000, + "resolution": [ + 4476, + 2954, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 12800, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.44498549799032006, + "lowPrice": 0.1999999999999999, + "newModel": 0.5815100981022692, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.8378640915593707, + "travel": 0.46951837792796974, + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS_R/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 5DS R", + "pixelDepth": 50, + "pixels": 51158016, + "price": 3900, + "resolution": [ + 8736, + 5856, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 845, + }, + { + "ISO": [ + 50, + 12800, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.44498549799032006, + "lowPrice": 0.1999999999999999, + "newModel": 0.5815100981022692, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.8378640915593707, + "travel": 0.46951837792796974, + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 5DS", + "pixelDepth": 50, + "pixels": 51158016, + "price": 3700, + "resolution": [ + 8736, + 5856, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 845, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5317947310647638, + "newModel": 0.4975339668211982, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08410422601060216, + "travel": 0.1999999999999999, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_600D/vignette3.png", + "isMetal": false, + "launchDate": 1297008000000, + "maxISO": 12800, + "name": "Canon EOS 600D", + "pixelDepth": 18, + "pixels": 18789504, + "price": 850, + "resolution": [ + 5344, + 3516, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 515, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.48616335099682817, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_60D/vignette3.png", + "isMetal": false, + "launchDate": 1282752000000, + "maxISO": 12800, + "name": "Canon EOS 60D", + "pixelDepth": 18, + "pixels": 17992016, + "price": 1199, + "resolution": [ + 5194, + 3464, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_650D/vignette3.png", + "isMetal": false, + "launchDate": 1339084800000, + "maxISO": 25600, + "name": "Canon EOS 650D", + "pixelDepth": 18, + "pixels": 18627840, + "price": 899, + "resolution": [ + 5280, + 3528, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 575, + }, + { + "ISO": [ + 50, + 102400, + ], + "assessment": { + "astronomy": 0.7874213959052214, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.799981870734887, + "portrait": 0.777490682209416, + "scenery": 0.8238056996089119, + "sports": 0.8367909995994819, + "travel": 0.6000000000000001, + }, + "autoFocus": 45, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 6.5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1498665600000, + "maxISO": 102400, + "name": "Canon EOS 6D Mark II", + "pixelDepth": 26, + "pixels": 26966016, + "price": 2000, + "resolution": [ + 6384, + 4224, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 685, + }, + { + "ISO": [ + 50, + 102400, + ], + "assessment": { + "astronomy": 0.7907297221479909, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7568273106758033, + "scenery": 0.8053950618745999, + "sports": 0.2569497272503779, + "travel": 0.6000000000000001, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 102400, + "name": "Canon EOS 6D", + "pixelDepth": 20, + "pixels": 20646144, + "price": 2099, + "resolution": [ + 5568, + 3708, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.5000000000000004, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_700D/vignette3.png", + "isMetal": true, + "launchDate": 1363795200000, + "maxISO": 25600, + "name": "Canon EOS 700D", + "pixelDepth": 18, + "pixels": 18103008, + "price": 750, + "resolution": [ + 5208, + 3476, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7687723241092553, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000012, + "portrait": 0.7576045965370796, + "scenery": 0.7917503569121463, + "sports": 0.7506182928923596, + "travel": 0.4999999999999997, + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_70D/vignette3.png", + "isMetal": false, + "launchDate": 1372694400000, + "maxISO": 25600, + "name": "Canon EOS 70D", + "pixelDepth": 20, + "pixels": 20170320, + "price": 1199, + "resolution": [ + 5496, + 3670, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7700512821846767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.5815100981022692, + "portrait": 0.7700512821846767, + "scenery": 0.9131164182807887, + "sports": 0.7652313700035975, + "travel": 0.4999999999999997, + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_750D/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 750D", + "pixelDepth": 24, + "pixels": 24228528, + "price": 750, + "resolution": [ + 6024, + 4022, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 510, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7700512821846767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5317947310647638, + "newModel": 0.5815100981022692, + "portrait": 0.7700512821846767, + "scenery": 0.9131164182807887, + "sports": 0.7652313700035975, + "travel": 0.4999999999999997, + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_760D/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 760D", + "pixelDepth": 24, + "pixels": 24228528, + "price": 850, + "resolution": [ + 6024, + 4022, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 510, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.7921614914185363, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5356718768052593, + "portrait": 0.7576045965370796, + "scenery": 0.8045375741867704, + "sports": 0.9255475967480529, + "travel": 0.6000000000000001, + }, + "autoFocus": 65, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 51200, + "name": "Canon EOS 7D Mark II", + "pixelDepth": 20, + "pixels": 20170320, + "price": 1800, + "resolution": [ + 5496, + 3670, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.4738502673796765, + "lowPrice": 0.1999999999999999, + "newModel": 0.4576839877747468, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.19255398624790912, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D/vignette3.png", + "isMetal": false, + "launchDate": 1251734400000, + "maxISO": 12800, + "name": "Canon EOS 7D", + "pixelDepth": 18, + "pixels": 18840400, + "price": 1974, + "resolution": [ + 5360, + 3515, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 820, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7864120703458854, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8415008769890358, + "travel": 0.4999999999999997, + }, + "autoFocus": 45, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_80D/vignette3.png", + "isMetal": true, + "launchDate": 1455724800000, + "maxISO": 25600, + "name": "Canon EOS 80D", + "pixelDepth": 24, + "pixels": 25504128, + "price": 1200, + "resolution": [ + 6288, + 4056, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 650, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9112032288698959, + "travel": 0.4999999999999997, + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M/vignette3.png", + "isMetal": true, + "launchDate": 1342972800000, + "maxISO": 25600, + "name": "Canon EOS M", + "pixelDepth": 18, + "pixels": 18627840, + "price": 799, + "resolution": [ + 5280, + 3528, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.715715321860331, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9329098228663452, + "travel": 0.4999999999999997, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M10/vignette3.png", + "isMetal": true, + "launchDate": 1444665600000, + "maxISO": 25600, + "name": "Canon EOS M10", + "pixelDepth": 18, + "pixels": 18103008, + "price": 600, + "resolution": [ + 5208, + 3476, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7815251864786922, + "lowPrice": 0.7774999999999945, + "newModel": 0.8000000000000005, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8439917435445609, + "travel": 0.5742906721158703, + }, + "autoFocus": 49, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 6.1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M100/vignette3.png", + "isMetal": true, + "launchDate": 1503936000000, + "maxISO": 25600, + "name": "Canon EOS M100", + "pixelDepth": 24, + "pixels": 25504128, + "price": 600, + "resolution": [ + 6288, + 4056, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 266, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000054, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9112032288698959, + "travel": 0.4999999999999997, + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M2/vignette3.png", + "isMetal": true, + "launchDate": 1386000000000, + "maxISO": 25600, + "name": "Canon EOS M2", + "pixelDepth": 18, + "pixels": 18103008, + "price": 650, + "resolution": [ + 5208, + 3476, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712751483066825, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.6673272877164017, + "lowPrice": 0.5281263875886054, + "newModel": 0.5815100981022692, + "portrait": 0.7700512821846767, + "scenery": 0.8294286039328348, + "sports": 0.8511560152480457, + "travel": 0.562683137739345, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M3/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 25600, + "name": "Canon EOS M3", + "pixelDepth": 24, + "pixels": 24228528, + "price": 870, + "resolution": [ + 6024, + 4022, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 320, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5662932330827082, + "lowPrice": 0.5048829182192582, + "newModel": 0.7945859514570968, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8439917435445609, + "travel": 0.5465891677675032, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M5/vignette3.png", + "isMetal": true, + "launchDate": 1473868800000, + "maxISO": 25600, + "name": "Canon EOS M5", + "pixelDepth": 24, + "pixels": 25504128, + "price": 980, + "resolution": [ + 6288, + 4056, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 380, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.611062516095502, + "lowPrice": 0.5438923933209653, + "newModel": 0.7985232099799165, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8439917435445609, + "travel": 0.5569471811079159, + }, + "autoFocus": 49, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M6/vignette3.png", + "isMetal": true, + "launchDate": 1487088000000, + "maxISO": 25600, + "name": "Canon EOS M6", + "pixelDepth": 24, + "pixels": 25504128, + "price": 780, + "resolution": [ + 6288, + 4056, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 343, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.4999999999999988, + "portrait": 0.23642481756120523, + "scenery": 0.23642481756120523, + "sports": 0.9112032288698959, + "travel": 0.4999999999999997, + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1_X_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1392134400000, + "maxISO": 12800, + "name": "Canon PowerShot G1 X Mark II", + "pixelDepth": 13, + "pixels": 14740832, + "price": 800, + "resolution": [ + 4432, + 3326, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 516, + }, + { + "ISO": [ + 80, + 1600, + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7851328804229709, + "newModel": 0.40030730231223327, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07282837839071495, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 1.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G10/vignette3.png", + "isMetal": false, + "launchDate": 1221580800000, + "maxISO": 1600, + "name": "Canon Powershot G10", + "pixelDepth": 14, + "pixels": 14999040, + "price": 467, + "resolution": [ + 4480, + 3348, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 3200, + ], + "assessment": { + "astronomy": 0.0814163743518294, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7820392337700567, + "newModel": 0.45637117003652616, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07209373243864912, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 1.1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G11/vignette3.png", + "isMetal": false, + "launchDate": 1250611200000, + "maxISO": 3200, + "name": "Canon Powershot G11", + "pixelDepth": 10, + "pixels": 10423296, + "price": 523, + "resolution": [ + 3744, + 2784, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 3200, + ], + "assessment": { + "astronomy": 0.08161559297498973, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.4874675526148574, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07567000940144156, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G12/vignette3.png", + "isMetal": false, + "launchDate": 1284393600000, + "maxISO": 3200, + "name": "Canon PowerShot G12", + "pixelDepth": 10, + "pixels": 9980928, + "price": 499, + "resolution": [ + 3648, + 2736, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7098110041944159, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.5650224805016064, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G15/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Canon Powershot G15", + "pixelDepth": 12, + "pixels": 12338304, + "price": 599, + "resolution": [ + 4048, + 3048, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 310, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.780541944127943, + "newModel": 0.49999999999999895, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5990232131948705, + "travel": 0.4999999999999997, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 12.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G16/vignette3.png", + "isMetal": true, + "launchDate": 1377100800000, + "maxISO": 12800, + "name": "Canon PowerShot G16", + "pixelDepth": 12, + "pixels": 12835904, + "price": 549, + "resolution": [ + 4192, + 3062, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5039297217996406, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.5039235324633394, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1X/vignette3.png", + "isMetal": true, + "launchDate": 1326038400000, + "maxISO": 12800, + "name": "Canon PowerShot G1X", + "pixelDepth": 14, + "pixels": 15133536, + "price": 799, + "resolution": [ + 4496, + 3366, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 492, + }, + { + "ISO": [ + 125, + 25600, + ], + "assessment": { + "astronomy": 0.7682225986960214, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.637258068873028, + "portrait": 0.7570392348728391, + "scenery": 0.7935462995979276, + "sports": 0.8781934932810521, + "travel": 0.4999999999999997, + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G3_X/vignette3.png", + "isMetal": true, + "launchDate": 1434556800000, + "maxISO": 25600, + "name": "Canon PowerShot G3 X", + "pixelDepth": 20, + "pixels": 20444448, + "price": 1000, + "resolution": [ + 5536, + 3693, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 690, + }, + { + "ISO": [ + 125, + 12800, + ], + "assessment": { + "astronomy": 0.7570392348728391, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.715715321860331, + "portrait": 0.7570392348728391, + "scenery": 0.9044489399606346, + "sports": 0.8781934932810521, + "travel": 0.4999999999999997, + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G5_X/vignette3.png", + "isMetal": true, + "launchDate": 1444665600000, + "maxISO": 12800, + "name": "Canon PowerShot G5 X", + "pixelDepth": 20, + "pixels": 20444448, + "price": 800, + "resolution": [ + 5536, + 3693, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 125, + 12800, + ], + "assessment": { + "astronomy": 0.7567417726514891, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.780014451840753, + "lowPrice": 0.5688059701492514, + "newModel": 0.5356718768052593, + "portrait": 0.7567417726514891, + "scenery": 0.9042489076836084, + "sports": 0.8572481358355573, + "travel": 0.5717193397980831, + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G7_X/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 12800, + "name": "Canon PowerShot G7 X", + "pixelDepth": 20, + "pixels": 20894720, + "price": 700, + "resolution": [ + 5632, + 3710, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 279, + }, + { + "ISO": [ + 125, + 12800, + ], + "assessment": { + "astronomy": 0.7570392348728391, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7902854577186353, + "lowPrice": 0.7816405228758168, + "newModel": 0.7976517087388207, + "portrait": 0.7570392348728391, + "scenery": 0.9044489399606346, + "sports": 0.8781934932810521, + "travel": 0.5878194349220124, + }, + "autoFocus": 31, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 8.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1483459200000, + "maxISO": 12800, + "name": "Canon PowerShot G9 X Mark II", + "pixelDepth": 20, + "pixels": 20444448, + "price": 530, + "resolution": [ + 5536, + 3693, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 182, + }, + { + "ISO": [ + 125, + 12800, + ], + "assessment": { + "astronomy": 0.7570392348728391, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.7166083253096587, + "portrait": 0.7570392348728391, + "scenery": 0.9044489399606346, + "sports": 0.8781934932810521, + "travel": 0.4999999999999997, + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X/vignette3.png", + "isMetal": true, + "launchDate": 1444752000000, + "maxISO": 12800, + "name": "Canon PowerShot G9 X", + "pixelDepth": 20, + "pixels": 20444448, + "price": 500, + "resolution": [ + 5536, + 3693, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 1600, + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7335119966762389, + "newModel": 0.22404805898254374, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07361418938727647, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 1.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G9/vignette3.png", + "isMetal": false, + "launchDate": 1187539200000, + "maxISO": 1600, + "name": "Canon Powershot G9", + "pixelDepth": 12, + "pixels": 12192768, + "price": 606, + "resolution": [ + 4032, + 3024, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7871207369024819, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S100/vignette3.png", + "isMetal": false, + "launchDate": 1316016000000, + "maxISO": 6400, + "name": "Canon PowerShot S100", + "pixelDepth": 12, + "pixels": 12995840, + "price": 429, + "resolution": [ + 4160, + 3124, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.78876597112353, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.5856369576579451, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_S110/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Canon Powershot S110", + "pixelDepth": 12, + "pixels": 12338304, + "price": 499, + "resolution": [ + 4048, + 3048, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 198, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.789249147471554, + "lowPrice": 0.7860866286905286, + "newModel": 0.49999999999999895, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.5863383439763902, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S120/vignette3.png", + "isMetal": true, + "launchDate": 1377100800000, + "maxISO": 12800, + "name": "Canon PowerShot S120", + "pixelDepth": 12, + "pixels": 12835904, + "price": 449, + "resolution": [ + 4192, + 3062, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 193, + }, + { + "ISO": [ + 80, + 3200, + ], + "assessment": { + "astronomy": 0.0814163743518294, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7875774647887285, + "newModel": 0.45637117003652616, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.0714293666624468, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 0.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S90/vignette3.png", + "isMetal": false, + "launchDate": 1250611200000, + "maxISO": 3200, + "name": "Canon PowerShot S90", + "pixelDepth": 10, + "pixels": 10423296, + "price": 420, + "resolution": [ + 3744, + 2784, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 3200, + ], + "assessment": { + "astronomy": 0.0814163743518294, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7913731343283599, + "lowPrice": 0.7885714285714326, + "newModel": 0.4856808727756244, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07438183832188398, + "travel": 0.47754744215665035, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 0.98, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S95/vignette3.png", + "isMetal": false, + "launchDate": 1282147200000, + "maxISO": 3200, + "name": "Canon PowerShot S95", + "pixelDepth": 10, + "pixels": 10423296, + "price": 400, + "resolution": [ + 3744, + 2784, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 170, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7844324324324303, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX50_HS/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Canon PowerShot SX50 HS", + "pixelDepth": 12, + "pixels": 12786912, + "price": 480, + "resolution": [ + 4176, + 3062, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 551, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7804838709677436, + "newModel": 0.5356718768052593, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6.4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX60_HS/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 6400, + "name": "Canon PowerShot SX60 HS", + "pixelDepth": 16, + "pixels": 16764288, + "price": 550, + "resolution": [ + 4768, + 3516, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7875628742338098, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Phantom_4/vignette3.png", + "isMetal": true, + "launchDate": 1457971200000, + "maxISO": 3200, + "name": "DJI Phantom 4", + "pixelDepth": 12, + "pixels": 12000000, + "price": 1200, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7581690225850446, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7963990497347746, + "portrait": 0.7581690225850446, + "scenery": 0.8081274183527211, + "sports": 0.5390282916213289, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 14, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Phantom4_Pro/vignette3.png", + "isMetal": true, + "launchDate": 1479139200000, + "maxISO": 12800, + "name": "DJI Phantom4 Pro", + "pixelDepth": 20, + "pixels": 19961856, + "price": 1500, + "resolution": [ + 5472, + 3648, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7581690225850446, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.7829979945104432, + "lowPrice": 0.7775606210893378, + "newModel": 0.7963990497347746, + "portrait": 0.7581690225850446, + "scenery": 0.8081274183527211, + "sports": 0.5390282916213289, + "travel": 0.6363633411485914, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 20, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X4S/vignette3.png", + "isMetal": true, + "launchDate": 1479139200000, + "maxISO": 12800, + "name": "DJI Zenmuse X4S", + "pixelDepth": 20, + "pixels": 19961856, + "price": 599, + "resolution": [ + 5472, + 3648, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 253, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7675569954152581, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5184884919907811, + "lowPrice": 0.5000000000000002, + "newModel": 0.7963990497347746, + "portrait": 0.7567423211439139, + "scenery": 0.7985203381594502, + "sports": 0.5616519303453117, + "travel": 0.6074133321819782, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 20, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X5S/vignette3.png", + "isMetal": true, + "launchDate": 1479139200000, + "maxISO": 25600, + "name": "DJI Zenmuse X5S", + "pixelDepth": 20, + "pixels": 20887680, + "price": 1400, + "resolution": [ + 5280, + 3956, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 461, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712125017751787, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5241584267811638, + "lowPrice": 0.1999999999999999, + "newModel": 0.8000000000000005, + "portrait": 0.769938790213497, + "scenery": 0.8139611448003187, + "sports": 0.6144769578229766, + "travel": 0.6095480825352767, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 20, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X7/vignette3.png", + "isMetal": true, + "launchDate": 1507651200000, + "maxISO": 25600, + "name": "DJI Zenmuse X7", + "pixelDepth": 24, + "pixels": 24112128, + "price": 2700, + "resolution": [ + 6016, + 4008, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 449, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.7890575539568294, + "lowPrice": 0.7860344827586178, + "newModel": 0.4952260258402374, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.07402016607354676, + "travel": 0.6416595805504298, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F550EXR/vignette3.png", + "isMetal": false, + "launchDate": 1294156800000, + "maxISO": 12800, + "name": "Fujifilm FinePix F550EXR", + "pixelDepth": 16, + "pixels": 16076305, + "price": 450, + "resolution": [ + 4613, + 3485, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 195, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.0843245758851411, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.933, + "travel": 0.6000000000000001, + }, + "autoFocus": 256, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F600EXR/vignette3.png", + "isMetal": false, + "launchDate": 1312992000000, + "maxISO": 12800, + "name": "Fujifilm FinePix F600EXR", + "pixelDepth": 16, + "pixels": 8037568, + "price": 500, + "resolution": [ + 3262, + 2464, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7877777173137505, + "lowPrice": 0.7909707627909911, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.5841809512624617, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F800EXR/vignette3.png", + "isMetal": false, + "launchDate": 1343145600000, + "maxISO": 12800, + "name": "Fujifilm FinePix F800EXR", + "pixelDepth": 16, + "pixels": 16076305, + "price": 349, + "resolution": [ + 4613, + 3485, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 208, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08058766629036895, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5628897752859012, + "newModel": 0.2470739519371539, + "portrait": 0.2280106572609703, + "scenery": 0.2280106572609703, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S100fs/vignette3.png", + "isMetal": false, + "launchDate": 1201104000000, + "maxISO": 3200, + "name": "Fujifilm FinePix S100fs", + "pixelDepth": 11, + "pixels": 11059200, + "price": 713, + "resolution": [ + 3840, + 2880, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07329558152854765, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.20511031132658228, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S3_Pro/vignette3.png", + "isMetal": false, + "launchDate": 1075910400000, + "maxISO": 1600, + "name": "Fujifilm FinePix S3 Pro", + "pixelDepth": 6, + "pixels": 6096384, + "price": 1190, + "resolution": [ + 3024, + 2016, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07766693392882804, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.21838126173299063, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S5_Pro/vignette3.png", + "isMetal": false, + "launchDate": 1159113600000, + "maxISO": 3200, + "name": "Fujifilm FinePix S5 Pro", + "pixelDepth": 6, + "pixels": 6096384, + "price": 1200, + "resolution": [ + 3024, + 2016, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.40750000000000486, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329098228663452, + "travel": 0.45236901807869573, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X_S1/vignette3.png", + "isMetal": true, + "launchDate": 1322064000000, + "maxISO": 12800, + "name": "Fujifilm FinePix X S1", + "pixelDepth": 12, + "pixels": 12000000, + "price": 699, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 880, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.6380289440771788, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329098228663452, + "travel": 0.5602517547964436, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X10/vignette3.png", + "isMetal": false, + "launchDate": 1314806400000, + "maxISO": 12800, + "name": "Fujifilm FinePix X10", + "pixelDepth": 12, + "pixels": 12212896, + "price": 600, + "resolution": [ + 4028, + 3032, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 330, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5479244423685782, + "lowPrice": 0.5002492512472553, + "newModel": 0.48780963542990663, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329098228663452, + "travel": 0.5386979393318829, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X100/vignette3.png", + "isMetal": true, + "launchDate": 1284825600000, + "maxISO": 12800, + "name": "Fujifilm FinePix X100", + "pixelDepth": 12, + "pixels": 12369700, + "price": 999, + "resolution": [ + 4310, + 2870, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 405, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/XF1/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Fujifilm XF1", + "pixelDepth": 12, + "pixels": 12000000, + "price": 499, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.6500000000000002, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.7947135702942201, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.5390282916213289, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "GoPro", + "flash": false, + "frameRate": 30, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/HERO5_Black/vignette3.png", + "isMetal": false, + "launchDate": 1474214400000, + "maxISO": 1600, + "name": "GoPro HERO5 Black", + "pixelDepth": 12, + "pixels": 12000000, + "price": 400, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 400, + ], + "assessment": { + "astronomy": 0.6776196269734426, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22581977891147426, + "portrait": 0.7999640340898365, + "scenery": 0.9329802944742082, + "sports": 0.49298276197015695, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Hasselblad", + "flash": false, + "frameRate": 0.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_39/vignette3.png", + "isMetal": false, + "launchDate": 1196006400000, + "maxISO": 400, + "name": "Hasselblad H3DII 39", + "pixelDepth": 39, + "pixels": 39458112, + "price": 22000, + "resolution": [ + 7248, + 5444, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 400, + ], + "assessment": { + "astronomy": 0.6776872570626299, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22581977891147426, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.495386674129829, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Hasselblad", + "flash": false, + "frameRate": 0.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_50/vignette3.png", + "isMetal": false, + "launchDate": 1196006400000, + "maxISO": 400, + "name": "Hasselblad H3DII 50", + "pixelDepth": 50, + "pixels": 51679680, + "price": 20000, + "resolution": [ + 8282, + 6240, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7942026687014537, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.791603730875711, + "portrait": 0.8000000000000005, + "scenery": 0.8387202611043807, + "sports": 0.5271866966133213, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Hasselblad", + "flash": false, + "frameRate": 2.3, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/X1D-50c/vignette3.png", + "isMetal": true, + "launchDate": 1466524800000, + "maxISO": 25600, + "name": "Hasselblad X1D-50c", + "pixelDepth": 50, + "pixels": 51402240, + "price": 8995, + "resolution": [ + 8280, + 6208, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07760492265724778, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.21165168791248107, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Konica Minolta", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_5D/vignette3.png", + "isMetal": false, + "launchDate": 1121356800000, + "maxISO": 3200, + "name": "Konica Minolta DYNAX 5D", + "pixelDepth": 6, + "pixels": 6056128, + "price": 500, + "resolution": [ + 3016, + 2008, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07760492265724778, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7793648548731495, + "newModel": 0.20764170756612468, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Konica Minolta", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_7D/vignette3.png", + "isMetal": false, + "launchDate": 1095177600000, + "maxISO": 3200, + "name": "Konica Minolta DYNAX 7D", + "pixelDepth": 6, + "pixels": 6056128, + "price": 569, + "resolution": [ + 3016, + 2008, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 800, + ], + "assessment": { + "astronomy": 0.6671204945348616, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.21839784666838566, + "portrait": 0.7947193502035401, + "scenery": 0.9295308230908899, + "sports": 0.4684191934677148, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leaf", + "flash": false, + "frameRate": 0.83, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Aptus75S/vignette3.png", + "isMetal": false, + "launchDate": 1159200000000, + "maxISO": 800, + "name": "Leaf Aptus75S", + "pixelDepth": 33, + "pixels": 33276672, + "price": 32995, + "resolution": [ + 6666, + 4992, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5411682295905136, + "newModel": 0.49999999999999667, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/C/vignette3.png", + "isMetal": true, + "launchDate": 1378742400000, + "maxISO": 12800, + "name": "Leica C", + "pixelDepth": 12, + "pixels": 12112256, + "price": 795, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.7697806897606136, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7697806897606136, + "scenery": 0.9129364224889734, + "sports": 0.35913287221098766, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M_Typ_240/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 6400, + "name": "Leica M Typ 240", + "pixelDepth": 24, + "pixels": 23936000, + "price": 6950, + "resolution": [ + 5984, + 4000, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 2500, + ], + "assessment": { + "astronomy": 0.0737154836007143, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M-E_Typ_220/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 2500, + "name": "Leica M-E Typ 220", + "pixelDepth": 18, + "pixels": 18109952, + "price": 5450, + "resolution": [ + 5216, + 3472, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 50000, + ], + "assessment": { + "astronomy": 0.7855542352311429, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7979614152856618, + "portrait": 0.769739927706708, + "scenery": 0.8299353152852595, + "sports": 0.42596223587001725, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M10/vignette3.png", + "isMetal": true, + "launchDate": 1484668800000, + "maxISO": 50000, + "name": "Leica M10", + "pixelDepth": 24, + "pixels": 23888128, + "price": 6895, + "resolution": [ + 5984, + 3992, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 590, + }, + { + "ISO": [ + 160, + 2500, + ], + "assessment": { + "astronomy": 0.07820651804692716, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2182008037681383, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M8/vignette3.png", + "isMetal": false, + "launchDate": 1158163200000, + "maxISO": 2500, + "name": "Leica M8", + "pixelDepth": 10, + "pixels": 10340960, + "price": 5495, + "resolution": [ + 3920, + 2638, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 2500, + ], + "assessment": { + "astronomy": 0.0737154836007143, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.49634183016529004, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M9_P/vignette3.png", + "isMetal": true, + "launchDate": 1295539200000, + "maxISO": 2500, + "name": "Leica M9 P", + "pixelDepth": 18, + "pixels": 18109952, + "price": 6950, + "resolution": [ + 5216, + 3472, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 2500, + ], + "assessment": { + "astronomy": 0.0737154836007143, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4584766374272051, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M9/vignette3.png", + "isMetal": false, + "launchDate": 1252425600000, + "maxISO": 2500, + "name": "Leica M9", + "pixelDepth": 18, + "pixels": 18109952, + "price": 5500, + "resolution": [ + 5216, + 3472, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 545, + }, + { + "ISO": [ + 100, + 50000, + ], + "assessment": { + "astronomy": 0.7854937716172566, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.6332034374702056, + "portrait": 0.7699847368302629, + "scenery": 0.8305046044889461, + "sports": 0.851644003957937, + "travel": 0.4999999999999997, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Q_Typ_116/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 50000, + "name": "Leica Q Typ 116", + "pixelDepth": 24, + "pixels": 24160256, + "price": 4250, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 590, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.6830626561110877, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7993618049959713, + "scenery": 0.8585373754523935, + "sports": 0.5021179997601634, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 1.5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/S/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 1600, + "name": "Leica S", + "pixelDepth": 37, + "pixels": 37600000, + "price": 21950, + "resolution": [ + 7520, + 5000, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 50000, + ], + "assessment": { + "astronomy": 0.7854937716172566, + "durableBuild": 0.8000000000000005, + "event": 0.5772727272727275, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7220794214614688, + "portrait": 0.7699847368302629, + "scenery": 0.8176294292573827, + "sports": 0.8713087951318573, + "travel": 0.6000000000000001, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 11, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SL_(Typ_601)/vignette3.png", + "isMetal": true, + "launchDate": 1445270400000, + "maxISO": 50000, + "name": "Leica SL (Typ 601)", + "pixelDepth": 24, + "pixels": 24160256, + "price": 7450, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12500, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.6183766865446153, + "lowPrice": 0.1999999999999999, + "newModel": 0.4999999999999977, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.5579816085583185, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/T/vignette3.png", + "isMetal": true, + "launchDate": 1398268800000, + "maxISO": 12500, + "name": "Leica T", + "pixelDepth": 16, + "pixels": 16206432, + "price": 1850, + "resolution": [ + 4944, + 3278, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 339, + }, + { + "ISO": [ + 100, + 12500, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4999999999999997, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/X_Vario/vignette3.png", + "isMetal": true, + "launchDate": 1370880000000, + "maxISO": 12500, + "name": "Leica X Vario", + "pixelDepth": 16, + "pixels": 16186656, + "price": 2850, + "resolution": [ + 4944, + 3274, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 400, + ], + "assessment": { + "astronomy": 0.43215420965778045, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.395551069068901, + "portrait": 0.7600010199731728, + "scenery": 0.9064214010591755, + "sports": 0.18647131663635308, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Mamiya", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/ZD_Back/vignette3.png", + "isMetal": false, + "launchDate": 1220198400000, + "maxISO": 400, + "name": "Mamiya ZD Back", + "pixelDepth": 21, + "pixels": 21461504, + "price": 6999, + "resolution": [ + 5344, + 4016, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.6951672370432288, + "lowPrice": 0.540338983050848, + "newModel": 0.500000000000002, + "portrait": 0.24083820454836385, + "scenery": 0.6938318737493623, + "sports": 0.933, + "travel": 0.6296461584682099, + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/1_AW1/vignette3.png", + "isMetal": true, + "launchDate": 1379520000000, + "maxISO": 6400, + "name": "Nikon 1 AW1", + "pixelDepth": 14, + "pixels": 14238840, + "price": 800, + "resolution": [ + 4620, + 3082, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 313, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.09234734927674859, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.7850795214168989, + "lowPrice": 0.5688059701492514, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5390282916213289, + "travel": 0.5800580243166777, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 13, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J1/vignette3.png", + "isMetal": false, + "launchDate": 1316534400000, + "maxISO": 6400, + "name": "Nikon 1 J1", + "pixelDepth": 10, + "pixels": 10173824, + "price": 700, + "resolution": [ + 3904, + 2606, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 234, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.09231668411852569, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J2/vignette3.png", + "isMetal": false, + "launchDate": 1344441600000, + "maxISO": 6400, + "name": "Nikon 1 J2", + "pixelDepth": 10, + "pixels": 10166016, + "price": 700, + "resolution": [ + 3904, + 2604, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.49999999999999933, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J3/vignette3.png", + "isMetal": true, + "launchDate": 1357574400000, + "maxISO": 6400, + "name": "Nikon 1 J3", + "pixelDepth": 14, + "pixels": 14238840, + "price": 600, + "resolution": [ + 4620, + 3082, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000048, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 171, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J4/vignette3.png", + "isMetal": true, + "launchDate": 1397059200000, + "maxISO": 12800, + "name": "Nikon 1 J4", + "pixelDepth": 18, + "pixels": 18378496, + "price": 599, + "resolution": [ + 5248, + 3502, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 12800, + ], + "assessment": { + "astronomy": 0.7567589967123857, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.6023053491129261, + "portrait": 0.7567589967123857, + "scenery": 0.9042580508537008, + "sports": 0.9035289101291036, + "travel": 0.4999999999999997, + }, + "autoFocus": 171, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J5/vignette3.png", + "isMetal": false, + "launchDate": 1427904000000, + "maxISO": 12800, + "name": "Nikon 1 J5", + "pixelDepth": 20, + "pixels": 20794816, + "price": 500, + "resolution": [ + 5584, + 3724, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.09273700262475541, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.49999999999999933, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_S1/vignette3.png", + "isMetal": true, + "launchDate": 1357574400000, + "maxISO": 6400, + "name": "Nikon 1 S1", + "pixelDepth": 10, + "pixels": 10272696, + "price": 499, + "resolution": [ + 3948, + 2602, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.09234734927674859, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.7783471865585969, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.933, + "travel": 0.5687955821693761, + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 34, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_V1/vignette3.png", + "isMetal": false, + "launchDate": 1316534400000, + "maxISO": 6400, + "name": "Nikon 1 V1", + "pixelDepth": 10, + "pixels": 10173824, + "price": 1000, + "resolution": [ + 3904, + 2606, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 293, + }, + { + "ISO": [ + 160, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.780131607363599, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000001, + "portrait": 0.24083820454836385, + "scenery": 0.6938318737493623, + "sports": 0.933, + "travel": 0.6337171904202219, + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 15, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/1_V2/vignette3.png", + "isMetal": false, + "launchDate": 1351008000000, + "maxISO": 6400, + "name": "Nikon 1 V2", + "pixelDepth": 14, + "pixels": 14238840, + "price": 899, + "resolution": [ + 4620, + 3082, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 278, + }, + { + "ISO": [ + 160, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.6544146371735617, + "lowPrice": 0.5002492512472553, + "newModel": 0.5000000000000007, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5390282916213289, + "travel": 0.5617212797063059, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 30, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_V3/vignette3.png", + "isMetal": true, + "launchDate": 1394640000000, + "maxISO": 12800, + "name": "Nikon 1 V3", + "pixelDepth": 18, + "pixels": 18378496, + "price": 999, + "resolution": [ + 5248, + 3502, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 324, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.500000000000001, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_A/vignette3.png", + "isMetal": true, + "launchDate": 1362326400000, + "maxISO": 25600, + "name": "Nikon Coolpix A", + "pixelDepth": 16, + "pixels": 16373760, + "price": 1100, + "resolution": [ + 4992, + 3280, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7885714285714326, + "lowPrice": 0.7895362318840548, + "newModel": 0.500000000000001, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.6412499999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P330/vignette3.png", + "isMetal": true, + "launchDate": 1362326400000, + "maxISO": 12800, + "name": "Nikon Coolpix P330", + "pixelDepth": 12, + "pixels": 12192768, + "price": 380, + "resolution": [ + 4032, + 3024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 200, + }, + { + "ISO": [ + 80, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7895362318840548, + "newModel": 0.49999999999999706, + "portrait": 0.23214285714285718, + "scenery": 0.6679145681242322, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P340/vignette3.png", + "isMetal": false, + "launchDate": 1391616000000, + "maxISO": 25600, + "name": "Nikon Coolpix P340", + "pixelDepth": 12, + "pixels": 12192768, + "price": 380, + "resolution": [ + 4032, + 3024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 64, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7866070389804667, + "newModel": 0.38734740903433185, + "portrait": 0.23642481756120523, + "scenery": 0.23642481756120523, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P6000/vignette3.png", + "isMetal": false, + "launchDate": 1218038400000, + "maxISO": 6400, + "name": "Nikon Coolpix P6000", + "pixelDepth": 13, + "pixels": 13457760, + "price": 439, + "resolution": [ + 4240, + 3174, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.09184912717672215, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.4870564677819162, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5244813082467101, + "travel": 0.4999999999999997, + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 1.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7000/vignette3.png", + "isMetal": false, + "launchDate": 1283875200000, + "maxISO": 6400, + "name": "Nikon Coolpix P7000", + "pixelDepth": 10, + "pixels": 10046688, + "price": 500, + "resolution": [ + 3664, + 2742, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.09187779000886613, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.554620891262316, + "lowPrice": 0.5620724384000517, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5244813082467101, + "travel": 0.5419478513405445, + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 1.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7100/vignette3.png", + "isMetal": false, + "launchDate": 1314115200000, + "maxISO": 6400, + "name": "Nikon Coolpix P7100", + "pixelDepth": 10, + "pixels": 10054016, + "price": 715, + "resolution": [ + 3664, + 2744, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 395, + }, + { + "ISO": [ + 80, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7700/vignette3.png", + "isMetal": false, + "launchDate": 1345564800000, + "maxISO": 6400, + "name": "Nikon Coolpix P7700", + "pixelDepth": 12, + "pixels": 12192768, + "price": 499, + "resolution": [ + 4032, + 3024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7774999999999945, + "lowPrice": 0.7804838709677436, + "newModel": 0.49999999999999967, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.5672727272727268, + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7800/vignette3.png", + "isMetal": true, + "launchDate": 1378310400000, + "maxISO": 6400, + "name": "Nikon Coolpix P7800", + "pixelDepth": 12, + "pixels": 12192768, + "price": 550, + "resolution": [ + 4032, + 3024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 300, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.081543452567325, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2132343357512345, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D200/vignette3.png", + "isMetal": false, + "launchDate": 1130774400000, + "maxISO": 3200, + "name": "Nikon D200", + "pixelDepth": 10, + "pixels": 10212864, + "price": 1000, + "resolution": [ + 3904, + 2616, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 6400, + ], + "assessment": { + "astronomy": 0.07223018887419151, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.20321300426865188, + "portrait": 0.20499999999999993, + "scenery": 0.20499999999999993, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D2H/vignette3.png", + "isMetal": false, + "launchDate": 1058803200000, + "maxISO": 6400, + "name": "Nikon D2H", + "pixelDepth": 4, + "pixels": 4113408, + "price": 900, + "resolution": [ + 2496, + 1648, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2076538779647219, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D2X/vignette3.png", + "isMetal": false, + "launchDate": 1095264000000, + "maxISO": 3200, + "name": "Nikon D2X", + "pixelDepth": 12, + "pixels": 12389760, + "price": 2000, + "resolution": [ + 4320, + 2868, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2164994832188621, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D2Xs/vignette3.png", + "isMetal": false, + "launchDate": 1149091200000, + "maxISO": 3200, + "name": "Nikon D2Xs", + "pixelDepth": 12, + "pixels": 12212224, + "price": 4250, + "resolution": [ + 4288, + 2848, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22410150826352104, + "portrait": 0.23214285714285718, + "scenery": 0.5349047177886246, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3/vignette3.png", + "isMetal": false, + "launchDate": 1187798400000, + "maxISO": 25600, + "name": "Nikon D3", + "pixelDepth": 12, + "pixels": 12195072, + "price": 4300, + "resolution": [ + 4288, + 2844, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.4582456140350867, + "newModel": 0.22410150826352104, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D300/vignette3.png", + "isMetal": false, + "launchDate": 1187798400000, + "maxISO": 6400, + "name": "Nikon D300", + "pixelDepth": 12, + "pixels": 12481536, + "price": 1540, + "resolution": [ + 4352, + 2868, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5565868772782485, + "newModel": 0.4413803643790505, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08746015737559586, + "travel": 0.1999999999999999, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3000/vignette3.png", + "isMetal": true, + "launchDate": 1239638400000, + "maxISO": 3200, + "name": "Nikon D3000", + "pixelDepth": 12, + "pixels": 12361080, + "price": 730, + "resolution": [ + 4310, + 2868, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.45428220718412077, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D300s/vignette3.png", + "isMetal": false, + "launchDate": 1248883200000, + "maxISO": 6400, + "name": "Nikon D300s", + "pixelDepth": 12, + "pixels": 12481536, + "price": 1815, + "resolution": [ + 4352, + 2868, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.4886318118458703, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3100/vignette3.png", + "isMetal": false, + "launchDate": 1285862400000, + "maxISO": 12800, + "name": "Nikon D3100", + "pixelDepth": 14, + "pixels": 14408448, + "price": 699, + "resolution": [ + 4672, + 3084, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7702188603967507, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.521305939010396, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.7702188603967507, + "scenery": 0.9132276873879216, + "sports": 0.5474943113310172, + "travel": 0.5203126755375478, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3200/vignette3.png", + "isMetal": true, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Nikon D3200", + "pixelDepth": 24, + "pixels": 24392960, + "price": 699, + "resolution": [ + 6080, + 4012, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 455, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000031, + "portrait": 0.7699847368302629, + "scenery": 0.829216454512239, + "sports": 0.5398039036618845, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3300/vignette3.png", + "isMetal": false, + "launchDate": 1389024000000, + "maxISO": 25600, + "name": "Nikon D3300", + "pixelDepth": 24, + "pixels": 24160256, + "price": 650, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.7936242789291871, + "portrait": 0.7699847368302629, + "scenery": 0.829216454512239, + "sports": 0.5398039036618845, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3400/vignette3.png", + "isMetal": true, + "launchDate": 1471363200000, + "maxISO": 25600, + "name": "Nikon D3400", + "pixelDepth": 24, + "pixels": 24160256, + "price": 650, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 102400, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.4618121843030409, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.16167332382310975, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3s/vignette3.png", + "isMetal": true, + "launchDate": 1255449600000, + "maxISO": 102400, + "name": "Nikon D3s", + "pixelDepth": 12, + "pixels": 12195072, + "price": 5510, + "resolution": [ + 4288, + 2844, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 1240, + }, + { + "ISO": [ + 50, + 6400, + ], + "assessment": { + "astronomy": 0.770429932071499, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.41869788491367926, + "portrait": 0.770429932071499, + "scenery": 0.9133684927801615, + "sports": 0.4523483629078768, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3X/vignette3.png", + "isMetal": false, + "launchDate": 1228060800000, + "maxISO": 6400, + "name": "Nikon D3X", + "pixelDepth": 24, + "pixels": 24587520, + "price": 9172, + "resolution": [ + 6080, + 4044, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 204800, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.5772727272727275, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.928265423242468, + "travel": 0.5369388594944149, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 11, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D4/vignette3.png", + "isMetal": false, + "launchDate": 1325779200000, + "maxISO": 204800, + "name": "Nikon D4", + "pixelDepth": 16, + "pixels": 16433664, + "price": 5999, + "resolution": [ + 4992, + 3292, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1340, + }, + { + "ISO": [ + 200, + 3200, + ], + "assessment": { + "astronomy": 0.07770734086566078, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.21924667551736418, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D40/vignette3.png", + "isMetal": false, + "launchDate": 1163606400000, + "maxISO": 3200, + "name": "Nikon D40", + "pixelDepth": 6, + "pixels": 6122560, + "price": 400, + "resolution": [ + 3040, + 2014, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.081543452567325, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5004980059800642, + "newModel": 0.22111460690387605, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D40X/vignette3.png", + "isMetal": false, + "launchDate": 1173110400000, + "maxISO": 3200, + "name": "Nikon D40X", + "pixelDepth": 10, + "pixels": 10212864, + "price": 998, + "resolution": [ + 3904, + 2616, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 409600, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000009, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.928265423242468, + "travel": 0.4999999999999997, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D4s/vignette3.png", + "isMetal": false, + "launchDate": 1393257600000, + "maxISO": 409600, + "name": "Nikon D4s", + "pixelDepth": 16, + "pixels": 16229568, + "price": 6500, + "resolution": [ + 4936, + 3288, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 3280000, + ], + "assessment": { + "astronomy": 0.7902800639992472, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.7844376273133042, + "portrait": 0.7567533893511361, + "scenery": 0.8056995693022159, + "sports": 0.9165573859433006, + "travel": 0.5369388594944149, + }, + "autoFocus": 153, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 14, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D5/vignette3.png", + "isMetal": true, + "launchDate": 1452009600000, + "maxISO": 3280000, + "name": "Nikon D5", + "pixelDepth": 20, + "pixels": 20817152, + "price": 6500, + "resolution": [ + 5584, + 3728, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 1225, + }, + { + "ISO": [ + 200, + 1600, + ], + "assessment": { + "astronomy": 0.07332567456337055, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2104521810624988, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D50/vignette3.png", + "isMetal": false, + "launchDate": 1113926400000, + "maxISO": 1600, + "name": "Nikon D50", + "pixelDepth": 6, + "pixels": 6122560, + "price": 1000, + "resolution": [ + 3040, + 2014, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 1640000, + ], + "assessment": { + "astronomy": 0.7901392577736084, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7844376273133042, + "portrait": 0.7567434672427742, + "scenery": 0.8057987212862777, + "sports": 0.9012439591036879, + "travel": 0.6000000000000001, + }, + "autoFocus": 153, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D500/vignette3.png", + "isMetal": true, + "launchDate": 1452009600000, + "maxISO": 1640000, + "name": "Nikon D500", + "pixelDepth": 20, + "pixels": 20873072, + "price": 2000, + "resolution": [ + 5599, + 3728, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 670, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5565868772782485, + "newModel": 0.4413803643790505, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5000/vignette3.png", + "isMetal": false, + "launchDate": 1239638400000, + "maxISO": 6400, + "name": "Nikon D5000", + "pixelDepth": 12, + "pixels": 12361080, + "price": 730, + "resolution": [ + 4310, + 2868, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5100/vignette3.png", + "isMetal": false, + "launchDate": 1301932800000, + "maxISO": 25600, + "name": "Nikon D5100", + "pixelDepth": 16, + "pixels": 16373760, + "price": 799, + "resolution": [ + 4992, + 3280, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712950591780232, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5229243231030903, + "newModel": 0.5000000000000002, + "portrait": 0.7700867269925482, + "scenery": 0.8295406124478762, + "sports": 0.8380012220996484, + "travel": 0.4999999999999997, + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5200/vignette3.png", + "isMetal": false, + "launchDate": 1352131200000, + "maxISO": 25600, + "name": "Nikon D5200", + "pixelDepth": 24, + "pixels": 24264720, + "price": 897, + "resolution": [ + 6036, + 4020, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.4999999999999982, + "portrait": 0.7699847368302629, + "scenery": 0.8140452813264997, + "sports": 0.8386714371044622, + "travel": 0.6000000000000001, + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D5300/vignette3.png", + "isMetal": false, + "launchDate": 1381939200000, + "maxISO": 25600, + "name": "Nikon D5300", + "pixelDepth": 24, + "pixels": 24160256, + "price": 800, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.5708140819591409, + "portrait": 0.7699847368302629, + "scenery": 0.8140452813264997, + "sports": 0.8386714371044622, + "travel": 0.6000000000000001, + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D5500/vignette3.png", + "isMetal": true, + "launchDate": 1420473600000, + "maxISO": 25600, + "name": "Nikon D5500", + "pixelDepth": 24, + "pixels": 24160256, + "price": 900, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.7962615188493051, + "portrait": 0.7699847368302629, + "scenery": 0.829216454512239, + "sports": 0.8386714371044622, + "travel": 0.4999999999999997, + }, + "autoFocus": 39, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5600/vignette3.png", + "isMetal": false, + "launchDate": 1478707200000, + "maxISO": 25600, + "name": "Nikon D5600", + "pixelDepth": 24, + "pixels": 24160256, + "price": 700, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.081543452567325, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7849727891156452, + "newModel": 0.25429606889763623, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D60/vignette3.png", + "isMetal": false, + "launchDate": 1201536000000, + "maxISO": 3200, + "name": "Nikon D60", + "pixelDepth": 10, + "pixels": 10212864, + "price": 470, + "resolution": [ + 3904, + 2616, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 25600, + ], + "assessment": { + "astronomy": 0.771429533932277, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7703218061746175, + "scenery": 0.8302316500739159, + "sports": 0.8366512471788445, + "travel": 0.4999999999999997, + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D600/vignette3.png", + "isMetal": false, + "launchDate": 1347465600000, + "maxISO": 25600, + "name": "Nikon D600", + "pixelDepth": 24, + "pixels": 24490240, + "price": 2100, + "resolution": [ + 6080, + 4028, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 25600, + ], + "assessment": { + "astronomy": 0.771429533932277, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4999999999999989, + "portrait": 0.7703218061746175, + "scenery": 0.8302316500739159, + "sports": 0.8366512471788445, + "travel": 0.4999999999999997, + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D610/vignette3.png", + "isMetal": true, + "launchDate": 1381161600000, + "maxISO": 25600, + "name": "Nikon D610", + "pixelDepth": 24, + "pixels": 24490240, + "price": 1999, + "resolution": [ + 6080, + 4028, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 1600, + ], + "assessment": { + "astronomy": 0.07332567456337055, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.20502652485113151, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D70/vignette3.png", + "isMetal": false, + "launchDate": 1075219200000, + "maxISO": 1600, + "name": "Nikon D70", + "pixelDepth": 6, + "pixels": 6122560, + "price": 400, + "resolution": [ + 3040, + 2014, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.37308067882861895, + "portrait": 0.23214285714285718, + "scenery": 0.5349047177886246, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D700/vignette3.png", + "isMetal": false, + "launchDate": 1214841600000, + "maxISO": 25600, + "name": "Nikon D700", + "pixelDepth": 12, + "pixels": 12195072, + "price": 2699, + "resolution": [ + 4288, + 2844, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.48753599416625626, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.9241080139372799, + "travel": 0.6000000000000001, + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D7000/vignette3.png", + "isMetal": true, + "launchDate": 1284480000000, + "maxISO": 25600, + "name": "Nikon D7000", + "pixelDepth": 16, + "pixels": 16370480, + "price": 1200, + "resolution": [ + 4991, + 3280, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 690, + }, + { + "ISO": [ + 200, + 1600, + ], + "assessment": { + "astronomy": 0.07332567456337055, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.2104521810624988, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D70s/vignette3.png", + "isMetal": false, + "launchDate": 1113926400000, + "maxISO": 1600, + "name": "Nikon D70s", + "pixelDepth": 6, + "pixels": 6122560, + "price": 700, + "resolution": [ + 3040, + 2014, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712950591780232, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000018, + "portrait": 0.7700867269925482, + "scenery": 0.8295406124478762, + "sports": 0.8510068518262013, + "travel": 0.4999999999999997, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D7100/vignette3.png", + "isMetal": true, + "launchDate": 1361376000000, + "maxISO": 25600, + "name": "Nikon D7100", + "pixelDepth": 24, + "pixels": 24264720, + "price": 1200, + "resolution": [ + 6036, + 4020, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 675, + }, + { + "ISO": [ + 100, + 102400, + ], + "assessment": { + "astronomy": 0.7855503789786742, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5902590904447592, + "portrait": 0.7699847368302629, + "scenery": 0.8305520747203903, + "sports": 0.8517496142303977, + "travel": 0.4999999999999997, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D7200/vignette3.png", + "isMetal": true, + "launchDate": 1425225600000, + "maxISO": 102400, + "name": "Nikon D7200", + "pixelDepth": 24, + "pixels": 24160256, + "price": 1200, + "resolution": [ + 6016, + 4016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 675, + }, + { + "ISO": [ + 50, + 51200, + ], + "assessment": { + "astronomy": 0.7855258093631292, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5347916168006315, + "portrait": 0.7701435792498484, + "scenery": 0.8308840995595104, + "sports": 0.8506184576022527, + "travel": 0.4999999999999997, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D750/vignette3.png", + "isMetal": true, + "launchDate": 1410451200000, + "maxISO": 51200, + "name": "Nikon D750", + "pixelDepth": 24, + "pixels": 24321024, + "price": 2300, + "resolution": [ + 6032, + 4032, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1640000, + ], + "assessment": { + "astronomy": 0.7901300043862469, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7993966437404254, + "portrait": 0.7567431737262453, + "scenery": 0.8109981987829713, + "sports": 0.9011373212493489, + "travel": 0.4999999999999997, + }, + "autoFocus": 51, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D7500/vignette3.png", + "isMetal": true, + "launchDate": 1491926400000, + "maxISO": 1640000, + "name": "Nikon D7500", + "pixelDepth": 20, + "pixels": 20876800, + "price": 1250, + "resolution": [ + 5600, + 3728, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08155336618002212, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5565868772782485, + "newModel": 0.21761156202610107, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D80/vignette3.png", + "isMetal": false, + "launchDate": 1155052800000, + "maxISO": 3200, + "name": "Nikon D80", + "pixelDepth": 10, + "pixels": 10190700, + "price": 730, + "resolution": [ + 3900, + 2613, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 25600, + ], + "assessment": { + "astronomy": 0.7931625117890672, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.4738502673796765, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7987538346442257, + "scenery": 0.8663303776677606, + "sports": 0.8368904332610863, + "travel": 0.4851298526153548, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D800/vignette3.png", + "isMetal": true, + "launchDate": 1328544000000, + "maxISO": 25600, + "name": "Nikon D800", + "pixelDepth": 36, + "pixels": 36555776, + "price": 2999, + "resolution": [ + 7424, + 4924, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 820, + }, + { + "ISO": [ + 50, + 25600, + ], + "assessment": { + "astronomy": 0.7931625117890672, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7987538346442257, + "scenery": 0.8663303776677606, + "sports": 0.8368904332610863, + "travel": 0.4999999999999997, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D800E/vignette3.png", + "isMetal": true, + "launchDate": 1328544000000, + "maxISO": 25600, + "name": "Nikon D800E", + "pixelDepth": 36, + "pixels": 36555776, + "price": 3300, + "resolution": [ + 7424, + 4924, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 64, + 51200, + ], + "assessment": { + "astronomy": 0.7990905162469095, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.40750000000000486, + "lowPrice": 0.1999999999999999, + "newModel": 0.5123106810826351, + "portrait": 0.7986281521239487, + "scenery": 0.8580214867890246, + "sports": 0.8368018012636756, + "travel": 0.45236901807869573, + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D810/vignette3.png", + "isMetal": true, + "launchDate": 1403712000000, + "maxISO": 51200, + "name": "Nikon D810", + "pixelDepth": 36, + "pixels": 36368640, + "price": 3300, + "resolution": [ + 7380, + 4928, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 880, + }, + { + "ISO": [ + 32, + 102400, + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.36863550737495104, + "lowPrice": 0.1999999999999999, + "newModel": 0.8000000000000005, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.8378640915593707, + "travel": 0.4399584353128087, + }, + "autoFocus": 153, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D850/vignette3.png", + "isMetal": true, + "launchDate": 1503417600000, + "maxISO": 102400, + "name": "Nikon D850", + "pixelDepth": 45, + "pixels": 45749760, + "price": 3300, + "resolution": [ + 8288, + 5520, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 915, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.3939891906060031, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D90/vignette3.png", + "isMetal": false, + "launchDate": 1219766400000, + "maxISO": 6400, + "name": "Nikon D90", + "pixelDepth": 12, + "pixels": 12361080, + "price": 1235, + "resolution": [ + 4310, + 2868, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 204800, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000004, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999567, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.9241080139372799, + "travel": 0.1999999999999999, + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Df/vignette3.png", + "isMetal": true, + "launchDate": 1383580800000, + "maxISO": 204800, + "name": "Nikon Df", + "pixelDepth": 16, + "pixels": 16433664, + "price": 2749, + "resolution": [ + 4992, + 3292, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 710, + }, + { + "ISO": [ + 100, + 4000, + ], + "assessment": { + "astronomy": 0.7213071465729739, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7112748815165891, + "newModel": 0.5000000000000002, + "portrait": 0.7996808373686597, + "scenery": 0.8587499269852524, + "sports": 0.6154975668365649, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Nokia", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1020/vignette3.png", + "isMetal": false, + "launchDate": 1373472000000, + "maxISO": 4000, + "name": "Nokia Lumia 1020", + "pixelDepth": 41, + "pixels": 38334720, + "price": 610, + "resolution": [ + 7152, + 5360, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 4000, + ], + "assessment": { + "astronomy": 0.39455541698456, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000006, + "portrait": 0.7581690225850446, + "scenery": 0.8081274183527211, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Nokia", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1520/vignette3.png", + "isMetal": false, + "launchDate": 1384444800000, + "maxISO": 4000, + "name": "Nokia Lumia 1520", + "pixelDepth": 20, + "pixels": 18690048, + "price": 600, + "resolution": [ + 4992, + 3744, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08142175387354594, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.22507340354602132, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E3/vignette3.png", + "isMetal": false, + "launchDate": 1192464000000, + "maxISO": 3200, + "name": "Olympus E3", + "pixelDepth": 10, + "pixels": 10416000, + "price": 1300, + "resolution": [ + 3720, + 2800, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.2532412516784761, + "newModel": 0.41294944190141847, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E30/vignette3.png", + "isMetal": false, + "launchDate": 1225814400000, + "maxISO": 3200, + "name": "Olympus E30", + "pixelDepth": 12, + "pixels": 12644400, + "price": 1689, + "resolution": [ + 4100, + 3084, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7844324324324303, + "newModel": 0.22109739830133673, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E410/vignette3.png", + "isMetal": false, + "launchDate": 1173024000000, + "maxISO": 1600, + "name": "Olympus E410", + "pixelDepth": 10, + "pixels": 10416000, + "price": 480, + "resolution": [ + 3720, + 2800, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7822105263157916, + "newModel": 0.29669389128462814, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E420/vignette3.png", + "isMetal": false, + "launchDate": 1204646400000, + "maxISO": 1600, + "name": "Olympus E420", + "pixelDepth": 10, + "pixels": 10416000, + "price": 520, + "resolution": [ + 3720, + 2800, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7863991683939994, + "newModel": 0.43942185715960336, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E450/vignette3.png", + "isMetal": false, + "launchDate": 1238428800000, + "maxISO": 1600, + "name": "Olympus E450", + "pixelDepth": 10, + "pixels": 10416000, + "price": 443, + "resolution": [ + 3720, + 2800, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000001, + "lowPrice": 0.20587046213519297, + "newModel": 0.4874675526148574, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E5/vignette3.png", + "isMetal": false, + "launchDate": 1284393600000, + "maxISO": 6400, + "name": "Olympus E5", + "pixelDepth": 12, + "pixels": 12632064, + "price": 1699, + "resolution": [ + 4096, + 3084, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 800, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7779243274424468, + "newModel": 0.22109739830133673, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E510/vignette3.png", + "isMetal": false, + "launchDate": 1173024000000, + "maxISO": 1600, + "name": "Olympus E510", + "pixelDepth": 10, + "pixels": 10416000, + "price": 593, + "resolution": [ + 3720, + 2800, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.3487729526151192, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E520/vignette3.png", + "isMetal": false, + "launchDate": 1210608000000, + "maxISO": 1600, + "name": "Olympus E520", + "pixelDepth": 10, + "pixels": 10416000, + "price": 450, + "resolution": [ + 3720, + 2800, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7838859060402698, + "newModel": 0.4574842364369934, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E600/vignette3.png", + "isMetal": false, + "launchDate": 1251561600000, + "maxISO": 3200, + "name": "Olympus E600", + "pixelDepth": 12, + "pixels": 12632064, + "price": 490, + "resolution": [ + 4096, + 3084, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6776033651047088, + "newModel": 0.43416924282280067, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E620/vignette3.png", + "isMetal": false, + "launchDate": 1235404800000, + "maxISO": 3200, + "name": "Olympus E620", + "pixelDepth": 12, + "pixels": 12644400, + "price": 618, + "resolution": [ + 4100, + 3084, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 64, + 25600, + ], + "assessment": { + "astronomy": 0.7681262391569119, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7947135702942201, + "portrait": 0.7569656133868935, + "scenery": 0.7938956988929231, + "sports": 0.922442146520365, + "travel": 0.4999999999999997, + }, + "autoFocus": 121, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Olympus OM-D E-M1 Mark II", + "pixelDepth": 20, + "pixels": 20498880, + "price": 2000, + "resolution": [ + 5240, + 3912, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.49999999999999667, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 800, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1/vignette3.png", + "isMetal": true, + "launchDate": 1378742400000, + "maxISO": 25600, + "name": "Olympus OM-D E-M1", + "pixelDepth": 16, + "pixels": 16110080, + "price": 1399, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.6128220755207755, + "lowPrice": 0.609096385542166, + "newModel": 0.6775019875015178, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5572072098756068, + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1440432000000, + "maxISO": 25600, + "name": "Olympus OM-D E-M10 Mark II", + "pixelDepth": 16, + "pixels": 16110080, + "price": 650, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 342, + }, + { + "ISO": [ + 200, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.4999999999999973, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10/vignette3.png", + "isMetal": true, + "launchDate": 1390924800000, + "maxISO": 25600, + "name": "Olympus OM-D E-M10", + "pixelDepth": 16, + "pixels": 16110080, + "price": 700, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5407067040274806, + "lowPrice": 0.5000000000000002, + "newModel": 0.5811554917614258, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5346221378053997, + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1423065600000, + "maxISO": 25600, + "name": "Olympus OM-D E-M5 Mark II", + "pixelDepth": 16, + "pixels": 16110080, + "price": 1100, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 417, + }, + { + "ISO": [ + 200, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5362743005879058, + "lowPrice": 0.5002492512472553, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.5317947310647645, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5/vignette3.png", + "isMetal": false, + "launchDate": 1328630400000, + "maxISO": 25600, + "name": "Olympus OM-D E-M5", + "pixelDepth": 16, + "pixels": 16110080, + "price": 999, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 425, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999999, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.4999999999999997, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-P5/vignette3.png", + "isMetal": true, + "launchDate": 1368115200000, + "maxISO": 25600, + "name": "Olympus PEN E-P5", + "pixelDepth": 16, + "pixels": 16110080, + "price": 1000, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.780014451840753, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.5717193397980831, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL5/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 25600, + "name": "Olympus PEN E-PL5", + "pixelDepth": 16, + "pixels": 16110080, + "price": 699, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 279, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7151478602554087, + "lowPrice": 0.7774999999999945, + "newModel": 0.5304164978937393, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5652509571929268, + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL7/vignette3.png", + "isMetal": true, + "launchDate": 1409155200000, + "maxISO": 25600, + "name": "Olympus PEN E-PL7", + "pixelDepth": 16, + "pixels": 16110080, + "price": 600, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 309, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7862428552525458, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.5818623594201947, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PM2/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 25600, + "name": "Olympus PEN E-PM2", + "pixelDepth": 16, + "pixels": 16110080, + "price": 599, + "resolution": [ + 4640, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 223, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4493673838990525, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP1/vignette3.png", + "isMetal": false, + "launchDate": 1245081600000, + "maxISO": 6400, + "name": "Olympus PEN EP1", + "pixelDepth": 12, + "pixels": 12644400, + "price": 1098, + "resolution": [ + 4100, + 3084, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4638099462065186, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP2/vignette3.png", + "isMetal": false, + "launchDate": 1257350400000, + "maxISO": 6400, + "name": "Olympus PEN EP2", + "pixelDepth": 12, + "pixels": 12644400, + "price": 1100, + "resolution": [ + 4100, + 3084, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5797773392152289, + "travel": 0.4999999999999997, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP3/vignette3.png", + "isMetal": true, + "launchDate": 1309363200000, + "maxISO": 12800, + "name": "Olympus PEN EP3", + "pixelDepth": 12, + "pixels": 12403200, + "price": 1000, + "resolution": [ + 4080, + 3040, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7779851770197644, + "lowPrice": 0.7775606210893378, + "newModel": 0.4713464098737795, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.5681479853800597, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL1/vignette3.png", + "isMetal": true, + "launchDate": 1265126400000, + "maxISO": 3200, + "name": "Olympus PEN EPL1", + "pixelDepth": 12, + "pixels": 12632064, + "price": 599, + "resolution": [ + 4096, + 3084, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 296, + }, + { + "ISO": [ + 200, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.49529561480541173, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08746015737559586, + "travel": 0.1999999999999999, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL2/vignette3.png", + "isMetal": false, + "launchDate": 1294243200000, + "maxISO": 6400, + "name": "Olympus PEN EPL2", + "pixelDepth": 12, + "pixels": 12632064, + "price": 599, + "resolution": [ + 4096, + 3084, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7855068493150691, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.918078369905959, + "travel": 0.4999999999999997, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL3/vignette3.png", + "isMetal": true, + "launchDate": 1309363200000, + "maxISO": 12800, + "name": "Olympus PEN EPL3", + "pixelDepth": 12, + "pixels": 12403200, + "price": 460, + "resolution": [ + 4080, + 3040, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.918078369905959, + "travel": 0.4999999999999997, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPM1/vignette3.png", + "isMetal": true, + "launchDate": 1309363200000, + "maxISO": 12800, + "name": "Olympus PEN EPM1", + "pixelDepth": 12, + "pixels": 12403200, + "price": 499, + "resolution": [ + 4080, + 3040, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 25600, + ], + "assessment": { + "astronomy": 0.7684955031908199, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5726361670492659, + "lowPrice": 0.5000000000000002, + "newModel": 0.785412816207799, + "portrait": 0.7572868840213457, + "scenery": 0.7926129370273821, + "sports": 0.9203087175298793, + "travel": 0.5486631326330748, + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN-F/vignette3.png", + "isMetal": true, + "launchDate": 1453824000000, + "maxISO": 25600, + "name": "Olympus PEN-F", + "pixelDepth": 20, + "pixels": 20300800, + "price": 1200, + "resolution": [ + 5200, + 3904, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 373, + }, + { + "ISO": [ + 64, + 1600, + ], + "assessment": { + "astronomy": 0.07506642524478498, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7869155797003347, + "newModel": 0.3933539059946349, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07245345875816203, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SP_565_UZ/vignette3.png", + "isMetal": false, + "launchDate": 1219593600000, + "maxISO": 1600, + "name": "Olympus SP 565 UZ", + "pixelDepth": 10, + "pixels": 10046688, + "price": 433, + "resolution": [ + 3664, + 2742, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 64, + 6400, + ], + "assessment": { + "astronomy": 0.09184912717672215, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7822105263157916, + "newModel": 0.24407239113139745, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07245345875816203, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SP_570_UZ/vignette3.png", + "isMetal": false, + "launchDate": 1200931200000, + "maxISO": 6400, + "name": "Olympus SP 570 UZ", + "pixelDepth": 10, + "pixels": 10046688, + "price": 520, + "resolution": [ + 3664, + 2742, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.09950000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000016, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Stylus1/vignette3.png", + "isMetal": false, + "launchDate": 1382976000000, + "maxISO": 12800, + "name": "Olympus Stylus1", + "pixelDepth": 12, + "pixels": 11968000, + "price": 699, + "resolution": [ + 4000, + 2992, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.0992896951943043, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.6060336964889568, + "lowPrice": 0.780541944127943, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.46319057892844184, + "travel": 0.5561613545026597, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/XZ-2_iHS/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Olympus XZ-2 iHS", + "pixelDepth": 12, + "pixels": 11896224, + "price": 549, + "resolution": [ + 3984, + 2986, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 346, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.09228079614586604, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7804838709677436, + "lowPrice": 0.7836646718468486, + "newModel": 0.49529561480541173, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.08116981209654213, + "travel": 0.4385198821796793, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/XZ1/vignette3.png", + "isMetal": false, + "launchDate": 1294243200000, + "maxISO": 6400, + "name": "Olympus XZ1", + "pixelDepth": 10, + "pixels": 10156800, + "price": 494, + "resolution": [ + 3680, + 2760, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 275, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07501242967942229, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7872729469602328, + "newModel": 0.38114424349938836, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/DMC_FZ28/vignette3.png", + "isMetal": false, + "launchDate": 1216569600000, + "maxISO": 1600, + "name": "Panasonic DMC FZ28", + "pixelDepth": 10, + "pixels": 10101672, + "price": 426, + "resolution": [ + 3668, + 2754, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7684339285286038, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7976517087388207, + "portrait": 0.7572262931000363, + "scenery": 0.7928172707242244, + "sports": 0.9257801806104143, + "travel": 0.4999999999999997, + }, + "autoFocus": 225, + "bluetooth": true, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DC-GH5/vignette3.png", + "isMetal": true, + "launchDate": 1483459200000, + "maxISO": 25600, + "name": "Panasonic Lumix DC-GH5", + "pixelDepth": 20, + "pixels": 20332032, + "price": 2000, + "resolution": [ + 5208, + 3904, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 645, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7890575539568294, + "newModel": 0.38114424349938836, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_FX150/vignette3.png", + "isMetal": false, + "launchDate": 1216569600000, + "maxISO": 1600, + "name": "Panasonic Lumix DMC FX150", + "pixelDepth": 14, + "pixels": 14721996, + "price": 390, + "resolution": [ + 4429, + 3324, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5420363153232955, + "newModel": 0.3988588623602434, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G1/vignette3.png", + "isMetal": false, + "launchDate": 1221148800000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC G1", + "pixelDepth": 12, + "pixels": 12118288, + "price": 790, + "resolution": [ + 4018, + 3016, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.4738306857015196, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.09011911411139363, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G10/vignette3.png", + "isMetal": false, + "launchDate": 1267891200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC G10", + "pixelDepth": 12, + "pixels": 12000000, + "price": 600, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.4738306857015196, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.09011911411139363, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G2/vignette3.png", + "isMetal": false, + "launchDate": 1267891200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC G2", + "pixelDepth": 12, + "pixels": 12000000, + "price": 599, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.6243849712365716, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.5587468760938182, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G3/vignette3.png", + "isMetal": false, + "launchDate": 1305129600000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC G3", + "pixelDepth": 16, + "pixels": 15962112, + "price": 599, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 336, + }, + { + "ISO": [ + 160, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 20, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G5/vignette3.png", + "isMetal": false, + "launchDate": 1342540800000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC G5", + "pixelDepth": 16, + "pixels": 16054528, + "price": 650, + "resolution": [ + 4624, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7793057324840699, + "newModel": 0.4577835952643776, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF1/vignette3.png", + "isMetal": false, + "launchDate": 1251820800000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC GF1", + "pixelDepth": 12, + "pixels": 12118288, + "price": 570, + "resolution": [ + 4018, + 3016, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7816405228758168, + "lowPrice": 0.7775606210893378, + "newModel": 0.49095776088763216, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08784330484330488, + "travel": 0.4433003897388093, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF2/vignette3.png", + "isMetal": false, + "launchDate": 1288800000000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC GF2", + "pixelDepth": 12, + "pixels": 12329408, + "price": 599, + "resolution": [ + 4088, + 3016, + ], + "touchScreen": true, + "video": false, + "waterproof": false, + "weight": 265, + }, + { + "ISO": [ + 160, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07643608866238999, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF3/vignette3.png", + "isMetal": false, + "launchDate": 1307894400000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC GF3", + "pixelDepth": 12, + "pixels": 12112256, + "price": 699, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF5/vignette3.png", + "isMetal": false, + "launchDate": 1333555200000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC GF5", + "pixelDepth": 12, + "pixels": 12112256, + "price": 599, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5805915492957675, + "newModel": 0.4999999999999993, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 20, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF6/vignette3.png", + "isMetal": true, + "launchDate": 1365436800000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC GF6", + "pixelDepth": 16, + "pixels": 15962112, + "price": 680, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5262343637670737, + "newModel": 0.435263218452224, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH1/vignette3.png", + "isMetal": false, + "launchDate": 1236009600000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC GH1", + "pixelDepth": 12, + "pixels": 12118288, + "price": 880, + "resolution": [ + 4018, + 3016, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4879463588599421, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH2/vignette3.png", + "isMetal": false, + "launchDate": 1284998400000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC GH2", + "pixelDepth": 16, + "pixels": 16526720, + "price": 1100, + "resolution": [ + 4760, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 160, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GX1/vignette3.png", + "isMetal": true, + "launchDate": 1320595200000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC GX1", + "pixelDepth": 16, + "pixels": 15962112, + "price": 699, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07498410914110726, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5086267210380269, + "newModel": 0.22422653820654423, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_L10/vignette3.png", + "isMetal": false, + "launchDate": 1188403200000, + "maxISO": 1600, + "name": "Panasonic Lumix DMC L10", + "pixelDepth": 10, + "pixels": 10129182, + "price": 964, + "resolution": [ + 3682, + 2751, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 25600, + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.7947135702942201, + "portrait": 0.7577852385599273, + "scenery": 0.7966064796863366, + "sports": 0.9280927874100128, + "travel": 0.6000000000000001, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX10/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC LX10", + "pixelDepth": 20, + "pixels": 20108032, + "price": 699, + "resolution": [ + 5488, + 3664, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 3200, + ], + "assessment": { + "astronomy": 0.08158626796976341, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.3920642881983111, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX3/vignette3.png", + "isMetal": false, + "launchDate": 1219248000000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC LX3", + "pixelDepth": 10, + "pixels": 10101672, + "price": 450, + "resolution": [ + 3668, + 2754, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.09159248417473735, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7849727891156452, + "newModel": 0.48367497900914785, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX5/vignette3.png", + "isMetal": false, + "launchDate": 1279641600000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC LX5", + "pixelDepth": 10, + "pixels": 9980928, + "price": 470, + "resolution": [ + 3648, + 2736, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.0901815952879145, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.9219632107023416, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX7/vignette3.png", + "isMetal": true, + "launchDate": 1342540800000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC LX7", + "pixelDepth": 10, + "pixels": 9616512, + "price": 450, + "resolution": [ + 3792, + 2536, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 25600, + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000013, + "lowPrice": 0.5223287671232876, + "newModel": 0.5083073264676934, + "portrait": 0.7577852385599273, + "scenery": 0.7913335562244795, + "sports": 0.9305153256238644, + "travel": 0.4999999999999997, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ1000/vignette3.png", + "isMetal": true, + "launchDate": 1402502400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-FZ1000", + "pixelDepth": 20, + "pixels": 20108032, + "price": 900, + "resolution": [ + 5488, + 3664, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 780, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5077518978895429, + "lowPrice": 0.6435495207667674, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.5077038001485237, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ150/vignette3.png", + "isMetal": false, + "launchDate": 1314288000000, + "maxISO": 6400, + "name": "Panasonic LUMIX DMC-FZ150", + "pixelDepth": 12, + "pixels": 12112256, + "price": 630, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 484, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ200/vignette3.png", + "isMetal": false, + "launchDate": 1342540800000, + "maxISO": 6400, + "name": "Panasonic LUMIX DMC-FZ200", + "pixelDepth": 12, + "pixels": 12112256, + "price": 600, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 537, + }, + { + "ISO": [ + 80, + 25600, + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7947135702942201, + "portrait": 0.7577852385599273, + "scenery": 0.7913335562244795, + "sports": 0.9305153256238644, + "travel": 0.4999999999999997, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ2000/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-FZ2000", + "pixelDepth": 20, + "pixels": 20108032, + "price": 1200, + "resolution": [ + 5488, + 3664, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.652456703667635, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329549431761037, + "travel": 0.4999999999999997, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ330/vignette3.png", + "isMetal": false, + "launchDate": 1436976000000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-FZ330", + "pixelDepth": 12, + "pixels": 12112256, + "price": 600, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 691, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.788620117127104, + "newModel": 0.5000000000000014, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ70/vignette3.png", + "isMetal": false, + "launchDate": 1374076800000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-FZ70", + "pixelDepth": 16, + "pixels": 16054528, + "price": 399, + "resolution": [ + 4624, + 3472, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 562, + }, + { + "ISO": [ + 160, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.4999999999999999, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-G6/vignette3.png", + "isMetal": true, + "launchDate": 1366732800000, + "maxISO": 25600, + "name": "Panasonic LUMIX DMC-G6", + "pixelDepth": 16, + "pixels": 16054528, + "price": 750, + "resolution": [ + 4624, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.7947135702942201, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9329098228663452, + "travel": 0.4999999999999997, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-G80/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-G80", + "pixelDepth": 16, + "pixels": 15962112, + "price": 900, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 125, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5142987351549673, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.5139947079947079, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH3/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GH3", + "pixelDepth": 16, + "pixels": 16054528, + "price": 1300, + "resolution": [ + 4624, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 470, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5166240245186735, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000037, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9329549431761037, + "travel": 0.5161471125474214, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH4/vignette3.png", + "isMetal": true, + "launchDate": 1391702400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GH4", + "pixelDepth": 16, + "pixels": 16054528, + "price": 1700, + "resolution": [ + 4624, + 3472, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 465, + }, + { + "ISO": [ + 125, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.791105053176385, + "lowPrice": 0.7774999999999945, + "newModel": 0.4999999999999982, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.5889682780620483, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM1/vignette3.png", + "isMetal": false, + "launchDate": 1381939200000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GM1", + "pixelDepth": 16, + "pixels": 15962112, + "price": 600, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 173, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5356718768052593, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM5/vignette3.png", + "isMetal": false, + "launchDate": 1410710400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GM5", + "pixelDepth": 16, + "pixels": 15962112, + "price": 650, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 125, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5002492512472553, + "newModel": 0.49999999999999734, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX7/vignette3.png", + "isMetal": true, + "launchDate": 1375286400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GX7", + "pixelDepth": 16, + "pixels": 15962112, + "price": 999, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7684955031908199, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5310506986743073, + "lowPrice": 0.5000000000000002, + "newModel": 0.652456703667635, + "portrait": 0.7572868840213457, + "scenery": 0.7926129370273821, + "sports": 0.9202082067600574, + "travel": 0.5281263875886049, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX8/vignette3.png", + "isMetal": true, + "launchDate": 1436976000000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GX8", + "pixelDepth": 20, + "pixels": 20300800, + "price": 1200, + "resolution": [ + 5200, + 3904, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 435, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5637677017282634, + "lowPrice": 0.540338983050848, + "newModel": 0.7884656742453423, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5390282916213289, + "travel": 0.5456816567615795, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 40, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX80/vignette3.png", + "isMetal": true, + "launchDate": 1459785600000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GX80", + "pixelDepth": 16, + "pixels": 15962112, + "price": 800, + "resolution": [ + 4608, + 3464, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 383, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.4999999999999999, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-LF1/vignette3.png", + "isMetal": true, + "launchDate": 1366732800000, + "maxISO": 12800, + "name": "Panasonic LUMIX DMC-LF1", + "pixelDepth": 12, + "pixels": 12112256, + "price": 500, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5356718768052593, + "portrait": 0.23214285714285718, + "scenery": 0.5349047177886246, + "sports": 0.9282101545000288, + "travel": 0.4999999999999997, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-LX100/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-LX100", + "pixelDepth": 12, + "pixels": 12813312, + "price": 899, + "resolution": [ + 4128, + 3104, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 25600, + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7810649350649359, + "lowPrice": 0.5688059701492514, + "newModel": 0.7843904802557701, + "portrait": 0.7577852385599273, + "scenery": 0.7913335562244795, + "sports": 0.9305153256238644, + "travel": 0.5735143996455466, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 50, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS100/vignette3.png", + "isMetal": true, + "launchDate": 1451923200000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-ZS100", + "pixelDepth": 20, + "pixels": 20108032, + "price": 700, + "resolution": [ + 5488, + 3664, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 270, + }, + { + "ISO": [ + 80, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7868641561878553, + "lowPrice": 0.7885714285714326, + "newModel": 0.5704789664781744, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.5828093268052286, + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS50/vignette3.png", + "isMetal": true, + "launchDate": 1420387200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-ZS50", + "pixelDepth": 12, + "pixels": 12112256, + "price": 400, + "resolution": [ + 4016, + 3016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 217, + }, + { + "ISO": [ + 80, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7844324324324303, + "lowPrice": 0.7860344827586178, + "newModel": 0.7843904802557701, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.9329549431761037, + "travel": 0.579036395147314, + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 40, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS60/vignette3.png", + "isMetal": true, + "launchDate": 1451923200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-ZS60", + "pixelDepth": 18, + "pixels": 18115456, + "price": 450, + "resolution": [ + 4912, + 3688, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 240, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.6843044393014942, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4733707601890019, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.4981685791550049, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 1.1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/645D/vignette3.png", + "isMetal": false, + "launchDate": 1267372800000, + "maxISO": 1600, + "name": "Pentax 645D", + "pixelDepth": 40, + "pixels": 41218048, + "price": 9400, + "resolution": [ + 7424, + 5552, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 204800, + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.7040822943449921, + "travel": 0.4274213155703581, + }, + "autoFocus": 27, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/645Z/vignette3.png", + "isMetal": true, + "launchDate": 1397491200000, + "maxISO": 204800, + "name": "Pentax 645Z", + "pixelDepth": 51, + "pixels": 51261600, + "price": 8499, + "resolution": [ + 8268, + 6200, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1470, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K_01/vignette3.png", + "isMetal": false, + "launchDate": 1328112000000, + "maxISO": 25600, + "name": "Pentax K 01", + "pixelDepth": 16, + "pixels": 16150592, + "price": 899, + "resolution": [ + 4936, + 3272, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 561, + }, + { + "ISO": [ + 100, + 204800, + ], + "assessment": { + "astronomy": 0.7991884704521022, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7863670909985402, + "portrait": 0.7987767219178751, + "scenery": 0.8372544396217364, + "sports": 0.8187182533260141, + "travel": 0.6000000000000001, + }, + "autoFocus": 33, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 4.4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-1/vignette3.png", + "isMetal": true, + "launchDate": 1455638400000, + "maxISO": 204800, + "name": "Pentax K-1", + "pixelDepth": 36, + "pixels": 36590400, + "price": 1800, + "resolution": [ + 7392, + 4950, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.7855073257873711, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.6110358267573983, + "portrait": 0.7703483691026713, + "scenery": 0.8181443144048468, + "sports": 0.7844544401853034, + "travel": 0.6000000000000001, + }, + "autoFocus": 27, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 8.3, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-3_II/vignette3.png", + "isMetal": true, + "launchDate": 1429718400000, + "maxISO": 51200, + "name": "Pentax K-3 II", + "pixelDepth": 24, + "pixels": 24514560, + "price": 1100, + "resolution": [ + 6080, + 4032, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.7855073257873711, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999989, + "portrait": 0.7703483691026713, + "scenery": 0.8312799771905217, + "sports": 0.7844544401853034, + "travel": 0.4999999999999997, + }, + "autoFocus": 27, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 8.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-3/vignette3.png", + "isMetal": true, + "launchDate": 1381161600000, + "maxISO": 51200, + "name": "Pentax K-3", + "pixelDepth": 24, + "pixels": 24514560, + "price": 1300, + "resolution": [ + 6080, + 4032, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7849727891156452, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.08709750835940046, + "travel": 0.6000000000000001, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-30/vignette3.png", + "isMetal": true, + "launchDate": 1337616000000, + "maxISO": 25600, + "name": "Pentax K-30", + "pixelDepth": 16, + "pixels": 16150592, + "price": 470, + "resolution": [ + 4936, + 3272, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 51200, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5002492512472553, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.6000000000000001, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-5_II/vignette3.png", + "isMetal": false, + "launchDate": 1347292800000, + "maxISO": 51200, + "name": "Pentax K-5 II", + "pixelDepth": 16, + "pixels": 16084992, + "price": 999, + "resolution": [ + 4928, + 3264, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 680, + }, + { + "ISO": [ + 80, + 51200, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.6000000000000001, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-5_IIs/vignette3.png", + "isMetal": false, + "launchDate": 1347292800000, + "maxISO": 51200, + "name": "Pentax K-5 IIs", + "pixelDepth": 16, + "pixels": 16393728, + "price": 1199, + "resolution": [ + 4992, + 3284, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 680, + }, + { + "ISO": [ + 100, + 51600, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.4999999999999988, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-50/vignette3.png", + "isMetal": true, + "launchDate": 1370966400000, + "maxISO": 51600, + "name": "Pentax K-50", + "pixelDepth": 16, + "pixels": 16150592, + "price": 599, + "resolution": [ + 4936, + 3272, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 590, + }, + { + "ISO": [ + 100, + 51600, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.4999999999999988, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-500/vignette3.png", + "isMetal": true, + "launchDate": 1370966400000, + "maxISO": 51600, + "name": "Pentax K-500", + "pixelDepth": 16, + "pixels": 16150592, + "price": 600, + "resolution": [ + 4936, + 3272, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 586, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.7921735416410526, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5509399968123966, + "newModel": 0.5301265009296511, + "portrait": 0.7576143941853541, + "scenery": 0.8086863944353474, + "sports": 0.14159419166227288, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-S1/vignette3.png", + "isMetal": true, + "launchDate": 1409068800000, + "maxISO": 51200, + "name": "Pentax K-S1", + "pixelDepth": 20, + "pixels": 20166656, + "price": 749, + "resolution": [ + 5504, + 3664, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07474809247089696, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.2181843616746698, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K10D/vignette3.png", + "isMetal": false, + "launchDate": 1158076800000, + "maxISO": 1600, + "name": "Pentax K10D", + "pixelDepth": 10, + "pixels": 10328064, + "price": 900, + "resolution": [ + 3936, + 2624, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07491549761011086, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.597519313304726, + "newModel": 0.24558198458970612, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.0784042080851938, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 2.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K200D/vignette3.png", + "isMetal": false, + "launchDate": 1201017600000, + "maxISO": 1600, + "name": "Pentax K200D", + "pixelDepth": 10, + "pixels": 10191936, + "price": 660, + "resolution": [ + 3896, + 2616, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5459308666017538, + "newModel": 0.24558198458970612, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K20D/vignette3.png", + "isMetal": false, + "launchDate": 1201017600000, + "maxISO": 6400, + "name": "Pentax K20D", + "pixelDepth": 14, + "pixels": 14645312, + "price": 770, + "resolution": [ + 4688, + 3124, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 51200, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.4999999999999993, + "lowPrice": 0.4055555555555558, + "newModel": 0.4878779963391795, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K5/vignette3.png", + "isMetal": false, + "launchDate": 1284912000000, + "maxISO": 51200, + "name": "Pentax K5", + "pixelDepth": 16, + "pixels": 16084992, + "price": 1600, + "resolution": [ + 4928, + 3264, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 740, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4460967507986353, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K7/vignette3.png", + "isMetal": false, + "launchDate": 1242748800000, + "maxISO": 6400, + "name": "Pentax K7", + "pixelDepth": 14, + "pixels": 14852096, + "price": 1900, + "resolution": [ + 4736, + 3136, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08155286617093023, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7804838709677436, + "newModel": 0.40172294729228947, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/KM/vignette3.png", + "isMetal": false, + "launchDate": 1222012800000, + "maxISO": 3200, + "name": "Pentax KM", + "pixelDepth": 10, + "pixels": 10191936, + "price": 550, + "resolution": [ + 3896, + 2616, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.4891793045993771, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997, + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Kr/vignette3.png", + "isMetal": false, + "launchDate": 1286553600000, + "maxISO": 12800, + "name": "Pentax Kr", + "pixelDepth": 12, + "pixels": 12212224, + "price": 700, + "resolution": [ + 4288, + 2848, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 544, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6239120879120843, + "newModel": 0.45925794491957994, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 4.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Kx/vignette3.png", + "isMetal": false, + "launchDate": 1253116800000, + "maxISO": 12800, + "name": "Pentax Kx", + "pixelDepth": 12, + "pixels": 12358212, + "price": 640, + "resolution": [ + 4309, + 2868, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000009, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/MX-1/vignette3.png", + "isMetal": true, + "launchDate": 1357488000000, + "maxISO": 12800, + "name": "Pentax MX-1", + "pixelDepth": 12, + "pixels": 12088160, + "price": 499, + "resolution": [ + 4016, + 3010, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 125, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Q/vignette3.png", + "isMetal": false, + "launchDate": 1308672000000, + "maxISO": 6400, + "name": "Pentax Q", + "pixelDepth": 12, + "pixels": 12000000, + "price": 799, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7885714285714326, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.5853521126760562, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Q10/vignette3.png", + "isMetal": false, + "launchDate": 1347292800000, + "maxISO": 6400, + "name": "Pentax Q10", + "pixelDepth": 12, + "pixels": 12000000, + "price": 499, + "resolution": [ + 4000, + 3000, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 200, + }, + { + "ISO": [ + 35, + 3200, + ], + "assessment": { + "astronomy": 0.7054902216427643, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4965516706809994, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.49315579740607685, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 0.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/IQ180_Digital_Back/vignette3.png", + "isMetal": false, + "launchDate": 1295798400000, + "maxISO": 3200, + "name": "Phase One IQ180 Digital Back", + "pixelDepth": 80, + "pixels": 81130080, + "price": 42490, + "resolution": [ + 10380, + 7816, + ], + "touchScreen": true, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 3200, + ], + "assessment": { + "astronomy": 0.7054902216427643, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4433996683780272, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.499768472551638, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/P40_Plus/vignette3.png", + "isMetal": false, + "launchDate": 1240934400000, + "maxISO": 3200, + "name": "Phase One P40 Plus", + "pixelDepth": 40, + "pixels": 40811392, + "price": 19500, + "resolution": [ + 7372, + 5536, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 800, + ], + "assessment": { + "astronomy": 0.6789590464394789, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2200207290364855, + "portrait": 0.7999626495104558, + "scenery": 0.9329794185094133, + "sports": 0.4926892715782085, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 0.67, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/P45_Plus/vignette3.png", + "isMetal": false, + "launchDate": 1167580800000, + "maxISO": 800, + "name": "Phase One P45 Plus", + "pixelDepth": 39, + "pixels": 39447224, + "price": 32990, + "resolution": [ + 7246, + 5444, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 3200, + ], + "assessment": { + "astronomy": 0.7054902216427643, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.3784216378941073, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.49670835035303734, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/P65_Plus/vignette3.png", + "isMetal": false, + "launchDate": 1215964800000, + "maxISO": 3200, + "name": "Phase One P65 Plus", + "pixelDepth": 60, + "pixels": 60480288, + "price": 39900, + "resolution": [ + 8984, + 6732, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7864513069328588, + "lowPrice": 0.540338983050848, + "newModel": 0.6367447328611162, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.08141121495327112, + "travel": 0.5821811517518162, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Ricoh", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/GR_II/vignette3.png", + "isMetal": true, + "launchDate": 1434470400000, + "maxISO": 25600, + "name": "Ricoh GR II", + "pixelDepth": 16, + "pixels": 16216320, + "price": 800, + "resolution": [ + 4944, + 3280, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 221, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.4999999999999992, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Ricoh", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/GR/vignette3.png", + "isMetal": true, + "launchDate": 1366128000000, + "maxISO": 25600, + "name": "Ricoh GR", + "pixelDepth": 16, + "pixels": 16216320, + "price": 799, + "resolution": [ + 4944, + 3280, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 3200, + ], + "assessment": { + "astronomy": 0.08152527351808017, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.47267626401982743, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EX1/vignette3.png", + "isMetal": false, + "launchDate": 1266595200000, + "maxISO": 3200, + "name": "Samsung EX1", + "pixelDepth": 10, + "pixels": 10250640, + "price": 450, + "resolution": [ + 3714, + 2760, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.780541944127943, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EX2F/vignette3.png", + "isMetal": true, + "launchDate": 1341244800000, + "maxISO": 3200, + "name": "Samsung EX2F", + "pixelDepth": 12, + "pixels": 12393150, + "price": 549, + "resolution": [ + 4070, + 3045, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.767963968942561, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5448230521169204, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999987, + "portrait": 0.7568678042605349, + "scenery": 0.7978176549765145, + "sports": 0.17485598775152725, + "travel": 0.6160526505589617, + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 8.6, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/GALAXY_NX/vignette3.png", + "isMetal": false, + "launchDate": 1371657600000, + "maxISO": 25600, + "name": "Samsung GALAXY NX", + "pixelDepth": 20, + "pixels": 20597844, + "price": 1300, + "resolution": [ + 5546, + 3714, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 410, + }, + { + "ISO": [ + 50, + 1600, + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5898856238849349, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Galaxy_S6_Edge/vignette3.png", + "isMetal": false, + "launchDate": 1425139200000, + "maxISO": 1600, + "name": "Samsung Galaxy S6 Edge", + "pixelDepth": 16, + "pixels": 15984000, + "price": 600, + "resolution": [ + 5328, + 3000, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2470739519371539, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/GX_20/vignette3.png", + "isMetal": false, + "launchDate": 1201104000000, + "maxISO": 6400, + "name": "Samsung GX 20", + "pixelDepth": 14, + "pixels": 14645312, + "price": 1060, + "resolution": [ + 4688, + 3124, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7112748815165891, + "newModel": 0.4689337662499292, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5797773392152289, + "travel": 0.4999999999999997, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_10/vignette3.png", + "isMetal": true, + "launchDate": 1262534400000, + "maxISO": 3200, + "name": "Samsung NX 10", + "pixelDepth": 14, + "pixels": 14033152, + "price": 610, + "resolution": [ + 4592, + 3056, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.4874675526148574, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_100/vignette3.png", + "isMetal": false, + "launchDate": 1284393600000, + "maxISO": 6400, + "name": "Samsung NX 100", + "pixelDepth": 14, + "pixels": 14695296, + "price": 499, + "resolution": [ + 4704, + 3124, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5509399968123966, + "newModel": 0.5000000000000002, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_1000/vignette3.png", + "isMetal": false, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Samsung NX 1000", + "pixelDepth": 20, + "pixels": 20427820, + "price": 749, + "resolution": [ + 5530, + 3694, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6104119565398675, + "newModel": 0.49467166549249286, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5797773392152289, + "travel": 0.4999999999999997, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_11/vignette3.png", + "isMetal": false, + "launchDate": 1293465600000, + "maxISO": 3200, + "name": "Samsung NX 11", + "pixelDepth": 14, + "pixels": 14033152, + "price": 649, + "resolution": [ + 4592, + 3056, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5605035174275096, + "newModel": 0.5000000000000002, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_20/vignette3.png", + "isMetal": true, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Samsung NX 20", + "pixelDepth": 20, + "pixels": 20427820, + "price": 719, + "resolution": [ + 5530, + 3694, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7574156331648266, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.7574156331648266, + "scenery": 0.9047003568345681, + "sports": 0.9035960760058871, + "travel": 0.4999999999999997, + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_200/vignette3.png", + "isMetal": true, + "launchDate": 1314806400000, + "maxISO": 12800, + "name": "Samsung NX 200", + "pixelDepth": 20, + "pixels": 20243536, + "price": 899, + "resolution": [ + 5528, + 3662, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_210/vignette3.png", + "isMetal": true, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Samsung NX 210", + "pixelDepth": 20, + "pixels": 20427820, + "price": 899, + "resolution": [ + 5530, + 3694, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.767963968942561, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.49999999999999994, + "portrait": 0.7568678042605349, + "scenery": 0.7945249062106045, + "sports": 0.9096998997760598, + "travel": 0.4999999999999997, + }, + "autoFocus": 247, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_30/vignette3.png", + "isMetal": true, + "launchDate": 1388592000000, + "maxISO": 25600, + "name": "Samsung NX 30", + "pixelDepth": 20, + "pixels": 20597844, + "price": 1000, + "resolution": [ + 5546, + 3714, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.767963968942561, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.5000000000000002, + "portrait": 0.7568678042605349, + "scenery": 0.7945249062106045, + "sports": 0.9096998997760598, + "travel": 0.4999999999999997, + }, + "autoFocus": 105, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_300/vignette3.png", + "isMetal": true, + "launchDate": 1357142400000, + "maxISO": 25600, + "name": "Samsung NX 300", + "pixelDepth": 20, + "pixels": 20597844, + "price": 750, + "resolution": [ + 5546, + 3714, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.789696014730465, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5356718768052593, + "portrait": 0.78260150860643, + "scenery": 0.8445449976008005, + "sports": 0.863331869802134, + "travel": 0.4999999999999997, + }, + "autoFocus": 205, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 15, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX1/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 51200, + "name": "Samsung NX1", + "pixelDepth": 28, + "pixels": 28166656, + "price": 1500, + "resolution": [ + 6496, + 4336, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 550, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7863470725831935, + "lowPrice": 0.7774999999999945, + "newModel": 0.49999999999999895, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.5820220068230356, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX1100/vignette3.png", + "isMetal": false, + "launchDate": 1365609600000, + "maxISO": 12800, + "name": "Samsung NX1100", + "pixelDepth": 20, + "pixels": 20427820, + "price": 600, + "resolution": [ + 5530, + 3694, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 222, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7680231925477633, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7857178161195241, + "lowPrice": 0.6104119565398675, + "newModel": 0.5000000000000007, + "portrait": 0.7569000413755361, + "scenery": 0.794289630177359, + "sports": 0.16952446197897722, + "travel": 0.5810531450277894, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX2000/vignette3.png", + "isMetal": false, + "launchDate": 1367337600000, + "maxISO": 25600, + "name": "Samsung NX2000", + "pixelDepth": 20, + "pixels": 20560704, + "price": 649, + "resolution": [ + 5536, + 3714, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 228, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.789696014730465, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7791860490003187, + "lowPrice": 0.540338983050848, + "newModel": 0.5811554917614258, + "portrait": 0.78260150860643, + "scenery": 0.8445449976008005, + "sports": 0.836872067404478, + "travel": 0.570277940985, + }, + "autoFocus": 209, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX500/vignette3.png", + "isMetal": true, + "launchDate": 1423065600000, + "maxISO": 51200, + "name": "Samsung NX500", + "pixelDepth": 28, + "pixels": 28166656, + "price": 800, + "resolution": [ + 6496, + 4336, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 286, + }, + { + "ISO": [ + 100, + 16000, + ], + "assessment": { + "astronomy": 0.757124786697767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.500000000000001, + "portrait": 0.7578318827615904, + "scenery": 0.8088067209032789, + "sports": 0.15281007824415999, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A3000/vignette3.png", + "isMetal": true, + "launchDate": 1377532800000, + "maxISO": 16000, + "name": "Sony A3000", + "pixelDepth": 20, + "pixels": 20093376, + "price": 400, + "resolution": [ + 5496, + 3656, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 16000, + ], + "assessment": { + "astronomy": 0.757124786697767, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7873744565469238, + "lowPrice": 0.7833333333333332, + "newModel": 0.5000000000000031, + "portrait": 0.7578318827615904, + "scenery": 0.8088067209032789, + "sports": 0.15281007824415999, + "travel": 0.5835785396731737, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A5000/vignette3.png", + "isMetal": false, + "launchDate": 1389024000000, + "maxISO": 16000, + "name": "Sony A5000", + "pixelDepth": 20, + "pixels": 20093376, + "price": 500, + "resolution": [ + 5496, + 3656, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 212, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7861386577120755, + "lowPrice": 0.7804838709677436, + "newModel": 0.5275181400190596, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.851176015876996, + "travel": 0.5817022089871295, + }, + "autoFocus": 179, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A5100/vignette3.png", + "isMetal": false, + "launchDate": 1408291200000, + "maxISO": 25600, + "name": "Sony A5100", + "pixelDepth": 24, + "pixels": 24240576, + "price": 550, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 224, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.4999999999999988, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.8708446550476395, + "travel": 0.4999999999999997, + }, + "autoFocus": 179, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A6000/vignette3.png", + "isMetal": true, + "launchDate": 1392134400000, + "maxISO": 25600, + "name": "Sony A6000", + "pixelDepth": 24, + "pixels": 24240576, + "price": 799, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5853605595441081, + "lowPrice": 0.5000000000000002, + "newModel": 0.7857329930118643, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.8708446550476395, + "travel": 0.5520921769047799, + }, + "autoFocus": 425, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A6300/vignette3.png", + "isMetal": true, + "launchDate": 1454428800000, + "maxISO": 51200, + "name": "Sony A6300", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1000, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 361, + }, + { + "ISO": [ + 100, + 51200, + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.5772727272727275, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7952429470062747, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.8708446550476395, + "travel": 0.4999999999999997, + }, + "autoFocus": 425, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A6500/vignette3.png", + "isMetal": true, + "launchDate": 1475683200000, + "maxISO": 51200, + "name": "Sony A6500", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1400, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 51200, + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.4055555555555558, + "newModel": 0.5556135791067395, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.851176015876996, + "travel": 0.4999999999999997, + }, + "autoFocus": 117, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7_II/vignette3.png", + "isMetal": true, + "launchDate": 1416412800000, + "maxISO": 51200, + "name": "Sony A7 II", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1600, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5407067040274806, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999956, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.851176015876996, + "travel": 0.5346221378053997, + }, + "autoFocus": 117, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7/vignette3.png", + "isMetal": true, + "launchDate": 1381852800000, + "maxISO": 25600, + "name": "Sony A7", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1700, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 417, + }, + { + "ISO": [ + 50, + 102400, + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.6332034374702056, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.8378640915593707, + "travel": 0.4999999999999997, + }, + "autoFocus": 399, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7R_II/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 102400, + "name": "Sony A7R II", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3198, + "resolution": [ + 8000, + 5320, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 32000, + ], + "assessment": { + "astronomy": 0.7954545454545446, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.8000000000000005, + "portrait": 0.8000000000000005, + "scenery": 0.8603932729624846, + "sports": 0.8378640915593707, + "travel": 0.4999999999999997, + }, + "autoFocus": 425, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7R_III/vignette3.png", + "isMetal": true, + "launchDate": 1508860800000, + "maxISO": 32000, + "name": "Sony A7R III", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3200, + "resolution": [ + 8000, + 5320, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 25600, + ], + "assessment": { + "astronomy": 0.7930571715794911, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5460449527928192, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999956, + "portrait": 0.7986281521239487, + "scenery": 0.8662175586444613, + "sports": 0.7972095312509098, + "travel": 0.5376965929178139, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7R/vignette3.png", + "isMetal": true, + "launchDate": 1381852800000, + "maxISO": 25600, + "name": "Sony A7R", + "pixelDepth": 36, + "pixels": 36368640, + "price": 2300, + "resolution": [ + 7392, + 4920, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 408, + }, + { + "ISO": [ + 50, + 409600, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.6896551095281694, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 169, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7S_II/vignette3.png", + "isMetal": true, + "launchDate": 1441900800000, + "maxISO": 409600, + "name": "Sony A7S II", + "pixelDepth": 12, + "pixels": 12121088, + "price": 3000, + "resolution": [ + 4256, + 2848, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 409600, + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000004, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7S/vignette3.png", + "isMetal": true, + "launchDate": 1396713600000, + "maxISO": 409600, + "name": "Sony A7S", + "pixelDepth": 12, + "pixels": 12212224, + "price": 2499, + "resolution": [ + 4288, + 2848, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 50, + 204800, + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7994803580749491, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.878889417328949, + "travel": 0.4999999999999997, + }, + "autoFocus": 693, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 20, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/a9/vignette3.png", + "isMetal": true, + "launchDate": 1492531200000, + "maxISO": 204800, + "name": "Sony a9", + "pixelDepth": 24, + "pixels": 24240576, + "price": 4500, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 1600, + ], + "assessment": { + "astronomy": 0.07499457070566203, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7872221738460448, + "newModel": 0.21656304589236866, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_100/vignette3.png", + "isMetal": false, + "launchDate": 1149436800000, + "maxISO": 1600, + "name": "Sony Alpha 100", + "pixelDepth": 10, + "pixels": 10119040, + "price": 427, + "resolution": [ + 3880, + 2608, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7063710957574427, + "newModel": 0.2265904080586503, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_200/vignette3.png", + "isMetal": false, + "launchDate": 1199635200000, + "maxISO": 3200, + "name": "Sony Alpha 200", + "pixelDepth": 10, + "pixels": 10119040, + "price": 611, + "resolution": [ + 3880, + 2608, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.44584616997006904, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_230/vignette3.png", + "isMetal": false, + "launchDate": 1242576000000, + "maxISO": 3200, + "name": "Sony Alpha 230", + "pixelDepth": 10, + "pixels": 10119040, + "price": 900, + "resolution": [ + 3880, + 2608, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.480158319890666, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_290/vignette3.png", + "isMetal": false, + "launchDate": 1275321600000, + "maxISO": 3200, + "name": "Sony Alpha 290", + "pixelDepth": 14, + "pixels": 14131200, + "price": 499, + "resolution": [ + 4600, + 3072, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5742148626817465, + "newModel": 0.2556945110907585, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_300/vignette3.png", + "isMetal": false, + "launchDate": 1201622400000, + "maxISO": 3200, + "name": "Sony Alpha 300", + "pixelDepth": 10, + "pixels": 10119040, + "price": 690, + "resolution": [ + 3880, + 2608, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5438923933209653, + "newModel": 0.44584616997006904, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_330/vignette3.png", + "isMetal": false, + "launchDate": 1242576000000, + "maxISO": 3200, + "name": "Sony Alpha 330", + "pixelDepth": 10, + "pixels": 10119040, + "price": 780, + "resolution": [ + 3880, + 2608, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.2556945110907585, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_350/vignette3.png", + "isMetal": false, + "launchDate": 1201622400000, + "maxISO": 3200, + "name": "Sony Alpha 350", + "pixelDepth": 14, + "pixels": 14131200, + "price": 700, + "resolution": [ + 4600, + 3072, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5150757466706188, + "newModel": 0.44584616997006904, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_380/vignette3.png", + "isMetal": false, + "launchDate": 1242576000000, + "maxISO": 3200, + "name": "Sony Alpha 380", + "pixelDepth": 14, + "pixels": 14131200, + "price": 935, + "resolution": [ + 4600, + 3072, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 3200, + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6708244274809205, + "newModel": 0.4807263812493066, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_390/vignette3.png", + "isMetal": false, + "launchDate": 1276012800000, + "maxISO": 3200, + "name": "Sony Alpha 390", + "pixelDepth": 14, + "pixels": 14131200, + "price": 620, + "resolution": [ + 4600, + 3072, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5805915492957675, + "newModel": 0.4690156471488247, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.08141121495327112, + "travel": 0.1999999999999999, + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_450/vignette3.png", + "isMetal": false, + "launchDate": 1262620800000, + "maxISO": 12800, + "name": "Sony Alpha 450", + "pixelDepth": 14, + "pixels": 14033152, + "price": 680, + "resolution": [ + 4592, + 3056, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.45718307173781214, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_500/vignette3.png", + "isMetal": false, + "launchDate": 1251302400000, + "maxISO": 12800, + "name": "Sony Alpha 500", + "pixelDepth": 12, + "pixels": 12166656, + "price": 699, + "resolution": [ + 4272, + 2848, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.45718307173781214, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_550/vignette3.png", + "isMetal": false, + "launchDate": 1251302400000, + "maxISO": 12800, + "name": "Sony Alpha 550", + "pixelDepth": 14, + "pixels": 14033152, + "price": 899, + "resolution": [ + 4592, + 3056, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.48602562819374145, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_560/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony Alpha 560", + "pixelDepth": 14, + "pixels": 14033152, + "price": 650, + "resolution": [ + 4592, + 3056, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.48602562819374145, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_580/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony Alpha 580", + "pixelDepth": 16, + "pixels": 16032768, + "price": 800, + "resolution": [ + 4912, + 3264, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2243513616148157, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_700/vignette3.png", + "isMetal": false, + "launchDate": 1189008000000, + "maxISO": 6400, + "name": "Sony Alpha 700", + "pixelDepth": 12, + "pixels": 12246528, + "price": 1300, + "resolution": [ + 4288, + 2856, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.7704572785696823, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.45718307173781214, + "portrait": 0.7704572785696823, + "scenery": 0.9133867067232389, + "sports": 0.38354424209842136, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_850/vignette3.png", + "isMetal": false, + "launchDate": 1251302400000, + "maxISO": 6400, + "name": "Sony Alpha 850", + "pixelDepth": 24, + "pixels": 24611840, + "price": 2000, + "resolution": [ + 6080, + 4048, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 6400, + ], + "assessment": { + "astronomy": 0.7704572785696823, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.3979735610767237, + "portrait": 0.7704572785696823, + "scenery": 0.9133867067232389, + "sports": 0.45318308537722457, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_900/vignette3.png", + "isMetal": false, + "launchDate": 1220889600000, + "maxISO": 6400, + "name": "Sony Alpha 900", + "pixelDepth": 24, + "pixels": 24611840, + "price": 3000, + "resolution": [ + 6080, + 4048, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 125, + 25600, + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.781868221169668, + "lowPrice": 0.540338983050848, + "newModel": 0.5005642077701145, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.7506715684692546, + "travel": 0.5748646900582306, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC_RX100_III/vignette3.png", + "isMetal": true, + "launchDate": 1400169600000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC RX100 III", + "pixelDepth": 20, + "pixels": 20181312, + "price": 800, + "resolution": [ + 5496, + 3672, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 263, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.522251079660429, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.765272111911738, + "travel": 0.5211232696298297, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1/vignette3.png", + "isMetal": false, + "launchDate": 1347379200000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX1", + "pixelDepth": 24, + "pixels": 24240576, + "price": 2800, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 453, + }, + { + "ISO": [ + 64, + 25600, + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.4999999999999999, + "lowPrice": 0.5000000000000002, + "newModel": 0.6332034374702056, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.9250914391481908, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 14, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10_II/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX10 II", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1298, + "resolution": [ + 5496, + 3672, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 770, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.7575753910868758, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000011, + "lowPrice": 0.5000000000000002, + "newModel": 0.49999999999999956, + "portrait": 0.7575753910868758, + "scenery": 0.904804349946865, + "sports": 0.7506715684692546, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10/vignette3.png", + "isMetal": true, + "launchDate": 1381852800000, + "maxISO": 12800, + "name": "Sony Cyber-shot DSC-RX10", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1300, + "resolution": [ + 5496, + 3672, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 756, + }, + { + "ISO": [ + 160, + 25600, + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.49999999999999967, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.7506715684692546, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_II/vignette3.png", + "isMetal": true, + "launchDate": 1372262400000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX100 II", + "pixelDepth": 20, + "pixels": 20181312, + "price": 750, + "resolution": [ + 5496, + 3672, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 125, + 25600, + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5122372045389215, + "newModel": 0.6332034374702056, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.9250914391481908, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 16, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_IV/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX100 IV", + "pixelDepth": 20, + "pixels": 20181312, + "price": 948, + "resolution": [ + 5496, + 3672, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 80, + 12800, + ], + "assessment": { + "astronomy": 0.7575753910868758, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7808321445108233, + "lowPrice": 0.5000000000000002, + "newModel": 0.7952429470062747, + "portrait": 0.7575753910868758, + "scenery": 0.904804349946865, + "sports": 0.9289580592623857, + "travel": 0.5731205166457228, + }, + "autoFocus": 315, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 24, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_V/vignette3.png", + "isMetal": true, + "launchDate": 1475683200000, + "maxISO": 12800, + "name": "Sony Cyber-shot DSC-RX100 V", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1000, + "resolution": [ + 5496, + 3672, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 272, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7686844615786673, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7872729469602328, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000002, + "portrait": 0.7574988049767019, + "scenery": 0.7920187512505069, + "sports": 0.7507865996247792, + "travel": 0.46433253781375516, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100/vignette3.png", + "isMetal": false, + "launchDate": 1338912000000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX100", + "pixelDepth": 20, + "pixels": 20210688, + "price": 650, + "resolution": [ + 5504, + 3672, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 213, + }, + { + "ISO": [ + 50, + 102400, + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7166083253096587, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.8378640915593707, + "travel": 0.4999999999999997, + }, + "autoFocus": 399, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R_II/vignette3.png", + "isMetal": true, + "launchDate": 1444752000000, + "maxISO": 102400, + "name": "Sony Cyber-shot DSC-RX1R II", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3300, + "resolution": [ + 8000, + 5320, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999967, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.765272111911738, + "travel": 0.4999999999999997, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R/vignette3.png", + "isMetal": true, + "launchDate": 1372262400000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX1R", + "pixelDepth": 24, + "pixels": 24240576, + "price": 2800, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 64, + 128000, + ], + "assessment": { + "astronomy": 0.7921253835539216, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.5000000000000002, + "newModel": 0.7881672764471431, + "portrait": 0.7575753910868758, + "scenery": 0.8087352396637774, + "sports": 0.9250914391481908, + "travel": 0.4274213155703581, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 14, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cybershot_DSC-RX10_III/vignette3.png", + "isMetal": true, + "launchDate": 1459180800000, + "maxISO": 128000, + "name": "Sony Cybershot DSC-RX10 III", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1500, + "resolution": [ + 5496, + 3672, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1051, + }, + { + "ISO": [ + 200, + 16000, + ], + "assessment": { + "astronomy": 0.7561544192841484, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7875774647887285, + "lowPrice": 0.5882224371373292, + "newModel": 0.49999999999999967, + "portrait": 0.5, + "scenery": 0.7561544192841484, + "sports": 0.5, + "travel": 0.5838818529536767, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-3N/vignette3.png", + "isMetal": true, + "launchDate": 1361289600000, + "maxISO": 16000, + "name": "Sony NEX-3N", + "pixelDepth": 16, + "pixels": 16144128, + "price": 670, + "resolution": [ + 4928, + 3276, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 210, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7811798263884996, + "lowPrice": 0.529979472659706, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.5737092990652819, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5N/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 25600, + "name": "Sony NEX-5N", + "pixelDepth": 16, + "pixels": 16144128, + "price": 860, + "resolution": [ + 4928, + 3276, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 269, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5R/vignette3.png", + "isMetal": true, + "launchDate": 1346169600000, + "maxISO": 25600, + "name": "Sony NEX-5R", + "pixelDepth": 16, + "pixels": 16144128, + "price": 650, + "resolution": [ + 4928, + 3276, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.780541944127943, + "newModel": 0.500000000000001, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5T/vignette3.png", + "isMetal": true, + "launchDate": 1377532800000, + "maxISO": 25600, + "name": "Sony NEX-5T", + "pixelDepth": 16, + "pixels": 16144128, + "price": 549, + "resolution": [ + 4928, + 3276, + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7790665157385805, + "lowPrice": 0.5321526928938327, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5700684743559113, + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-6/vignette3.png", + "isMetal": false, + "launchDate": 1347379200000, + "maxISO": 25600, + "name": "Sony NEX-6", + "pixelDepth": 16, + "pixels": 16032768, + "price": 848, + "resolution": [ + 4912, + 3264, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 287, + }, + { + "ISO": [ + 100, + 16000, + ], + "assessment": { + "astronomy": 0.768033040268409, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5511827956989267, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8660418380302833, + "sports": 0.765272111911738, + "travel": 0.5403389830508478, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-7/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 16000, + "name": "Sony NEX-7", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1720, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 400, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7860344827586178, + "lowPrice": 0.5459308666017538, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08243762781186093, + "travel": 0.5815415549597859, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-C3/vignette3.png", + "isMetal": true, + "launchDate": 1307462400000, + "maxISO": 12800, + "name": "Sony NEX-C3", + "pixelDepth": 16, + "pixels": 16163840, + "price": 770, + "resolution": [ + 4928, + 3280, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 225, + }, + { + "ISO": [ + 100, + 16000, + ], + "assessment": { + "astronomy": 0.7561544192841484, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7827748344370856, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7561544192841484, + "sports": 0.5, + "travel": 0.5763623124931568, + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-F3/vignette3.png", + "isMetal": true, + "launchDate": 1337184000000, + "maxISO": 16000, + "name": "Sony NEX-F3", + "pixelDepth": 16, + "pixels": 16144128, + "price": 600, + "resolution": [ + 4928, + 3276, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 255, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7804838709677436, + "newModel": 0.4779259701994772, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX3/vignette3.png", + "isMetal": false, + "launchDate": 1272643200000, + "maxISO": 12800, + "name": "Sony NEX3", + "pixelDepth": 14, + "pixels": 14155776, + "price": 550, + "resolution": [ + 4608, + 3072, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 200, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.4779259701994772, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX5/vignette3.png", + "isMetal": false, + "launchDate": 1272643200000, + "maxISO": 12800, + "name": "Sony NEX5", + "pixelDepth": 14, + "pixels": 14155776, + "price": 650, + "resolution": [ + 4608, + 3072, + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.48602562819374145, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_33/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony SLT Alpha 33", + "pixelDepth": 14, + "pixels": 14033152, + "price": 599, + "resolution": [ + 4592, + 3056, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08243762781186093, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_35/vignette3.png", + "isMetal": false, + "launchDate": 1307462400000, + "maxISO": 12800, + "name": "Sony SLT Alpha 35", + "pixelDepth": 16, + "pixels": 16032768, + "price": 600, + "resolution": [ + 4912, + 3264, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 16000, + ], + "assessment": { + "astronomy": 0.7561544192841484, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5246382425030723, + "lowPrice": 0.7833333333333332, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7561544192841484, + "sports": 0.5, + "travel": 0.5231221657963078, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_37/vignette3.png", + "isMetal": false, + "launchDate": 1337184000000, + "maxISO": 16000, + "name": "Sony SLT Alpha 37", + "pixelDepth": 16, + "pixels": 16144128, + "price": 500, + "resolution": [ + 4928, + 3276, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 448, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.48602562819374145, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_55/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony SLT Alpha 55", + "pixelDepth": 16, + "pixels": 16032768, + "price": 750, + "resolution": [ + 4912, + 3264, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_57/vignette3.png", + "isMetal": false, + "launchDate": 1331481600000, + "maxISO": 25600, + "name": "Sony SLT Alpha 57", + "pixelDepth": 16, + "pixels": 16144128, + "price": 700, + "resolution": [ + 4928, + 3276, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 618, + }, + { + "ISO": [ + 100, + 16000, + ], + "assessment": { + "astronomy": 0.757124786697767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5039297217996406, + "lowPrice": 0.5549758418656195, + "newModel": 0.49999999999999967, + "portrait": 0.7578318827615904, + "scenery": 0.8088067209032789, + "sports": 0.7502320157775385, + "travel": 0.5039235324633394, + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_58/vignette3.png", + "isMetal": true, + "launchDate": 1361289600000, + "maxISO": 16000, + "name": "Sony SLT Alpha 58", + "pixelDepth": 20, + "pixels": 20093376, + "price": 735, + "resolution": [ + 5496, + 3656, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 492, + }, + { + "ISO": [ + 100, + 16000, + ], + "assessment": { + "astronomy": 0.768033040268409, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8229472058469092, + "sports": 0.851176015876996, + "travel": 0.6000000000000001, + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_65/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 16000, + "name": "Sony SLT Alpha 65", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1290, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 622, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712555350839917, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.7376997222824313, + "portrait": 0.7700162146413259, + "scenery": 0.8293164489858248, + "sports": 0.8515184574716526, + "travel": 0.4999999999999997, + }, + "autoFocus": 79, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_68/vignette3.png", + "isMetal": true, + "launchDate": 1446652800000, + "maxISO": 25600, + "name": "Sony SLT Alpha 68", + "pixelDepth": 24, + "pixels": 24192384, + "price": 600, + "resolution": [ + 6024, + 4016, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999995, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.878889417328949, + "travel": 0.4999999999999997, + }, + "autoFocus": 79, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77_II/vignette3.png", + "isMetal": true, + "launchDate": 1398873600000, + "maxISO": 25600, + "name": "Sony SLT Alpha 77 II", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1200, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 647, + }, + { + "ISO": [ + 50, + 16000, + ], + "assessment": { + "astronomy": 0.7681301672554949, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.7701601610274225, + "scenery": 0.8231407538735952, + "sports": 0.8505086917392912, + "travel": 0.6000000000000001, + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 16000, + "name": "Sony SLT Alpha 77", + "pixelDepth": 24, + "pixels": 24337152, + "price": 1399, + "resolution": [ + 6048, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 653, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7942026687014537, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7947135702942201, + "portrait": 0.8000000000000005, + "scenery": 0.8673690429506864, + "sports": 0.8589465478841881, + "travel": 0.4999999999999997, + }, + "autoFocus": 399, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99_II/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Sony SLT Alpha 99 II", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3200, + "resolution": [ + 8000, + 5320, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 25600, + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8141852827277354, + "sports": 0.43986235922907646, + "travel": 0.6000000000000001, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99/vignette3.png", + "isMetal": true, + "launchDate": 1347379200000, + "maxISO": 25600, + "name": "Sony SLT Alpha 99", + "pixelDepth": 24, + "pixels": 24240576, + "price": 2800, + "resolution": [ + 6024, + 4024, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, + { + "ISO": [ + 100, + 12800, + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7895362318840548, + "newModel": 0.7940626724806624, + "portrait": 0.23642481756120523, + "scenery": 0.23642481756120523, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997, + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "YUNEEC", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Breeze_4K/vignette3.png", + "isMetal": true, + "launchDate": 1472486400000, + "maxISO": 12800, + "name": "YUNEEC Breeze 4K", + "pixelDepth": 13, + "pixels": 12979200, + "price": 380, + "resolution": [ + 4160, + 3120, + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500, + }, +]); +export default data; \ No newline at end of file diff --git a/scr/模糊专家系统/frontend/src/index.js b/scr/模糊专家系统/frontend/src/index.js new file mode 100644 index 0000000..1781a9d --- /dev/null +++ b/scr/模糊专家系统/frontend/src/index.js @@ -0,0 +1,8 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import App from './App'; + +let root=document.createElement('div'); +root.className='root'; +document.body.appendChild(root); +ReactDOM.render(React.createElement(App), root); diff --git a/scr/模糊专家系统/frontend/src/index.less b/scr/模糊专家系统/frontend/src/index.less new file mode 100644 index 0000000..d9fdbc8 --- /dev/null +++ b/scr/模糊专家系统/frontend/src/index.less @@ -0,0 +1,88 @@ +* { + font-family: "Microsoft YaHei UI", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif; +} + +.place { + font-size: 30px; + font-weight: 900; + position: absolute; + left: -2px; + top: -2px; + opacity: .3; +} + +.place-0 { + font-size: 50px; +} + +.place-1 { + font-size: 40px; +} + +.recommendation-item { + position: relative; + padding: 20px; + .camera { + position: relative; + padding-left: 160px; + table { + width: 100%; + } + .image { + position: absolute; + left: 0; + width: 120px; + text-align: center; + padding-top: 18px; + img { + width: 120px; + } + .name { + font-weight: bold; + width: 120px; + white-space: normal; + display: block; + margin-top: 10px; + } + .score { + opacity: .5; + font-size: 11px; + } + } + } +} + +.table { + border-collapse: collapse; +} + +table, th, td { + border: 1px solid #e8e8e8; +} + +th, td { + padding: 8px; + text-align: left; +} + +.pros-cons { + display: flex; + padding: 10px 0; + .score-hint { + font-size: 9px; + opacity: .3; + color:black; + } + .pros { + color: #1890ff; + flex: 1; + } + + .cons { + color: #F5222D; + flex: 1; + } + .list { + font-size: 11px; + } +} diff --git a/scr/模糊专家系统/frontend/src/questions.js b/scr/模糊专家系统/frontend/src/questions.js new file mode 100644 index 0000000..029f450 --- /dev/null +++ b/scr/模糊专家系统/frontend/src/questions.js @@ -0,0 +1,47 @@ +let questions = [ + { + text: "您将如何使用本相机(多选)", multiple: true, + options: [ + { text: '记录旅行', value: 'travel' }, + { text: '拍摄学校或公司活动', value: 'event' }, + { text: '拍摄体育比赛', value: 'sports' }, + { text: '拍摄自然风景', value: 'scenery' }, + { text: '拍摄人像', value: 'portrait' }, + { text: '拍摄天文', value: 'astronomy' }], + }, + { + text: "您看中哪些额外功能吗(多选)", multiple: true, + options: [ + { text: '内置闪光灯', value: "flash" }, + { text: '可录制视频', value: "video" }, + { text: '可蓝牙传输照片', value: "bluetooth" }, + { text: '可触屏', value: "touchScreen" }, + { text: '内置GPS', value: "gps" }, + { text: '防水', value: "waterproof" }], + }, + { + text: "您是否愿意承受单反的重量", + options: [ + { text: '没问题,3公斤的机器都扛得住', value: "!lightBuild" }, + { text: '在能避免负重的情况下尽可能避免负重' }, + { text: '不愿意接受重的单反,必须较为轻便', value: "lightBuild" }, + ], + }, + { + text: "您愿意在单反上投入的经济", + options: [ + { text: '很多,一步到位买高端设备', value: "!lowPrice" }, + { text: '普通,好用实用的设备' }, + { text: '经济,请推荐入门基本款', value: "lowPrice" }, + ], + }, + { + text: "您有什么别的要求吗(多选)", multiple: true, + options: [ + { text: '尽量购买新的型号', value: "newModel" }, + { text: '机身材质要好', value: "durableBuild" }, + ], + }, +]; + +export default questions; \ No newline at end of file diff --git a/scr/模糊专家系统/frontend/src/rank.js b/scr/模糊专家系统/frontend/src/rank.js new file mode 100644 index 0000000..c1acf16 --- /dev/null +++ b/scr/模糊专家系统/frontend/src/rank.js @@ -0,0 +1,86 @@ +import questions from "./questions"; +import data from "./data"; + +export default function rank(selection) { + let tags = []; + questions.forEach((question, index) => { + if (question.multiple) { + selection[index].forEach((sel, ind) => { + if (sel) { + tags.push(question.options[ind].value); + } + }) + } else { + tags.push(question.options[selection[index]].value); + } + }); + tags = tags.filter(_ => _); + + let sortedData = [...data]; + sortedData.forEach(item => { + let { score, changes } = evaluate(item, tags); + item.score = score; + item.changes = changes; + }); + sortedData.sort((a, b) => { + return b.score - a.score; + }); + let retData = sortedData.slice(0, 5); + retData.forEach(item => { + item.pros = item.changes.filter(_ => _[0] > 0); + item.cons = item.changes.filter(_ => _[0] < 0); + item.pros.sort((a, b) => { + return b[0] - a[0]; + }); + item.cons.sort((a, b) => { + return Math.abs(b[0]) - Math.abs(a[0]); + }); + }); + console.log(sortedData); + return retData; +} + +const weight = { + newModel: 0.5, + lowPrice: 0.2, + lightBuild: 0.4, + travel: 2, + event: 3, + sports: 2, + scenery: 3, + portrait: 5, + astronomy: 3, +}; + +const shift = { + travel: -1.5, + event: -1.5, + sports: -1.5, + scenery: -1.5, + portrait: -1.5, + astronomy: -1.5, +}; + +function evaluate(item, tags) { + let score = 0, changes = []; + tags.forEach(tag => { + let reverse = false; + let normalizedTag = tag; + if (tag.startsWith("!")) { + //允许使用!开头,表示相反。如:!lowPrice时,lowPrice原本加分现在变成减分 + reverse = true; + normalizedTag = tag.substr(1); + } + let scoreChange = 0; + if (item.assessment[normalizedTag]) { // 如果是专家系统assess出来的结果,一个占20分 + scoreChange = (reverse ? -1 : 1) * (item.assessment[normalizedTag] * 20 + (shift[normalizedTag] || 0)) * (weight[normalizedTag] || 1); + } else { // 如果不是,那么是“防水”等基本要求,一个占3分 + scoreChange = (reverse ? -1 : 1) * (item[normalizedTag] ? 1 : -1) * (3 + (shift[normalizedTag] || 0)) * (weight[normalizedTag] || 1); + } + if (scoreChange) { + score += scoreChange; + changes.push([scoreChange, tag]); // 记录评分变化,之后好出pros & cons + } + }); + return { score, changes }; +} \ No newline at end of file diff --git a/scr/模糊专家系统/frontend/src/translateTag.js b/scr/模糊专家系统/frontend/src/translateTag.js new file mode 100644 index 0000000..aca4c8a --- /dev/null +++ b/scr/模糊专家系统/frontend/src/translateTag.js @@ -0,0 +1,43 @@ +export default function translateTag(tag, inCons = false) { + let prosDict = { + '!lowPrice': '专业级别一步到位', + 'lowPrice': '价格较低', + '!lightBuild': '手感扎实', + 'lightBuild': '相机轻', + 'scenery': '拍摄风景效果好', + 'travel': '合适旅行时使用', + 'event': '合适记录活动', + 'sports': '拍摄体育比赛效果好', + 'portrait': '拍摄人像效果好', + 'astronomy': '天文摄影效果好', + 'flash': '有闪光灯', + 'video': '可摄像', + 'bluetooth': '可蓝牙传输照片', + 'touchScreen': '有触摸屏', + 'gps': '内置GPS', + 'waterproof': '防水', + 'newModel': '型号新', + 'durableBuild': '机身质量好', + }; + let consDict = { + '!lowPrice': '总体价格低于预算', + 'lowPrice': '价格较高', + '!lightBuild': '相机重量偏轻', + 'lightBuild': '相机较重', + 'scenery': '不适合拍摄风景', + 'travel': '不适合旅行时使用', + 'event': '不适合记录活动', + 'sports': '不适合拍摄体育比赛', + 'portrait': '不适合拍摄人像', + 'astronomy': '不适合天文摄影', + 'flash': '没闪光灯', + 'video': '不能摄像', + 'bluetooth': '没有蓝牙', + 'touchScreen': '没有触摸屏', + 'gps': '没有GPS', + 'waterproof': '不防水', + 'newModel': '型号比较旧', + 'durableBuild': '机身质量一般', + }; + return inCons ? consDict[tag] : prosDict[tag]; +} \ No newline at end of file diff --git a/scr/模糊专家系统/frontend/webpack.config.js b/scr/模糊专家系统/frontend/webpack.config.js new file mode 100644 index 0000000..cc1b2d0 --- /dev/null +++ b/scr/模糊专家系统/frontend/webpack.config.js @@ -0,0 +1,50 @@ +let HtmlWebpackPlugin = require('html-webpack-plugin'); +let path = require('path'); + +module.exports = { + module: { + rules: [ + { + test: /\.less$/, + use: [{ + loader: "style-loader" // creates style nodes from JS strings + }, { + loader: "css-loader" // translates CSS into CommonJS + }, { + loader: "less-loader" // compiles Less to CSS + }], + }, + { + test: /\.jsx?/, + exclude: /(node_modules|bower_components)/, + use: { + loader: 'babel-loader', + options: { + presets: ["es2015", "react"], + plugins: ["transform-object-rest-spread", ["import", { + "libraryName": "antd", + "style": true, // or 'css' + }]], + }, + }, + }, + { + test: /\.css$/, + use: ['style-loader', 'css-loader'], + }, + ], + }, + entry: './src/index.js', + resolve: { + extensions: ['.js', '.jsx'], + }, + output: { + path: path.resolve(__dirname, 'dist'), + filename: 'index.js', + }, + devServer: { + contentBase: path.join(__dirname, "dist"), + port: 9000, + }, + plugins: [new HtmlWebpackPlugin()], +}; \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/.gitignore b/scr/模糊专家系统/fuzzy-expert/.gitignore new file mode 100644 index 0000000..cd49be4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/.gitignore @@ -0,0 +1,3 @@ +.idea +/out +*.class \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/fcl/camera.fcl b/scr/模糊专家系统/fuzzy-expert/fcl/camera.fcl new file mode 100644 index 0000000..8105014 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/fcl/camera.fcl @@ -0,0 +1,304 @@ +FUNCTION_BLOCK camera // Block definition (there may be more than one block per file) + +VAR_INPUT // Define input variables + price : REAL; + pixelDepth : REAL; + pixels : REAL; + maxISO : REAL; + weight : REAL; + autoFocus : REAL; + launchDate : REAL; + frameRate : REAL; + touchScreen : REAL; + video : REAL; + flash : REAL; + waterproof : REAL; + bluetooth : REAL; + gps : REAL; + isMetal : REAL; +END_VAR + +VAR_OUTPUT // Define output variable + travel : REAL; + event : REAL; + sports : REAL; + scenery : REAL; + portrait : REAL; + astronomy : REAL; + newModel : REAL; + durableBuild : REAL; + lightBuild : REAL; + lowPrice : REAL; +END_VAR + +FUZZIFY price + TERM low := (0, 1) (1000, 0) ; + TERM medium := (600, 0) (800,1) (1500,1) (1700,0); + TERM high := (1500, 0) (1700, 1); +END_FUZZIFY + +FUZZIFY pixelDepth + TERM low := (0, 1) (16, 0) ; + TERM medium := (10, 0) (12,1) (20,1) (26,0); + TERM high := (18, 0) (36, 1); +END_FUZZIFY + +FUZZIFY pixels + TERM low := (0, 1) (12000000, 0) ; + TERM medium := (8000000, 0) (15000000,1) (20000000,1) (26000000,0); + TERM high := (20000000, 0) (40000000, 1); +END_FUZZIFY + +FUZZIFY maxISO + TERM low := (0, 1) (6400, 0) ; + TERM medium := (3200, 0) (6400,1) (12800,1) (25600,0); + TERM high := (12800, 0) (51200, 1); +END_FUZZIFY + +FUZZIFY weight + TERM light := (0, 1) (500, 0) ; + TERM medium := (300, 0) (500,1) (700,1) (1000,0); + TERM heavy := (800, 0) (1000, 1); +END_FUZZIFY + +FUZZIFY autoFocus + TERM low := (0, 1) (15, 0) ; + TERM medium := (10, 0) (15,1) (25,1) (30,0); + TERM high := (25, 0) (50, 1); +END_FUZZIFY + +FUZZIFY launchDate + TERM antique := (1000000000000, 1) (1300000000000, 0) ; + TERM earlier := (1200000000000, 0) (1300000000000,1) (1350000000000,1) (1450000000000,0); + TERM recent := (1400000000000, 0) (1500000000000, 1); +END_FUZZIFY + +FUZZIFY frameRate + TERM low := (0, 1) (4, 0) ; + TERM medium := (3, 0) (8,1) (10,1) (12,0); + TERM high := (10, 0) (12, 1); +END_FUZZIFY + +FUZZIFY touchScreen + TERM no := (0, 1) (1, 0) ; + TERM yes := (0, 0) (1, 1) ; +END_FUZZIFY + +FUZZIFY video + TERM no := (0, 1) (1, 0) ; + TERM yes := (0, 0) (1, 1) ; +END_FUZZIFY + +FUZZIFY flash + TERM no := (0, 1) (1, 0) ; + TERM yes := (0, 0) (1, 1) ; +END_FUZZIFY + +FUZZIFY waterproof + TERM no := (0, 1) (1, 0) ; + TERM yes := (0, 0) (1, 1) ; +END_FUZZIFY + +FUZZIFY bluetooth + TERM no := (0, 1) (1, 0) ; + TERM yes := (0, 0) (1, 1) ; +END_FUZZIFY + +FUZZIFY gps + TERM no := (0, 1) (1, 0) ; + TERM yes := (0, 0) (1, 1) ; +END_FUZZIFY + +FUZZIFY isMetal + TERM no := (0, 1) (1, 0) ; + TERM yes := (0, 0) (1, 1) ; +END_FUZZIFY + +DEFUZZIFY travel + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY event + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY sports + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY scenery + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY portrait + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY astronomy + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY newModel + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY durableBuild + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY lightBuild + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +DEFUZZIFY lowPrice + TERM veryBad := (0,1) (0.2,0); + TERM bad := (0,0) (0.1,1) (0.5,0); + TERM average:= (0,0) (0.5,1) (1,0); + TERM good:= (0.5,0) (0.9,1) (1,0); + TERM veryGood:= (0.8,0) (1,1); + METHOD : COG; + DEFAULT := 0.5; +END_DEFUZZIFY + +RULEBLOCK travel + AND : MIN; + RULE 1 : IF weight IS light THEN travel IS good; + RULE 2 : IF video IS yes THEN travel IS good; + RULE 3 : IF gps IS yes THEN travel IS good; + RULE 4 : IF flash IS no THEN travel IS bad; + RULE 5 : IF weight IS heavy THEN travel IS veryBad; +END_RULEBLOCK + +RULEBLOCK event + AND : MIN; + + RULE 1 : IF frameRate IS high THEN event IS good; + RULE 2 : IF gps IS yes THEN event IS good; + RULE 3 : IF bluetooth IS yes THEN event IS good; + RULE 4 : IF flash IS no THEN event IS bad; +END_RULEBLOCK + +RULEBLOCK sports + AND : MIN; + + RULE 1 : IF frameRate IS high THEN sports IS veryGood; + RULE 2 : IF autoFocus IS high THEN sports IS veryGood; + RULE 3 : IF pixels IS high THEN sports IS good; + RULE 4 : IF frameRate IS low THEN sports IS veryBad; + RULE 5 : IF autoFocus IS low THEN sports IS veryBad; +END_RULEBLOCK + +RULEBLOCK scenery + AND : MIN; + + RULE 1 : IF pixels IS high THEN scenery IS veryGood; + RULE 2 : IF pixelDepth IS high THEN scenery IS veryGood; + RULE 3 : IF maxISO IS high THEN scenery IS good; + RULE 4 : IF gps IS yes THEN scenery IS good; + RULE 5 : IF pixelDepth IS low THEN scenery IS bad; +END_RULEBLOCK + +RULEBLOCK portrait + AND : MIN; + + RULE 1 : IF pixels IS high THEN portrait IS good; + RULE 2 : IF pixelDepth IS high THEN portrait IS good; + RULE 3 : IF pixelDepth IS low THEN portrait IS bad; +END_RULEBLOCK + +RULEBLOCK astronomy + AND : MIN; + + RULE 1 : IF pixels IS high THEN astronomy IS good; + RULE 2 : IF pixelDepth IS high THEN astronomy IS good; + RULE 3 : IF maxISO IS high THEN astronomy IS good; + RULE 4 : IF maxISO IS low THEN astronomy IS veryBad; + RULE 5 : IF pixels IS low THEN astronomy IS veryBad; +END_RULEBLOCK + +RULEBLOCK newModel + AND : MIN; + + RULE 1 : IF launchDate IS antique THEN newModel IS bad; + RULE 2 : IF launchDate IS earlier THEN newModel IS average; + RULE 3 : IF launchDate IS recent THEN newModel IS good; +END_RULEBLOCK + +RULEBLOCK durableBuild + AND : MIN; + + RULE 1 : IF isMetal IS no THEN durableBuild IS bad; + RULE 2 : IF isMetal IS yes THEN durableBuild IS good; +END_RULEBLOCK + +RULEBLOCK lightBuild + AND : MIN; + + RULE 1 : IF weight IS heavy THEN lightBuild IS bad; + RULE 1 : IF weight IS medium THEN lightBuild IS average; + RULE 2 : IF weight IS light THEN lightBuild IS good; +END_RULEBLOCK + +RULEBLOCK lowPrice + AND : MIN; + + RULE 1 : IF price IS high THEN lowPrice IS bad; + RULE 1 : IF price IS medium THEN lowPrice IS average; + RULE 2 : IF price IS low THEN lowPrice IS good; +END_RULEBLOCK + +END_FUNCTION_BLOCK diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS-1D X Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS-1D X Mark II.txt new file mode 100644 index 0000000..1c736ac --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS-1D X Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS-1D X Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/_EOS-1D_X_Mark_II/vignette3.png", + "brand": "Canon", + "price": 6000, + "pixelDepth": 20.2, + "pixels": 20170320, + "ISO": [ + 100, + 409600 + ], + "maxISO": 409600, + "launchDate": 1454342400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 16, + "resolution": [ + 5496, + 3670 + ], + "weight": 1340, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1000D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1000D.txt new file mode 100644 index 0000000..976ba88 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1000D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1000D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1000D/vignette3.png", + "brand": "Canon", + "price": 540, + "pixelDepth": 10.1, + "pixels": 10163412, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1213027200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3906, + 2602 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 100D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 100D.txt new file mode 100644 index 0000000..d4a79db --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 100D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 100D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_100D/vignette3.png", + "brand": "Canon", + "price": 650, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1363795200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 5208, + 3476 + ], + "weight": 370, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 10D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 10D.txt new file mode 100644 index 0000000..f62b023 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 10D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 10D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_10D/vignette3.png", + "brand": "Canon", + "price": 347, + "pixelDepth": 6.3, + "pixels": 6518336, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1046275200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3152, + 2068 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1100D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1100D.txt new file mode 100644 index 0000000..0a8d27a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1100D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1100D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1100D/vignette3.png", + "brand": "Canon", + "price": 599, + "pixelDepth": 12.2, + "pixels": 12507648, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1297008000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4352, + 2874 + ], + "weight": 495, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1200D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1200D.txt new file mode 100644 index 0000000..3370cb7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1200D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1200D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1200D/vignette3.png", + "brand": "Canon", + "price": 500, + "pixelDepth": 18, + "pixels": 18024930, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1392134400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 5202, + 3465 + ], + "weight": 435, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark II N.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark II N.txt new file mode 100644 index 0000000..a138429 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark II N.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark II N", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II_N/vignette3.png", + "brand": "Canon", + "price": 5986, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1124640000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8.5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark II.txt new file mode 100644 index 0000000..86fb1f8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 1700, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1075305600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8.5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark III.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark III.txt new file mode 100644 index 0000000..b9883aa --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark III.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark III", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_III/vignette3.png", + "brand": "Canon", + "price": 4050, + "pixelDepth": 10.1, + "pixels": 10446048, + "ISO": [ + 50, + 6400 + ], + "maxISO": 6400, + "launchDate": 1172073600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 3984, + 2622 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark IV.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark IV.txt new file mode 100644 index 0000000..fd404db --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1D Mark IV.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark IV", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_IV/vignette3.png", + "brand": "Canon", + "price": 5840, + "pixelDepth": 16.1, + "pixels": 15980544, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1255968000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4896, + 3264 + ], + "weight": 1180, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds Mark II.txt new file mode 100644 index 0000000..e5518fe --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Ds Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_II/vignette3.png", + "brand": "Canon", + "price": 6950, + "pixelDepth": 16.6, + "pixels": 17101584, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1095696000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 5108, + 3348 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds Mark III.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds Mark III.txt new file mode 100644 index 0000000..491ea42 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds Mark III.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Ds Mark III", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_III/vignette3.png", + "brand": "Canon", + "price": 7100, + "pixelDepth": 21.1, + "pixels": 21557088, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1187539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 5712, + 3774 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds.txt new file mode 100644 index 0000000..ffdc8c2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Ds.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Ds", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds/vignette3.png", + "brand": "Canon", + "price": 2700, + "pixelDepth": 11, + "pixels": 11094876, + "ISO": [ + 100, + 1233 + ], + "maxISO": 1233, + "launchDate": 1032796800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4082, + 2718 + ], + "weight": 1265, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Dx.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Dx.txt new file mode 100644 index 0000000..d53c47a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 1Dx.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Dx", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Dx/vignette3.png", + "brand": "Canon", + "price": 6800, + "pixelDepth": 18.1, + "pixels": 18378666, + "ISO": [ + 50, + 204800 + ], + "maxISO": 204800, + "launchDate": 1318867200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5202, + 3533 + ], + "weight": 500, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 200D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 200D.txt new file mode 100644 index 0000000..2bfa713 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 200D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 200D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_200D/vignette3.png", + "brand": "Canon", + "price": 550, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1498665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6288, + 4056 + ], + "weight": 453, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 20D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 20D.txt new file mode 100644 index 0000000..880240c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 20D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 20D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_20D/vignette3.png", + "brand": "Canon", + "price": 700, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1092844800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 300D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 300D.txt new file mode 100644 index 0000000..3bce211 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 300D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 300D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_300D/vignette3.png", + "brand": "Canon", + "price": 324, + "pixelDepth": 6.3, + "pixels": 6518336, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1061308800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3152, + 2068 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 30D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 30D.txt new file mode 100644 index 0000000..ac27acd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 30D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 30D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_30D/vignette3.png", + "brand": "Canon", + "price": 738, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1140451200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 350D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 350D.txt new file mode 100644 index 0000000..ffcd4d1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 350D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 350D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_350D/vignette3.png", + "brand": "Canon", + "price": 560, + "pixelDepth": 8, + "pixels": 8185248, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1108569600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.8, + "resolution": [ + 3516, + 2328 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 400D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 400D.txt new file mode 100644 index 0000000..c0666da --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 400D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 400D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_400D/vignette3.png", + "brand": "Canon", + "price": 520, + "pixelDepth": 10.1, + "pixels": 10351656, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1156348800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3948, + 2622 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 40D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 40D.txt new file mode 100644 index 0000000..3e6c4d0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 40D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 40D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_40D/vignette3.png", + "brand": "Canon", + "price": 899, + "pixelDepth": 10.1, + "pixels": 10341168, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1187539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6.5, + "resolution": [ + 3944, + 2622 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 450D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 450D.txt new file mode 100644 index 0000000..75e6bc7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 450D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 450D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_450D/vignette3.png", + "brand": "Canon", + "price": 570, + "pixelDepth": 12.2, + "pixels": 12401312, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1201104000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 4312, + 2876 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 500D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 500D.txt new file mode 100644 index 0000000..6fe215f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 500D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 500D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_500D/vignette3.png", + "brand": "Canon", + "price": 1040, + "pixelDepth": 15.1, + "pixels": 15039810, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1237910400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.4, + "resolution": [ + 4770, + 3153 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 50D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 50D.txt new file mode 100644 index 0000000..f47d6fd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 50D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 50D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_50D/vignette3.png", + "brand": "Canon", + "price": 1300, + "pixelDepth": 15.1, + "pixels": 15154290, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1219680000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4770, + 3177 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 550D pre production.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 550D pre production.txt new file mode 100644 index 0000000..ee6ebdd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 550D pre production.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 550D pre production", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D_pre_production/vignette3.png", + "brand": "Canon", + "price": 900, + "pixelDepth": 18, + "pixels": 18789504, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1265558400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.7, + "resolution": [ + 5344, + 3516 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 550D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 550D.txt new file mode 100644 index 0000000..1545484 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 550D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 550D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D/vignette3.png", + "brand": "Canon", + "price": 1000, + "pixelDepth": 18, + "pixels": 17915904, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1267113600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.7, + "resolution": [ + 5184, + 3456 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark II.txt new file mode 100644 index 0000000..8524103 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 2199, + "pixelDepth": 21, + "pixels": 21144402, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1221580800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.9, + "resolution": [ + 5634, + 3753 + ], + "weight": 810, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark III.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark III.txt new file mode 100644 index 0000000..a9d4539 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark III.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D Mark III", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_III/vignette3.png", + "brand": "Canon", + "price": 3499, + "pixelDepth": 22.3, + "pixels": 23384000, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1330617600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 5920, + 3950 + ], + "weight": 910, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark IV.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark IV.txt new file mode 100644 index 0000000..bc30570 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D Mark IV.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D Mark IV", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_IV/vignette3.png", + "brand": "Canon", + "price": 3500, + "pixelDepth": 30.4, + "pixels": 31262720, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1472054400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 6880, + 4544 + ], + "weight": 800, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D.txt new file mode 100644 index 0000000..1c0c8f8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D/vignette3.png", + "brand": "Canon", + "price": 2000, + "pixelDepth": 12.7, + "pixels": 13222104, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1124640000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4476, + 2954 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5DS R.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5DS R.txt new file mode 100644 index 0000000..483d104 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5DS R.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5DS R", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS_R/vignette3.png", + "brand": "Canon", + "price": 3900, + "pixelDepth": 50.6, + "pixels": 51158016, + "ISO": [ + 50, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8736, + 5856 + ], + "weight": 845, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5DS.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5DS.txt new file mode 100644 index 0000000..1607025 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 5DS.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5DS", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS/vignette3.png", + "brand": "Canon", + "price": 3700, + "pixelDepth": 50.6, + "pixels": 51158016, + "ISO": [ + 50, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8736, + 5856 + ], + "weight": 845, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 600D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 600D.txt new file mode 100644 index 0000000..1bc2e15 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 600D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 600D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_600D/vignette3.png", + "brand": "Canon", + "price": 850, + "pixelDepth": 18, + "pixels": 18789504, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1297008000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.7, + "resolution": [ + 5344, + 3516 + ], + "weight": 515, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 60D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 60D.txt new file mode 100644 index 0000000..99f74b1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 60D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 60D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_60D/vignette3.png", + "brand": "Canon", + "price": 1199, + "pixelDepth": 18, + "pixels": 17992016, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282752000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.3, + "resolution": [ + 5194, + 3464 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 650D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 650D.txt new file mode 100644 index 0000000..86b6f8d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 650D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 650D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_650D/vignette3.png", + "brand": "Canon", + "price": 899, + "pixelDepth": 18, + "pixels": 18627840, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1339084800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 5280, + 3528 + ], + "weight": 575, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 6D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 6D Mark II.txt new file mode 100644 index 0000000..7f07fac --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 6D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 6D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 2000, + "pixelDepth": 26.2, + "pixels": 26966016, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1498665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": true, + "frameRate": 6.5, + "resolution": [ + 6384, + 4224 + ], + "weight": 685, + "autoFocus": 45 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 6D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 6D.txt new file mode 100644 index 0000000..4e32134 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 6D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 6D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D/vignette3.png", + "brand": "Canon", + "price": 2099, + "pixelDepth": 20.2, + "pixels": 20646144, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4.5, + "resolution": [ + 5568, + 3708 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 700D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 700D.txt new file mode 100644 index 0000000..e67821f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 700D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 700D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_700D/vignette3.png", + "brand": "Canon", + "price": 750, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1363795200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 5208, + 3476 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 70D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 70D.txt new file mode 100644 index 0000000..c52a45c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 70D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 70D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_70D/vignette3.png", + "brand": "Canon", + "price": 1199, + "pixelDepth": 20.2, + "pixels": 20170320, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1372694400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 5496, + 3670 + ], + "weight": 500, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 750D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 750D.txt new file mode 100644 index 0000000..3c5f5b6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 750D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 750D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_750D/vignette3.png", + "brand": "Canon", + "price": 750, + "pixelDepth": 24.2, + "pixels": 24228528, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4022 + ], + "weight": 510, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 760D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 760D.txt new file mode 100644 index 0000000..4429c5e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 760D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 760D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_760D/vignette3.png", + "brand": "Canon", + "price": 850, + "pixelDepth": 24.2, + "pixels": 24228528, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4022 + ], + "weight": 510, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 7D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 7D Mark II.txt new file mode 100644 index 0000000..309a2da --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 7D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 7D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 1800, + "pixelDepth": 20.2, + "pixels": 20170320, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1410710400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3670 + ], + "weight": 500, + "autoFocus": 65 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 7D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 7D.txt new file mode 100644 index 0000000..47e4168 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 7D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 7D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D/vignette3.png", + "brand": "Canon", + "price": 1974, + "pixelDepth": 18, + "pixels": 18840400, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1251734400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5360, + 3515 + ], + "weight": 820, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 80D.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 80D.txt new file mode 100644 index 0000000..fb72216 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS 80D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 80D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_80D/vignette3.png", + "brand": "Canon", + "price": 1200, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1455724800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 6288, + 4056 + ], + "weight": 650, + "autoFocus": 45 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M.txt new file mode 100644 index 0000000..165e42b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M/vignette3.png", + "brand": "Canon", + "price": 799, + "pixelDepth": 18, + "pixels": 18627840, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1342972800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.3, + "resolution": [ + 5280, + 3528 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M10.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M10.txt new file mode 100644 index 0000000..6549ff1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M10.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M10", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M10/vignette3.png", + "brand": "Canon", + "price": 600, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1444665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.6, + "resolution": [ + 5208, + 3476 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M100.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M100.txt new file mode 100644 index 0000000..8c31f38 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M100.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M100", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M100/vignette3.png", + "brand": "Canon", + "price": 600, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1503936000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 6.1, + "resolution": [ + 6288, + 4056 + ], + "weight": 266, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M2.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M2.txt new file mode 100644 index 0000000..8f96799 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M2.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M2", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M2/vignette3.png", + "brand": "Canon", + "price": 650, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1386000000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.6, + "resolution": [ + 5208, + 3476 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M3.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M3.txt new file mode 100644 index 0000000..d4e0b3d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M3.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M3", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M3/vignette3.png", + "brand": "Canon", + "price": 870, + "pixelDepth": 24.2, + "pixels": 24228528, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1423152000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.2, + "resolution": [ + 6024, + 4022 + ], + "weight": 320.5, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M5.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M5.txt new file mode 100644 index 0000000..3232b41 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M5.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M5", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M5/vignette3.png", + "brand": "Canon", + "price": 980, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1473868800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 6288, + 4056 + ], + "weight": 380, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M6.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M6.txt new file mode 100644 index 0000000..8cbf727 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon EOS M6.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M6", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M6/vignette3.png", + "brand": "Canon", + "price": 780, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1487088000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 6288, + 4056 + ], + "weight": 343, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G1 X Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G1 X Mark II.txt new file mode 100644 index 0000000..607bd08 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G1 X Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G1 X Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1_X_Mark_II/vignette3.png", + "brand": "Canon", + "price": 800, + "pixelDepth": 13.1, + "pixels": 14740832, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1392134400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.2, + "resolution": [ + 4432, + 3326 + ], + "weight": 516, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G12.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G12.txt new file mode 100644 index 0000000..ce306e3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G12.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G12", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G12/vignette3.png", + "brand": "Canon", + "price": 499, + "pixelDepth": 10, + "pixels": 9980928, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1284393600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3648, + 2736 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G16.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G16.txt new file mode 100644 index 0000000..c75c871 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G16.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G16", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G16/vignette3.png", + "brand": "Canon", + "price": 549, + "pixelDepth": 12.1, + "pixels": 12835904, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1377100800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12.2, + "resolution": [ + 4192, + 3062 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G1X.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G1X.txt new file mode 100644 index 0000000..76d0a73 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G1X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G1X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1X/vignette3.png", + "brand": "Canon", + "price": 799, + "pixelDepth": 14.3, + "pixels": 15133536, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1326038400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.5, + "resolution": [ + 4496, + 3366 + ], + "weight": 492, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G3 X.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G3 X.txt new file mode 100644 index 0000000..38ac6e5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G3 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G3 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G3_X/vignette3.png", + "brand": "Canon", + "price": 1000, + "pixelDepth": 20.2, + "pixels": 20444448, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1434556800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.9, + "resolution": [ + 5536, + 3693 + ], + "weight": 690, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G5 X.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G5 X.txt new file mode 100644 index 0000000..cfb3dfd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G5 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G5 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G5_X/vignette3.png", + "brand": "Canon", + "price": 800, + "pixelDepth": 20, + "pixels": 20444448, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1444665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.9, + "resolution": [ + 5536, + 3693 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G7 X.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G7 X.txt new file mode 100644 index 0000000..a9f8c47 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G7 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G7 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G7_X/vignette3.png", + "brand": "Canon", + "price": 700, + "pixelDepth": 20.2, + "pixels": 20894720, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1410710400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6.5, + "resolution": [ + 5632, + 3710 + ], + "weight": 279, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G9 X Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G9 X Mark II.txt new file mode 100644 index 0000000..dbb0cf0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G9 X Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G9 X Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X_Mark_II/vignette3.png", + "brand": "Canon", + "price": 530, + "pixelDepth": 20.1, + "pixels": 20444448, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1483459200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 8.2, + "resolution": [ + 5536, + 3693 + ], + "weight": 182, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G9 X.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G9 X.txt new file mode 100644 index 0000000..239d80f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot G9 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G9 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X/vignette3.png", + "brand": "Canon", + "price": 500, + "pixelDepth": 20.2, + "pixels": 20444448, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1444752000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 5536, + 3693 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S100.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S100.txt new file mode 100644 index 0000000..8048302 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S100.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S100", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S100/vignette3.png", + "brand": "Canon", + "price": 429, + "pixelDepth": 12.1, + "pixels": 12995840, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1316016000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4160, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S120.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S120.txt new file mode 100644 index 0000000..7f6f08d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S120.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S120", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S120/vignette3.png", + "brand": "Canon", + "price": 449, + "pixelDepth": 12.1, + "pixels": 12835904, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1377100800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.6, + "resolution": [ + 4192, + 3062 + ], + "weight": 193, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S90.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S90.txt new file mode 100644 index 0000000..21a39c1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S90.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S90", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S90/vignette3.png", + "brand": "Canon", + "price": 420, + "pixelDepth": 10, + "pixels": 10423296, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1250611200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.9, + "resolution": [ + 3744, + 2784 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S95.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S95.txt new file mode 100644 index 0000000..05080e4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot S95.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S95", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S95/vignette3.png", + "brand": "Canon", + "price": 400, + "pixelDepth": 10, + "pixels": 10423296, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1282147200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.98, + "resolution": [ + 3744, + 2784 + ], + "weight": 170, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot SX50 HS.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot SX50 HS.txt new file mode 100644 index 0000000..9261c60 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot SX50 HS.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot SX50 HS", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX50_HS/vignette3.png", + "brand": "Canon", + "price": 480, + "pixelDepth": 12.1, + "pixels": 12786912, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4176, + 3062 + ], + "weight": 551, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot SX60 HS.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot SX60 HS.txt new file mode 100644 index 0000000..a947d75 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon PowerShot SX60 HS.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot SX60 HS", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX60_HS/vignette3.png", + "brand": "Canon", + "price": 550, + "pixelDepth": 16.1, + "pixels": 16764288, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1410710400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6.4, + "resolution": [ + 4768, + 3516 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G10.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G10.txt new file mode 100644 index 0000000..66a4e2b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G10.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G10", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G10/vignette3.png", + "brand": "Canon", + "price": 467, + "pixelDepth": 14, + "pixels": 14999040, + "ISO": [ + 80, + 1600 + ], + "maxISO": 1600, + "launchDate": 1221580800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.3, + "resolution": [ + 4480, + 3348 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G11.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G11.txt new file mode 100644 index 0000000..c990c31 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G11.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G11", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G11/vignette3.png", + "brand": "Canon", + "price": 523, + "pixelDepth": 10, + "pixels": 10423296, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1250611200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.1, + "resolution": [ + 3744, + 2784 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G15.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G15.txt new file mode 100644 index 0000000..c17a017 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G15.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G15", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G15/vignette3.png", + "brand": "Canon", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12338304, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4048, + 3048 + ], + "weight": 310, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G9.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G9.txt new file mode 100644 index 0000000..107fd28 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot G9.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G9", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G9/vignette3.png", + "brand": "Canon", + "price": 606, + "pixelDepth": 12.1, + "pixels": 12192768, + "ISO": [ + 80, + 1600 + ], + "maxISO": 1600, + "launchDate": 1187539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.5, + "resolution": [ + 4032, + 3024 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot S110.txt b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot S110.txt new file mode 100644 index 0000000..c0d1bd4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Canon Powershot S110.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot S110", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_S110/vignette3.png", + "brand": "Canon", + "price": 499, + "pixelDepth": 12.1, + "pixels": 12338304, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4048, + 3048 + ], + "weight": 198, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/DJI Phantom 4.txt b/scr/模糊专家系统/fuzzy-expert/input/DJI Phantom 4.txt new file mode 100644 index 0000000..e581ebe --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/DJI Phantom 4.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Phantom 4", + "image": "//cdn.dxomark.com/dakdata/xml/Phantom_4/vignette3.png", + "brand": "DJI", + "price": 1200, + "pixelDepth": 12.4, + "pixels": 12000000, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1457971200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/DJI Phantom4 Pro.txt b/scr/模糊专家系统/fuzzy-expert/input/DJI Phantom4 Pro.txt new file mode 100644 index 0000000..eb5a0d2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/DJI Phantom4 Pro.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Phantom4 Pro", + "image": "//cdn.dxomark.com/dakdata/xml/Phantom4_Pro/vignette3.png", + "brand": "DJI", + "price": 1500, + "pixelDepth": 20, + "pixels": 19961856, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1479139200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5472, + 3648 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X4S.txt b/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X4S.txt new file mode 100644 index 0000000..b218572 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X4S.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Zenmuse X4S", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X4S/vignette3.png", + "brand": "DJI", + "price": 599, + "pixelDepth": 20, + "pixels": 19961856, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1479139200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 5472, + 3648 + ], + "weight": 253, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X5S.txt b/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X5S.txt new file mode 100644 index 0000000..fa533c0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X5S.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Zenmuse X5S", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X5S/vignette3.png", + "brand": "DJI", + "price": 1400, + "pixelDepth": 20.8, + "pixels": 20887680, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1479139200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 5280, + 3956 + ], + "weight": 461, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X7.txt b/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X7.txt new file mode 100644 index 0000000..b878c42 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/DJI Zenmuse X7.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Zenmuse X7", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X7/vignette3.png", + "brand": "DJI", + "price": 2700, + "pixelDepth": 24, + "pixels": 24112128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1507651200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 6016, + 4008 + ], + "weight": 449, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F550EXR.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F550EXR.txt new file mode 100644 index 0000000..6bb9229 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F550EXR.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix F550EXR", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F550EXR/vignette3.png", + "brand": "Fujifilm", + "price": 450, + "pixelDepth": 16, + "pixels": 16076305, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1294156800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4613, + 3485 + ], + "weight": 195, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F600EXR.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F600EXR.txt new file mode 100644 index 0000000..b565f5b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F600EXR.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix F600EXR", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F600EXR/vignette3.png", + "brand": "Fujifilm", + "price": 500, + "pixelDepth": 16, + "pixels": 8037568, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1312992000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 3262, + 2464 + ], + "weight": 500, + "autoFocus": 256 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F800EXR.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F800EXR.txt new file mode 100644 index 0000000..d19e0cc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix F800EXR.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix F800EXR", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F800EXR/vignette3.png", + "brand": "Fujifilm", + "price": 349, + "pixelDepth": 16, + "pixels": 16076305, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1343145600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4613, + 3485 + ], + "weight": 208, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S100fs.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S100fs.txt new file mode 100644 index 0000000..ee9f24c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S100fs.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix S100fs", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S100fs/vignette3.png", + "brand": "Fujifilm", + "price": 713, + "pixelDepth": 11.1, + "pixels": 11059200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201104000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3840, + 2880 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S3 Pro.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S3 Pro.txt new file mode 100644 index 0000000..7b7e723 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S3 Pro.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix S3 Pro", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S3_Pro/vignette3.png", + "brand": "Fujifilm", + "price": 1190, + "pixelDepth": 6.1, + "pixels": 6096384, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1075910400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3024, + 2016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S5 Pro.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S5 Pro.txt new file mode 100644 index 0000000..ba2c8f2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix S5 Pro.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix S5 Pro", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S5_Pro/vignette3.png", + "brand": "Fujifilm", + "price": 1200, + "pixelDepth": 6.1, + "pixels": 6096384, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1159113600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3024, + 2016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X S1.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X S1.txt new file mode 100644 index 0000000..ea60adc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X S1.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix X S1", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X_S1/vignette3.png", + "brand": "Fujifilm", + "price": 699, + "pixelDepth": 12, + "pixels": 12000000, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1322064000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 4000, + 3000 + ], + "weight": 880, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X10.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X10.txt new file mode 100644 index 0000000..0eb806e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X10.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix X10", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X10/vignette3.png", + "brand": "Fujifilm", + "price": 600, + "pixelDepth": 12, + "pixels": 12212896, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1314806400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4028, + 3032 + ], + "weight": 330, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X100.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X100.txt new file mode 100644 index 0000000..18bf3a8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm FinePix X100.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix X100", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X100/vignette3.png", + "brand": "Fujifilm", + "price": 999, + "pixelDepth": 12.3, + "pixels": 12369700, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1284825600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4310, + 2870 + ], + "weight": 405, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Fujifilm XF1.txt b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm XF1.txt new file mode 100644 index 0000000..1800546 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Fujifilm XF1.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm XF1", + "image": "//cdn.dxomark.com/dakdata/xml/XF1/vignette3.png", + "brand": "Fujifilm", + "price": 499, + "pixelDepth": 12, + "pixels": 12000000, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/GoPro HERO5 Black.txt b/scr/模糊专家系统/fuzzy-expert/input/GoPro HERO5 Black.txt new file mode 100644 index 0000000..1b527f5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/GoPro HERO5 Black.txt @@ -0,0 +1,28 @@ +{ + "name": "GoPro HERO5 Black", + "image": "//cdn.dxomark.com/dakdata/xml/HERO5_Black/vignette3.png", + "brand": "GoPro", + "price": 400, + "pixelDepth": 12, + "pixels": 12000000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 30, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Hasselblad H3DII 39.txt b/scr/模糊专家系统/fuzzy-expert/input/Hasselblad H3DII 39.txt new file mode 100644 index 0000000..e7632d7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Hasselblad H3DII 39.txt @@ -0,0 +1,28 @@ +{ + "name": "Hasselblad H3DII 39", + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_39/vignette3.png", + "brand": "Hasselblad", + "price": 22000, + "pixelDepth": 39, + "pixels": 39458112, + "ISO": [ + 50, + 400 + ], + "maxISO": 400, + "launchDate": 1196006400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.7, + "resolution": [ + 7248, + 5444 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Hasselblad H3DII 50.txt b/scr/模糊专家系统/fuzzy-expert/input/Hasselblad H3DII 50.txt new file mode 100644 index 0000000..6ee75c5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Hasselblad H3DII 50.txt @@ -0,0 +1,28 @@ +{ + "name": "Hasselblad H3DII 50", + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_50/vignette3.png", + "brand": "Hasselblad", + "price": 20000, + "pixelDepth": 50, + "pixels": 51679680, + "ISO": [ + 50, + 400 + ], + "maxISO": 400, + "launchDate": 1196006400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.9, + "resolution": [ + 8282, + 6240 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Hasselblad X1D-50c.txt b/scr/模糊专家系统/fuzzy-expert/input/Hasselblad X1D-50c.txt new file mode 100644 index 0000000..5c8a7d9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Hasselblad X1D-50c.txt @@ -0,0 +1,28 @@ +{ + "name": "Hasselblad X1D-50c", + "image": "//cdn.dxomark.com/dakdata/xml/X1D-50c/vignette3.png", + "brand": "Hasselblad", + "price": 8995, + "pixelDepth": 50, + "pixels": 51402240, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1466524800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 2.3, + "resolution": [ + 8280, + 6208 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Konica Minolta DYNAX 5D.txt b/scr/模糊专家系统/fuzzy-expert/input/Konica Minolta DYNAX 5D.txt new file mode 100644 index 0000000..349065e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Konica Minolta DYNAX 5D.txt @@ -0,0 +1,28 @@ +{ + "name": "Konica Minolta DYNAX 5D", + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_5D/vignette3.png", + "brand": "Konica Minolta", + "price": 500, + "pixelDepth": 6, + "pixels": 6056128, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1121356800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3016, + 2008 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Konica Minolta DYNAX 7D.txt b/scr/模糊专家系统/fuzzy-expert/input/Konica Minolta DYNAX 7D.txt new file mode 100644 index 0000000..62427d5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Konica Minolta DYNAX 7D.txt @@ -0,0 +1,28 @@ +{ + "name": "Konica Minolta DYNAX 7D", + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_7D/vignette3.png", + "brand": "Konica Minolta", + "price": 569, + "pixelDepth": 6, + "pixels": 6056128, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1095177600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3016, + 2008 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leaf Aptus75S.txt b/scr/模糊专家系统/fuzzy-expert/input/Leaf Aptus75S.txt new file mode 100644 index 0000000..2fbbd96 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leaf Aptus75S.txt @@ -0,0 +1,28 @@ +{ + "name": "Leaf Aptus75S", + "image": "//cdn.dxomark.com/dakdata/xml/Aptus75S/vignette3.png", + "brand": "Leaf", + "price": 32995, + "pixelDepth": 33, + "pixels": 33276672, + "ISO": [ + 50, + 800 + ], + "maxISO": 800, + "launchDate": 1159200000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.83, + "resolution": [ + 6666, + 4992 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica C.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica C.txt new file mode 100644 index 0000000..d113250 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica C.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica C", + "image": "//cdn.dxomark.com/dakdata/xml/C/vignette3.png", + "brand": "Leica", + "price": 795, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1378742400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica M Typ 240.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica M Typ 240.txt new file mode 100644 index 0000000..6936b0d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica M Typ 240.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M Typ 240", + "image": "//cdn.dxomark.com/dakdata/xml/M_Typ_240/vignette3.png", + "brand": "Leica", + "price": 6950, + "pixelDepth": 24, + "pixels": 23936000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 5984, + 4000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica M-E Typ 220.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica M-E Typ 220.txt new file mode 100644 index 0000000..ffa2506 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica M-E Typ 220.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M-E Typ 220", + "image": "//cdn.dxomark.com/dakdata/xml/M-E_Typ_220/vignette3.png", + "brand": "Leica", + "price": 5450, + "pixelDepth": 18, + "pixels": 18109952, + "ISO": [ + 80, + 2500 + ], + "maxISO": 2500, + "launchDate": 1347811200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 2, + "resolution": [ + 5216, + 3472 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica M10.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica M10.txt new file mode 100644 index 0000000..15d446e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica M10.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M10", + "image": "//cdn.dxomark.com/dakdata/xml/M10/vignette3.png", + "brand": "Leica", + "price": 6895, + "pixelDepth": 24, + "pixels": 23888128, + "ISO": [ + 100, + 50000 + ], + "maxISO": 50000, + "launchDate": 1484668800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 5984, + 3992 + ], + "weight": 590, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica M8.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica M8.txt new file mode 100644 index 0000000..885ed29 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica M8.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M8", + "image": "//cdn.dxomark.com/dakdata/xml/M8/vignette3.png", + "brand": "Leica", + "price": 5495, + "pixelDepth": 10.3, + "pixels": 10340960, + "ISO": [ + 160, + 2500 + ], + "maxISO": 2500, + "launchDate": 1158163200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3920, + 2638 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica M9 P.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica M9 P.txt new file mode 100644 index 0000000..2cccea6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica M9 P.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M9 P", + "image": "//cdn.dxomark.com/dakdata/xml/M9_P/vignette3.png", + "brand": "Leica", + "price": 6950, + "pixelDepth": 18, + "pixels": 18109952, + "ISO": [ + 80, + 2500 + ], + "maxISO": 2500, + "launchDate": 1295539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 2, + "resolution": [ + 5216, + 3472 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica M9.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica M9.txt new file mode 100644 index 0000000..f31a6f0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica M9.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M9", + "image": "//cdn.dxomark.com/dakdata/xml/M9/vignette3.png", + "brand": "Leica", + "price": 5500, + "pixelDepth": 18, + "pixels": 18109952, + "ISO": [ + 80, + 2500 + ], + "maxISO": 2500, + "launchDate": 1252425600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 5216, + 3472 + ], + "weight": 545, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica Q Typ 116.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica Q Typ 116.txt new file mode 100644 index 0000000..1b6052d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica Q Typ 116.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica Q Typ 116", + "image": "//cdn.dxomark.com/dakdata/xml/Q_Typ_116/vignette3.png", + "brand": "Leica", + "price": 4250, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 50000 + ], + "maxISO": 50000, + "launchDate": 1433865600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 6016, + 4016 + ], + "weight": 590, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica S.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica S.txt new file mode 100644 index 0000000..3bae339 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica S.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica S", + "image": "//cdn.dxomark.com/dakdata/xml/S/vignette3.png", + "brand": "Leica", + "price": 21950, + "pixelDepth": 37.5, + "pixels": 37600000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1347811200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 1.5, + "resolution": [ + 7520, + 5000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica SL (Typ 601).txt b/scr/模糊专家系统/fuzzy-expert/input/Leica SL (Typ 601).txt new file mode 100644 index 0000000..f54d2e9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica SL (Typ 601).txt @@ -0,0 +1,28 @@ +{ + "name": "Leica SL (Typ 601)", + "image": "//cdn.dxomark.com/dakdata/xml/SL_(Typ_601)/vignette3.png", + "brand": "Leica", + "price": 7450, + "pixelDepth": 24, + "pixels": 24160256, + "ISO": [ + 50, + 50000 + ], + "maxISO": 50000, + "launchDate": 1445270400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica T.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica T.txt new file mode 100644 index 0000000..eb92171 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica T.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica T", + "image": "//cdn.dxomark.com/dakdata/xml/T/vignette3.png", + "brand": "Leica", + "price": 1850, + "pixelDepth": 16, + "pixels": 16206432, + "ISO": [ + 100, + 12500 + ], + "maxISO": 12500, + "launchDate": 1398268800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4944, + 3278 + ], + "weight": 339, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Leica X Vario.txt b/scr/模糊专家系统/fuzzy-expert/input/Leica X Vario.txt new file mode 100644 index 0000000..f2d2ea5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Leica X Vario.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica X Vario", + "image": "//cdn.dxomark.com/dakdata/xml/X_Vario/vignette3.png", + "brand": "Leica", + "price": 2850, + "pixelDepth": 16.2, + "pixels": 16186656, + "ISO": [ + 100, + 12500 + ], + "maxISO": 12500, + "launchDate": 1370880000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4944, + 3274 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Mamiya ZD Back.txt b/scr/模糊专家系统/fuzzy-expert/input/Mamiya ZD Back.txt new file mode 100644 index 0000000..7d716b3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Mamiya ZD Back.txt @@ -0,0 +1,28 @@ +{ + "name": "Mamiya ZD Back", + "image": "//cdn.dxomark.com/dakdata/xml/ZD_Back/vignette3.png", + "brand": "Mamiya", + "price": 6999, + "pixelDepth": 21.5, + "pixels": 21461504, + "ISO": [ + 50, + 400 + ], + "maxISO": 400, + "launchDate": 1220198400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 5344, + 4016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 AW1.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 AW1.txt new file mode 100644 index 0000000..a8335f1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 AW1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 AW1", + "image": "//cdn.dxomark.com/dakdata/xml/1_AW1/vignette3.png", + "brand": "Nikon", + "price": 800, + "pixelDepth": 14.2, + "pixels": 14238840, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1379520000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4620, + 3082 + ], + "weight": 313, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J1.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J1.txt new file mode 100644 index 0000000..4b13cc5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J1", + "image": "//cdn.dxomark.com/dakdata/xml/1_J1/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 10.1, + "pixels": 10173824, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1316534400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 13, + "resolution": [ + 3904, + 2606 + ], + "weight": 234, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J2.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J2.txt new file mode 100644 index 0000000..e72f718 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J2.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J2", + "image": "//cdn.dxomark.com/dakdata/xml/1_J2/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 10.1, + "pixels": 10166016, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1344441600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3904, + 2604 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J3.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J3.txt new file mode 100644 index 0000000..65c350b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J3.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J3", + "image": "//cdn.dxomark.com/dakdata/xml/1_J3/vignette3.png", + "brand": "Nikon", + "price": 600, + "pixelDepth": 14.2, + "pixels": 14238840, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1357574400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 4620, + 3082 + ], + "weight": 500, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J4.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J4.txt new file mode 100644 index 0000000..ea0235a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J4.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J4", + "image": "//cdn.dxomark.com/dakdata/xml/1_J4/vignette3.png", + "brand": "Nikon", + "price": 599, + "pixelDepth": 18.4, + "pixels": 18378496, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1397059200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 5248, + 3502 + ], + "weight": 500, + "autoFocus": 171 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J5.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J5.txt new file mode 100644 index 0000000..3c5fe7c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 J5.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J5", + "image": "//cdn.dxomark.com/dakdata/xml/1_J5/vignette3.png", + "brand": "Nikon", + "price": 500, + "pixelDepth": 20.8, + "pixels": 20794816, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1427904000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 5584, + 3724 + ], + "weight": 500, + "autoFocus": 171 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 S1.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 S1.txt new file mode 100644 index 0000000..4accf53 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 S1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 S1", + "image": "//cdn.dxomark.com/dakdata/xml/1_S1/vignette3.png", + "brand": "Nikon", + "price": 499, + "pixelDepth": 10.1, + "pixels": 10272696, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1357574400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 3948, + 2602 + ], + "weight": 500, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V1.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V1.txt new file mode 100644 index 0000000..0e56b74 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 V1", + "image": "//cdn.dxomark.com/dakdata/xml/1_V1/vignette3.png", + "brand": "Nikon", + "price": 1000, + "pixelDepth": 10.1, + "pixels": 10173824, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1316534400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 34, + "resolution": [ + 3904, + 2606 + ], + "weight": 293, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V2.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V2.txt new file mode 100644 index 0000000..b15064c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V2.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 V2", + "image": "//cdn.dxomark.com/dakdata/xml/1_V2/vignette3.png", + "brand": "Nikon", + "price": 899, + "pixelDepth": 14.2, + "pixels": 14238840, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1351008000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 15, + "resolution": [ + 4620, + 3082 + ], + "weight": 278, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V3.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V3.txt new file mode 100644 index 0000000..93608a2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon 1 V3.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 V3", + "image": "//cdn.dxomark.com/dakdata/xml/1_V3/vignette3.png", + "brand": "Nikon", + "price": 999, + "pixelDepth": 18.4, + "pixels": 18378496, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1394640000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 30, + "resolution": [ + 5248, + 3502 + ], + "weight": 324, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix A.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix A.txt new file mode 100644 index 0000000..2eea828 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix A.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix A", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_A/vignette3.png", + "brand": "Nikon", + "price": 1100, + "pixelDepth": 16.2, + "pixels": 16373760, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1362326400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4992, + 3280 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P330.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P330.txt new file mode 100644 index 0000000..f2838b7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P330.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P330", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P330/vignette3.png", + "brand": "Nikon", + "price": 380, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1362326400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4032, + 3024 + ], + "weight": 200, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P340.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P340.txt new file mode 100644 index 0000000..0755f09 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P340.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P340", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P340/vignette3.png", + "brand": "Nikon", + "price": 380, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1391616000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4032, + 3024 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P6000.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P6000.txt new file mode 100644 index 0000000..47d80a8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P6000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P6000", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P6000/vignette3.png", + "brand": "Nikon", + "price": 439, + "pixelDepth": 13.5, + "pixels": 13457760, + "ISO": [ + 64, + 6400 + ], + "maxISO": 6400, + "launchDate": 1218038400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4240, + 3174 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7000.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7000.txt new file mode 100644 index 0000000..04becc7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7000", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7000/vignette3.png", + "brand": "Nikon", + "price": 500, + "pixelDepth": 10.1, + "pixels": 10046688, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1283875200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.3, + "resolution": [ + 3664, + 2742 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7100.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7100.txt new file mode 100644 index 0000000..311fd8b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7100", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7100/vignette3.png", + "brand": "Nikon", + "price": 715, + "pixelDepth": 10.1, + "pixels": 10054016, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.3, + "resolution": [ + 3664, + 2744 + ], + "weight": 395, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7700.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7700.txt new file mode 100644 index 0000000..fc406a2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7700.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7700", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7700/vignette3.png", + "brand": "Nikon", + "price": 499, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1345564800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 4032, + 3024 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7800.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7800.txt new file mode 100644 index 0000000..dd737fe --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Coolpix P7800.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7800", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7800/vignette3.png", + "brand": "Nikon", + "price": 550, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1378310400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4032, + 3024 + ], + "weight": 300, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D200.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D200.txt new file mode 100644 index 0000000..b04676f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D200", + "image": "//cdn.dxomark.com/dakdata/xml/D200/vignette3.png", + "brand": "Nikon", + "price": 1000, + "pixelDepth": 10, + "pixels": 10212864, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1130774400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3904, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D2H.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D2H.txt new file mode 100644 index 0000000..a74219a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D2H.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D2H", + "image": "//cdn.dxomark.com/dakdata/xml/D2H/vignette3.png", + "brand": "Nikon", + "price": 900, + "pixelDepth": 4, + "pixels": 4113408, + "ISO": [ + 200, + 6400 + ], + "maxISO": 6400, + "launchDate": 1058803200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 2496, + 1648 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D2X.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D2X.txt new file mode 100644 index 0000000..dca261c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D2X.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D2X", + "image": "//cdn.dxomark.com/dakdata/xml/D2X/vignette3.png", + "brand": "Nikon", + "price": 2000, + "pixelDepth": 12.2, + "pixels": 12389760, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1095264000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4320, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D2Xs.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D2Xs.txt new file mode 100644 index 0000000..533e808 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D2Xs.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D2Xs", + "image": "//cdn.dxomark.com/dakdata/xml/D2Xs/vignette3.png", + "brand": "Nikon", + "price": 4250, + "pixelDepth": 12.2, + "pixels": 12212224, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1149091200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4288, + 2848 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3.txt new file mode 100644 index 0000000..02d739a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3", + "image": "//cdn.dxomark.com/dakdata/xml/D3/vignette3.png", + "brand": "Nikon", + "price": 4300, + "pixelDepth": 12.1, + "pixels": 12195072, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1187798400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 9, + "resolution": [ + 4288, + 2844 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D300.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D300.txt new file mode 100644 index 0000000..aecadc1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D300.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D300", + "image": "//cdn.dxomark.com/dakdata/xml/D300/vignette3.png", + "brand": "Nikon", + "price": 1540, + "pixelDepth": 12.3, + "pixels": 12481536, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1187798400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 4352, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3000.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3000.txt new file mode 100644 index 0000000..032d687 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3000", + "image": "//cdn.dxomark.com/dakdata/xml/D3000/vignette3.png", + "brand": "Nikon", + "price": 730, + "pixelDepth": 12.3, + "pixels": 12361080, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1239638400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4310, + 2868 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D300s.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D300s.txt new file mode 100644 index 0000000..73b9cf2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D300s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D300s", + "image": "//cdn.dxomark.com/dakdata/xml/D300s/vignette3.png", + "brand": "Nikon", + "price": 1815, + "pixelDepth": 12.3, + "pixels": 12481536, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1248883200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4352, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3100.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3100.txt new file mode 100644 index 0000000..0955396 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3100", + "image": "//cdn.dxomark.com/dakdata/xml/D3100/vignette3.png", + "brand": "Nikon", + "price": 699, + "pixelDepth": 14.8, + "pixels": 14408448, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1285862400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4672, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3200.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3200.txt new file mode 100644 index 0000000..6a6b420 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3200", + "image": "//cdn.dxomark.com/dakdata/xml/D3200/vignette3.png", + "brand": "Nikon", + "price": 699, + "pixelDepth": 24.2, + "pixels": 24392960, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 6080, + 4012 + ], + "weight": 455, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3300.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3300.txt new file mode 100644 index 0000000..b1889a8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3300.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3300", + "image": "//cdn.dxomark.com/dakdata/xml/D3300/vignette3.png", + "brand": "Nikon", + "price": 650, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1389024000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3400.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3400.txt new file mode 100644 index 0000000..dc2e6d5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3400.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3400", + "image": "//cdn.dxomark.com/dakdata/xml/D3400/vignette3.png", + "brand": "Nikon", + "price": 650, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1471363200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3X.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3X.txt new file mode 100644 index 0000000..ea4ef39 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3X.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3X", + "image": "//cdn.dxomark.com/dakdata/xml/D3X/vignette3.png", + "brand": "Nikon", + "price": 9172, + "pixelDepth": 24.5, + "pixels": 24587520, + "ISO": [ + 50, + 6400 + ], + "maxISO": 6400, + "launchDate": 1228060800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6080, + 4044 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D3s.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3s.txt new file mode 100644 index 0000000..3708290 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D3s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3s", + "image": "//cdn.dxomark.com/dakdata/xml/D3s/vignette3.png", + "brand": "Nikon", + "price": 5510, + "pixelDepth": 12.1, + "pixels": 12195072, + "ISO": [ + 100, + 102400 + ], + "maxISO": 102400, + "launchDate": 1255449600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 4288, + 2844 + ], + "weight": 1240, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D4.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D4.txt new file mode 100644 index 0000000..b05a2dc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D4.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D4", + "image": "//cdn.dxomark.com/dakdata/xml/D4/vignette3.png", + "brand": "Nikon", + "price": 5999, + "pixelDepth": 16.2, + "pixels": 16433664, + "ISO": [ + 50, + 204800 + ], + "maxISO": 204800, + "launchDate": 1325779200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 11, + "resolution": [ + 4992, + 3292 + ], + "weight": 1340, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D40.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D40.txt new file mode 100644 index 0000000..1b785e9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D40.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D40", + "image": "//cdn.dxomark.com/dakdata/xml/D40/vignette3.png", + "brand": "Nikon", + "price": 400, + "pixelDepth": 6, + "pixels": 6122560, + "ISO": [ + 200, + 3200 + ], + "maxISO": 3200, + "launchDate": 1163606400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D40X.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D40X.txt new file mode 100644 index 0000000..2847bdf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D40X.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D40X", + "image": "//cdn.dxomark.com/dakdata/xml/D40X/vignette3.png", + "brand": "Nikon", + "price": 998, + "pixelDepth": 10, + "pixels": 10212864, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1173110400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3904, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D4s.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D4s.txt new file mode 100644 index 0000000..d4d8a4d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D4s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D4s", + "image": "//cdn.dxomark.com/dakdata/xml/D4s/vignette3.png", + "brand": "Nikon", + "price": 6500, + "pixelDepth": 16.2, + "pixels": 16229568, + "ISO": [ + 50, + 409600 + ], + "maxISO": 409600, + "launchDate": 1393257600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 11, + "resolution": [ + 4936, + 3288 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D5.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5.txt new file mode 100644 index 0000000..6cb4e64 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5", + "image": "//cdn.dxomark.com/dakdata/xml/D5/vignette3.png", + "brand": "Nikon", + "price": 6500, + "pixelDepth": 20.8, + "pixels": 20817152, + "ISO": [ + 50, + 3280000 + ], + "maxISO": 3280000, + "launchDate": 1452009600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5584, + 3728 + ], + "weight": 1225, + "autoFocus": 153 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D50.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D50.txt new file mode 100644 index 0000000..2dc1dfe --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D50.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D50", + "image": "//cdn.dxomark.com/dakdata/xml/D50/vignette3.png", + "brand": "Nikon", + "price": 1000, + "pixelDepth": 6, + "pixels": 6122560, + "ISO": [ + 200, + 1600 + ], + "maxISO": 1600, + "launchDate": 1113926400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D500.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D500.txt new file mode 100644 index 0000000..7015124 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D500.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D500", + "image": "//cdn.dxomark.com/dakdata/xml/D500/vignette3.png", + "brand": "Nikon", + "price": 2000, + "pixelDepth": 20.9, + "pixels": 20873072, + "ISO": [ + 50, + 1640000 + ], + "maxISO": 1640000, + "launchDate": 1452009600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5599, + 3728 + ], + "weight": 670, + "autoFocus": 153 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D5000.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5000.txt new file mode 100644 index 0000000..e199277 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5000", + "image": "//cdn.dxomark.com/dakdata/xml/D5000/vignette3.png", + "brand": "Nikon", + "price": 730, + "pixelDepth": 12.3, + "pixels": 12361080, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1239638400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4310, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D5100.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5100.txt new file mode 100644 index 0000000..3783270 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5100", + "image": "//cdn.dxomark.com/dakdata/xml/D5100/vignette3.png", + "brand": "Nikon", + "price": 799, + "pixelDepth": 16.2, + "pixels": 16373760, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1301932800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4992, + 3280 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D5200.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5200.txt new file mode 100644 index 0000000..265bb3d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5200", + "image": "//cdn.dxomark.com/dakdata/xml/D5200/vignette3.png", + "brand": "Nikon", + "price": 897, + "pixelDepth": 24.1, + "pixels": 24264720, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1352131200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6036, + 4020 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D5300.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5300.txt new file mode 100644 index 0000000..47ef277 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5300.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5300", + "image": "//cdn.dxomark.com/dakdata/xml/D5300/vignette3.png", + "brand": "Nikon", + "price": 800, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381939200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D5500.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5500.txt new file mode 100644 index 0000000..96e843d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5500.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5500", + "image": "//cdn.dxomark.com/dakdata/xml/D5500/vignette3.png", + "brand": "Nikon", + "price": 900, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1420473600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D5600.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5600.txt new file mode 100644 index 0000000..d655edd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D5600.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5600", + "image": "//cdn.dxomark.com/dakdata/xml/D5600/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1478707200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D60.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D60.txt new file mode 100644 index 0000000..db5bc1f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D60.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D60", + "image": "//cdn.dxomark.com/dakdata/xml/D60/vignette3.png", + "brand": "Nikon", + "price": 470, + "pixelDepth": 10.2, + "pixels": 10212864, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201536000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3904, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D600.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D600.txt new file mode 100644 index 0000000..ec83c40 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D600.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D600", + "image": "//cdn.dxomark.com/dakdata/xml/D600/vignette3.png", + "brand": "Nikon", + "price": 2100, + "pixelDepth": 24.3, + "pixels": 24490240, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347465600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.5, + "resolution": [ + 6080, + 4028 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D610.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D610.txt new file mode 100644 index 0000000..f9a0389 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D610.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D610", + "image": "//cdn.dxomark.com/dakdata/xml/D610/vignette3.png", + "brand": "Nikon", + "price": 1999, + "pixelDepth": 24, + "pixels": 24490240, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381161600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 6080, + 4028 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D70.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D70.txt new file mode 100644 index 0000000..fa7e638 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D70.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D70", + "image": "//cdn.dxomark.com/dakdata/xml/D70/vignette3.png", + "brand": "Nikon", + "price": 400, + "pixelDepth": 6, + "pixels": 6122560, + "ISO": [ + 200, + 1600 + ], + "maxISO": 1600, + "launchDate": 1075219200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D700.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D700.txt new file mode 100644 index 0000000..fb49e03 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D700.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D700", + "image": "//cdn.dxomark.com/dakdata/xml/D700/vignette3.png", + "brand": "Nikon", + "price": 2699, + "pixelDepth": 12.1, + "pixels": 12195072, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1214841600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4288, + 2844 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D7000.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7000.txt new file mode 100644 index 0000000..a94fada --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7000", + "image": "//cdn.dxomark.com/dakdata/xml/D7000/vignette3.png", + "brand": "Nikon", + "price": 1200, + "pixelDepth": 16.2, + "pixels": 16370480, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1284480000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4991, + 3280 + ], + "weight": 690, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D70s.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D70s.txt new file mode 100644 index 0000000..dc9ff85 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D70s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D70s", + "image": "//cdn.dxomark.com/dakdata/xml/D70s/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 6.1, + "pixels": 6122560, + "ISO": [ + 200, + 1600 + ], + "maxISO": 1600, + "launchDate": 1113926400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D7100.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7100.txt new file mode 100644 index 0000000..dbdcd12 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7100", + "image": "//cdn.dxomark.com/dakdata/xml/D7100/vignette3.png", + "brand": "Nikon", + "price": 1200, + "pixelDepth": 24.1, + "pixels": 24264720, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1361376000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 6036, + 4020 + ], + "weight": 675, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D7200.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7200.txt new file mode 100644 index 0000000..f3a5045 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7200", + "image": "//cdn.dxomark.com/dakdata/xml/D7200/vignette3.png", + "brand": "Nikon", + "price": 1200, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 102400 + ], + "maxISO": 102400, + "launchDate": 1425225600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 6016, + 4016 + ], + "weight": 675, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D750.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D750.txt new file mode 100644 index 0000000..8078d0a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D750.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D750", + "image": "//cdn.dxomark.com/dakdata/xml/D750/vignette3.png", + "brand": "Nikon", + "price": 2300, + "pixelDepth": 24.3, + "pixels": 24321024, + "ISO": [ + 50, + 51200 + ], + "maxISO": 51200, + "launchDate": 1410451200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6.5, + "resolution": [ + 6032, + 4032 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D7500.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7500.txt new file mode 100644 index 0000000..0ef43d2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D7500.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7500", + "image": "//cdn.dxomark.com/dakdata/xml/D7500/vignette3.png", + "brand": "Nikon", + "price": 1250, + "pixelDepth": 20.9, + "pixels": 20876800, + "ISO": [ + 100, + 1640000 + ], + "maxISO": 1640000, + "launchDate": 1491926400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5600, + 3728 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D80.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D80.txt new file mode 100644 index 0000000..0926beb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D80.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D80", + "image": "//cdn.dxomark.com/dakdata/xml/D80/vignette3.png", + "brand": "Nikon", + "price": 730, + "pixelDepth": 10, + "pixels": 10190700, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1155052800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3900, + 2613 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D800.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D800.txt new file mode 100644 index 0000000..a151b26 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D800.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D800", + "image": "//cdn.dxomark.com/dakdata/xml/D800/vignette3.png", + "brand": "Nikon", + "price": 2999, + "pixelDepth": 36.3, + "pixels": 36555776, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328544000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 7424, + 4924 + ], + "weight": 820, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D800E.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D800E.txt new file mode 100644 index 0000000..8083d30 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D800E.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D800E", + "image": "//cdn.dxomark.com/dakdata/xml/D800E/vignette3.png", + "brand": "Nikon", + "price": 3300, + "pixelDepth": 36.3, + "pixels": 36555776, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328544000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 7424, + 4924 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D810.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D810.txt new file mode 100644 index 0000000..7c1273f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D810.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D810", + "image": "//cdn.dxomark.com/dakdata/xml/D810/vignette3.png", + "brand": "Nikon", + "price": 3300, + "pixelDepth": 36.3, + "pixels": 36368640, + "ISO": [ + 64, + 51200 + ], + "maxISO": 51200, + "launchDate": 1403712000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 7380, + 4928 + ], + "weight": 880, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D850.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D850.txt new file mode 100644 index 0000000..b831939 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D850.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D850", + "image": "//cdn.dxomark.com/dakdata/xml/D850/vignette3.png", + "brand": "Nikon", + "price": 3300, + "pixelDepth": 45.7, + "pixels": 45749760, + "ISO": [ + 32, + 102400 + ], + "maxISO": 102400, + "launchDate": 1503417600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 8288, + 5520 + ], + "weight": 915, + "autoFocus": 153 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon D90.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon D90.txt new file mode 100644 index 0000000..11c52a9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon D90.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D90", + "image": "//cdn.dxomark.com/dakdata/xml/D90/vignette3.png", + "brand": "Nikon", + "price": 1235, + "pixelDepth": 12.3, + "pixels": 12361080, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1219766400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4.5, + "resolution": [ + 4310, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nikon Df.txt b/scr/模糊专家系统/fuzzy-expert/input/Nikon Df.txt new file mode 100644 index 0000000..983e4c6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nikon Df.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Df", + "image": "//cdn.dxomark.com/dakdata/xml/Df/vignette3.png", + "brand": "Nikon", + "price": 2749, + "pixelDepth": 16.2, + "pixels": 16433664, + "ISO": [ + 100, + 204800 + ], + "maxISO": 204800, + "launchDate": 1383580800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.5, + "resolution": [ + 4992, + 3292 + ], + "weight": 710, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nokia Lumia 1020.txt b/scr/模糊专家系统/fuzzy-expert/input/Nokia Lumia 1020.txt new file mode 100644 index 0000000..d5da207 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nokia Lumia 1020.txt @@ -0,0 +1,28 @@ +{ + "name": "Nokia Lumia 1020", + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1020/vignette3.png", + "brand": "Nokia", + "price": 610, + "pixelDepth": 41, + "pixels": 38334720, + "ISO": [ + 100, + 4000 + ], + "maxISO": 4000, + "launchDate": 1373472000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 7152, + 5360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Nokia Lumia 1520.txt b/scr/模糊专家系统/fuzzy-expert/input/Nokia Lumia 1520.txt new file mode 100644 index 0000000..2d43ab0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Nokia Lumia 1520.txt @@ -0,0 +1,28 @@ +{ + "name": "Nokia Lumia 1520", + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1520/vignette3.png", + "brand": "Nokia", + "price": 600, + "pixelDepth": 20, + "pixels": 18690048, + "ISO": [ + 100, + 4000 + ], + "maxISO": 4000, + "launchDate": 1384444800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4992, + 3744 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E3.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E3.txt new file mode 100644 index 0000000..bf71af7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E3.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E3", + "image": "//cdn.dxomark.com/dakdata/xml/E3/vignette3.png", + "brand": "Olympus", + "price": 1300, + "pixelDepth": 10.1, + "pixels": 10416000, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1192464000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E30.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E30.txt new file mode 100644 index 0000000..54bef99 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E30.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E30", + "image": "//cdn.dxomark.com/dakdata/xml/E30/vignette3.png", + "brand": "Olympus", + "price": 1689, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1225814400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E410.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E410.txt new file mode 100644 index 0000000..4c09e88 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E410.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E410", + "image": "//cdn.dxomark.com/dakdata/xml/E410/vignette3.png", + "brand": "Olympus", + "price": 480, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1173024000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E420.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E420.txt new file mode 100644 index 0000000..9c0183d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E420.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E420", + "image": "//cdn.dxomark.com/dakdata/xml/E420/vignette3.png", + "brand": "Olympus", + "price": 520, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1204646400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E450.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E450.txt new file mode 100644 index 0000000..aedf89f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E450.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E450", + "image": "//cdn.dxomark.com/dakdata/xml/E450/vignette3.png", + "brand": "Olympus", + "price": 443, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1238428800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E5.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E5.txt new file mode 100644 index 0000000..a832559 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E5", + "image": "//cdn.dxomark.com/dakdata/xml/E5/vignette3.png", + "brand": "Olympus", + "price": 1699, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1284393600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4096, + 3084 + ], + "weight": 800, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E510.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E510.txt new file mode 100644 index 0000000..706d8c8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E510.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E510", + "image": "//cdn.dxomark.com/dakdata/xml/E510/vignette3.png", + "brand": "Olympus", + "price": 593, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1173024000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E520.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E520.txt new file mode 100644 index 0000000..eb4b023 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E520.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E520", + "image": "//cdn.dxomark.com/dakdata/xml/E520/vignette3.png", + "brand": "Olympus", + "price": 450, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1210608000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E600.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E600.txt new file mode 100644 index 0000000..9408258 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E600.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E600", + "image": "//cdn.dxomark.com/dakdata/xml/E600/vignette3.png", + "brand": "Olympus", + "price": 490, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1251561600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4096, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus E620.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus E620.txt new file mode 100644 index 0000000..8e83af2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus E620.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E620", + "image": "//cdn.dxomark.com/dakdata/xml/E620/vignette3.png", + "brand": "Olympus", + "price": 618, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1235404800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M1 Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M1 Mark II.txt new file mode 100644 index 0000000..d076c9a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M1 Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M1 Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1_Mark_II/vignette3.png", + "brand": "Olympus", + "price": 2000, + "pixelDepth": 20.4, + "pixels": 20498880, + "ISO": [ + 64, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 5240, + 3912 + ], + "weight": 500, + "autoFocus": 121 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M1.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M1.txt new file mode 100644 index 0000000..89c2fa5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M1", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1/vignette3.png", + "brand": "Olympus", + "price": 1399, + "pixelDepth": 16.3, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1378742400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 4640, + 3472 + ], + "weight": 500, + "autoFocus": 800 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M10 Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M10 Mark II.txt new file mode 100644 index 0000000..cbc6cbf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M10 Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M10 Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10_Mark_II/vignette3.png", + "brand": "Olympus", + "price": 650, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1440432000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8.5, + "resolution": [ + 4640, + 3472 + ], + "weight": 342, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M10.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M10.txt new file mode 100644 index 0000000..85f763b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M10.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M10", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10/vignette3.png", + "brand": "Olympus", + "price": 700, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 200, + 25600 + ], + "maxISO": 25600, + "launchDate": 1390924800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 500, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M5 Mark II.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M5 Mark II.txt new file mode 100644 index 0000000..454abc4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M5 Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M5 Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5_Mark_II/vignette3.png", + "brand": "Olympus", + "price": 1100, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1423065600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4640, + 3472 + ], + "weight": 417, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M5.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M5.txt new file mode 100644 index 0000000..3edd025 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus OM-D E-M5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M5", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5/vignette3.png", + "brand": "Olympus", + "price": 999, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 200, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328630400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 9, + "resolution": [ + 4640, + 3472 + ], + "weight": 425, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-P5.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-P5.txt new file mode 100644 index 0000000..08685ca --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-P5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-P5", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-P5/vignette3.png", + "brand": "Olympus", + "price": 1000, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1368115200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 4640, + 3472 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PL5.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PL5.txt new file mode 100644 index 0000000..713b2e3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PL5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-PL5", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL5/vignette3.png", + "brand": "Olympus", + "price": 699, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 279, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PL7.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PL7.txt new file mode 100644 index 0000000..80ac666 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PL7.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-PL7", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL7/vignette3.png", + "brand": "Olympus", + "price": 600, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1409155200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 309, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PM2.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PM2.txt new file mode 100644 index 0000000..98e2a9e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN E-PM2.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-PM2", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PM2/vignette3.png", + "brand": "Olympus", + "price": 599, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 223, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP1.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP1.txt new file mode 100644 index 0000000..33e2ab4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EP1", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP1/vignette3.png", + "brand": "Olympus", + "price": 1098, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1245081600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP2.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP2.txt new file mode 100644 index 0000000..0386e4d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP2.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EP2", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP2/vignette3.png", + "brand": "Olympus", + "price": 1100, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1257350400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP3.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP3.txt new file mode 100644 index 0000000..2ad5e8f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EP3.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EP3", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP3/vignette3.png", + "brand": "Olympus", + "price": 1000, + "pixelDepth": 12.3, + "pixels": 12403200, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1309363200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4080, + 3040 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL1.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL1.txt new file mode 100644 index 0000000..1f641e5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPL1", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL1/vignette3.png", + "brand": "Olympus", + "price": 599, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1265126400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4096, + 3084 + ], + "weight": 296, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL2.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL2.txt new file mode 100644 index 0000000..5c8bd7e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL2.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPL2", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL2/vignette3.png", + "brand": "Olympus", + "price": 599, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 200, + 6400 + ], + "maxISO": 6400, + "launchDate": 1294243200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4096, + 3084 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL3.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL3.txt new file mode 100644 index 0000000..38705ea --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPL3.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPL3", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL3/vignette3.png", + "brand": "Olympus", + "price": 460, + "pixelDepth": 12.3, + "pixels": 12403200, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1309363200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.5, + "resolution": [ + 4080, + 3040 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPM1.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPM1.txt new file mode 100644 index 0000000..fe8bea3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN EPM1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPM1", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPM1/vignette3.png", + "brand": "Olympus", + "price": 499, + "pixelDepth": 12.3, + "pixels": 12403200, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1309363200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.5, + "resolution": [ + 4080, + 3040 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN-F.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN-F.txt new file mode 100644 index 0000000..22660d9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus PEN-F.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN-F", + "image": "//cdn.dxomark.com/dakdata/xml/PEN-F/vignette3.png", + "brand": "Olympus", + "price": 1200, + "pixelDepth": 20.3, + "pixels": 20300800, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1453824000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5200, + 3904 + ], + "weight": 373, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus SP 565 UZ.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus SP 565 UZ.txt new file mode 100644 index 0000000..aca1763 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus SP 565 UZ.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus SP 565 UZ", + "image": "//cdn.dxomark.com/dakdata/xml/SP_565_UZ/vignette3.png", + "brand": "Olympus", + "price": 433, + "pixelDepth": 10, + "pixels": 10046688, + "ISO": [ + 64, + 1600 + ], + "maxISO": 1600, + "launchDate": 1219593600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 3664, + 2742 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus SP 570 UZ.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus SP 570 UZ.txt new file mode 100644 index 0000000..9c849e4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus SP 570 UZ.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus SP 570 UZ", + "image": "//cdn.dxomark.com/dakdata/xml/SP_570_UZ/vignette3.png", + "brand": "Olympus", + "price": 520, + "pixelDepth": 10, + "pixels": 10046688, + "ISO": [ + 64, + 6400 + ], + "maxISO": 6400, + "launchDate": 1200931200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 3664, + 2742 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus Stylus1.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus Stylus1.txt new file mode 100644 index 0000000..e019add --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus Stylus1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus Stylus1", + "image": "//cdn.dxomark.com/dakdata/xml/Stylus1/vignette3.png", + "brand": "Olympus", + "price": 699, + "pixelDepth": 12, + "pixels": 11968000, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1382976000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4000, + 2992 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus XZ-2 iHS.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus XZ-2 iHS.txt new file mode 100644 index 0000000..e5c9a02 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus XZ-2 iHS.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus XZ-2 iHS", + "image": "//cdn.dxomark.com/dakdata/xml/XZ-2_iHS/vignette3.png", + "brand": "Olympus", + "price": 549, + "pixelDepth": 12, + "pixels": 11896224, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3984, + 2986 + ], + "weight": 346, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Olympus XZ1.txt b/scr/模糊专家系统/fuzzy-expert/input/Olympus XZ1.txt new file mode 100644 index 0000000..4a7b339 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Olympus XZ1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus XZ1", + "image": "//cdn.dxomark.com/dakdata/xml/XZ1/vignette3.png", + "brand": "Olympus", + "price": 494, + "pixelDepth": 10, + "pixels": 10156800, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1294243200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3680, + 2760 + ], + "weight": 275, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic DMC FZ28.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic DMC FZ28.txt new file mode 100644 index 0000000..86b54b6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic DMC FZ28.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic DMC FZ28", + "image": "//cdn.dxomark.com/dakdata/xml/DMC_FZ28/vignette3.png", + "brand": "Panasonic", + "price": 426, + "pixelDepth": 10.1, + "pixels": 10101672, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1216569600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 3668, + 2754 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-FZ150.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-FZ150.txt new file mode 100644 index 0000000..444e0b7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-FZ150.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-FZ150", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ150/vignette3.png", + "brand": "Panasonic", + "price": 630, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1314288000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4016, + 3016 + ], + "weight": 484, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-FZ200.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-FZ200.txt new file mode 100644 index 0000000..756a120 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-FZ200.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-FZ200", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ200/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1342540800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4016, + 3016 + ], + "weight": 537, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-G6.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-G6.txt new file mode 100644 index 0000000..cbcbb5f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-G6.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-G6", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-G6/vignette3.png", + "brand": "Panasonic", + "price": 750, + "pixelDepth": 16.05, + "pixels": 16054528, + "ISO": [ + 160, + 25600 + ], + "maxISO": 25600, + "launchDate": 1366732800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 4624, + 3472 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-LF1.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-LF1.txt new file mode 100644 index 0000000..0aa8cc8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic LUMIX DMC-LF1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-LF1", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-LF1/vignette3.png", + "brand": "Panasonic", + "price": 500, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1366732800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DC-GH5.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DC-GH5.txt new file mode 100644 index 0000000..07cb47b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DC-GH5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DC-GH5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DC-GH5/vignette3.png", + "brand": "Panasonic", + "price": 2000, + "pixelDepth": 20.3, + "pixels": 20332032, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1483459200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 5208, + 3904 + ], + "weight": 645, + "autoFocus": 225 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC FX150.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC FX150.txt new file mode 100644 index 0000000..6a6984c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC FX150.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC FX150", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_FX150/vignette3.png", + "brand": "Panasonic", + "price": 390, + "pixelDepth": 14.7, + "pixels": 14721996, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1216569600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4429, + 3324 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G1.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G1.txt new file mode 100644 index 0000000..f68c42c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G1/vignette3.png", + "brand": "Panasonic", + "price": 790, + "pixelDepth": 12.1, + "pixels": 12118288, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1221148800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4018, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G10.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G10.txt new file mode 100644 index 0000000..753543a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G10.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G10", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G10/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 12.1, + "pixels": 12000000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1267891200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.2, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G2.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G2.txt new file mode 100644 index 0000000..bcf3b35 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G2.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G2", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G2/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12000000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1267891200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.2, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G3.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G3.txt new file mode 100644 index 0000000..e7de6b9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G3/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1305129600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4608, + 3464 + ], + "weight": 336, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G5.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G5.txt new file mode 100644 index 0000000..5350873 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC G5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G5/vignette3.png", + "brand": "Panasonic", + "price": 650, + "pixelDepth": 16.05, + "pixels": 16054528, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1342540800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 20, + "resolution": [ + 4624, + 3472 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF1.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF1.txt new file mode 100644 index 0000000..e3a5063 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF1/vignette3.png", + "brand": "Panasonic", + "price": 570, + "pixelDepth": 12.1, + "pixels": 12118288, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1251820800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4018, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF2.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF2.txt new file mode 100644 index 0000000..de87144 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF2.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF2", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF2/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12329408, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1288800000000, + "touchScreen": true, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4088, + 3016 + ], + "weight": 265, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF3.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF3.txt new file mode 100644 index 0000000..8562625 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF3/vignette3.png", + "brand": "Panasonic", + "price": 699, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1307894400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.8, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF5.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF5.txt new file mode 100644 index 0000000..f63cea6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF5/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1333555200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF6.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF6.txt new file mode 100644 index 0000000..f5703ca --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GF6.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF6", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF6/vignette3.png", + "brand": "Panasonic", + "price": 680, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 160, + 25600 + ], + "maxISO": 25600, + "launchDate": 1365436800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GH1.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GH1.txt new file mode 100644 index 0000000..f708bc4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GH1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GH1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH1/vignette3.png", + "brand": "Panasonic", + "price": 880, + "pixelDepth": 12.1, + "pixels": 12118288, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1236009600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4018, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GH2.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GH2.txt new file mode 100644 index 0000000..4985bb0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GH2.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GH2", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH2/vignette3.png", + "brand": "Panasonic", + "price": 1100, + "pixelDepth": 16.05, + "pixels": 16526720, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1284998400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4.5, + "resolution": [ + 4760, + 3472 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GX1.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GX1.txt new file mode 100644 index 0000000..c532b69 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC GX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GX1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GX1/vignette3.png", + "brand": "Panasonic", + "price": 699, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1320595200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.2, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC L10.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC L10.txt new file mode 100644 index 0000000..5f120c8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC L10.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC L10", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_L10/vignette3.png", + "brand": "Panasonic", + "price": 964, + "pixelDepth": 10.1, + "pixels": 10129182, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1188403200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3682, + 2751 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX10.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX10.txt new file mode 100644 index 0000000..f6737cf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX10.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX10", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX10/vignette3.png", + "brand": "Panasonic", + "price": 699, + "pixelDepth": 20.1, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5488, + 3664 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX3.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX3.txt new file mode 100644 index 0000000..c017951 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX3/vignette3.png", + "brand": "Panasonic", + "price": 450, + "pixelDepth": 10.1, + "pixels": 10101672, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1219248000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3668, + 2754 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX5.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX5.txt new file mode 100644 index 0000000..c23cff3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX5/vignette3.png", + "brand": "Panasonic", + "price": 470, + "pixelDepth": 10.1, + "pixels": 9980928, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1279641600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3648, + 2736 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX7.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX7.txt new file mode 100644 index 0000000..8ed8928 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC LX7.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX7", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX7/vignette3.png", + "brand": "Panasonic", + "price": 450, + "pixelDepth": 10.1, + "pixels": 9616512, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1342540800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 3792, + 2536 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ1000.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ1000.txt new file mode 100644 index 0000000..5bb63b7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ1000.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ1000", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ1000/vignette3.png", + "brand": "Panasonic", + "price": 900, + "pixelDepth": 20.1, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1402502400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 5488, + 3664 + ], + "weight": 780, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ2000.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ2000.txt new file mode 100644 index 0000000..bd2a5c8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ2000.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ2000", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ2000/vignette3.png", + "brand": "Panasonic", + "price": 1200, + "pixelDepth": 20, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 5488, + 3664 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ330.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ330.txt new file mode 100644 index 0000000..ad8c7c0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ330.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ330", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ330/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1436976000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4016, + 3016 + ], + "weight": 691, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ70.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ70.txt new file mode 100644 index 0000000..0285275 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-FZ70.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ70", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ70/vignette3.png", + "brand": "Panasonic", + "price": 399, + "pixelDepth": 16.1, + "pixels": 16054528, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1374076800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 9, + "resolution": [ + 4624, + 3472 + ], + "weight": 562, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-G80.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-G80.txt new file mode 100644 index 0000000..5f06cb8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-G80.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-G80", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-G80/vignette3.png", + "brand": "Panasonic", + "price": 900, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GH3.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GH3.txt new file mode 100644 index 0000000..0749533 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GH3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GH3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH3/vignette3.png", + "brand": "Panasonic", + "price": 1300, + "pixelDepth": 16.05, + "pixels": 16054528, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4624, + 3472 + ], + "weight": 470, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GH4.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GH4.txt new file mode 100644 index 0000000..a3ded27 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GH4.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GH4", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH4/vignette3.png", + "brand": "Panasonic", + "price": 1700, + "pixelDepth": 16, + "pixels": 16054528, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1391702400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 4624, + 3472 + ], + "weight": 465, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GM1.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GM1.txt new file mode 100644 index 0000000..137bd0a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GM1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GM1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM1/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381939200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4608, + 3464 + ], + "weight": 173, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GM5.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GM5.txt new file mode 100644 index 0000000..b4e0cc4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GM5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GM5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM5/vignette3.png", + "brand": "Panasonic", + "price": 650, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1410710400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.8, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX7.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX7.txt new file mode 100644 index 0000000..a02ed6e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX7.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GX7", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX7/vignette3.png", + "brand": "Panasonic", + "price": 999, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1375286400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX8.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX8.txt new file mode 100644 index 0000000..77c89fc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX8.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GX8", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX8/vignette3.png", + "brand": "Panasonic", + "price": 1200, + "pixelDepth": 20.3, + "pixels": 20300800, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1436976000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5200, + 3904 + ], + "weight": 435, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX80.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX80.txt new file mode 100644 index 0000000..aad18f6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-GX80.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GX80", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX80/vignette3.png", + "brand": "Panasonic", + "price": 800, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1459785600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 40, + "resolution": [ + 4608, + 3464 + ], + "weight": 383, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-LX100.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-LX100.txt new file mode 100644 index 0000000..6fee51f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-LX100.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-LX100", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-LX100/vignette3.png", + "brand": "Panasonic", + "price": 899, + "pixelDepth": 12.8, + "pixels": 12813312, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1410710400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 4128, + 3104 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS100.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS100.txt new file mode 100644 index 0000000..a18514a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS100.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-ZS100", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS100/vignette3.png", + "brand": "Panasonic", + "price": 700, + "pixelDepth": 20.1, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1451923200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 50, + "resolution": [ + 5488, + 3664 + ], + "weight": 270, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS50.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS50.txt new file mode 100644 index 0000000..6decf1c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS50.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-ZS50", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS50/vignette3.png", + "brand": "Panasonic", + "price": 400, + "pixelDepth": 12, + "pixels": 12112256, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1420387200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4016, + 3016 + ], + "weight": 217, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS60.txt b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS60.txt new file mode 100644 index 0000000..28e081e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Panasonic Lumix DMC-ZS60.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-ZS60", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS60/vignette3.png", + "brand": "Panasonic", + "price": 450, + "pixelDepth": 18.1, + "pixels": 18115456, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1451923200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 40, + "resolution": [ + 4912, + 3688 + ], + "weight": 240, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax 645D.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax 645D.txt new file mode 100644 index 0000000..35b8268 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax 645D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax 645D", + "image": "//cdn.dxomark.com/dakdata/xml/645D/vignette3.png", + "brand": "Pentax", + "price": 9400, + "pixelDepth": 40, + "pixels": 41218048, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1267372800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.1, + "resolution": [ + 7424, + 5552 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax 645Z.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax 645Z.txt new file mode 100644 index 0000000..95b6b05 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax 645Z.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax 645Z", + "image": "//cdn.dxomark.com/dakdata/xml/645Z/vignette3.png", + "brand": "Pentax", + "price": 8499, + "pixelDepth": 51.4, + "pixels": 51261600, + "ISO": [ + 100, + 204800 + ], + "maxISO": 204800, + "launchDate": 1397491200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 8268, + 6200 + ], + "weight": 1470, + "autoFocus": 27 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K 01.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K 01.txt new file mode 100644 index 0000000..f27bab3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K 01.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K 01", + "image": "//cdn.dxomark.com/dakdata/xml/K_01/vignette3.png", + "brand": "Pentax", + "price": 899, + "pixelDepth": 16.28, + "pixels": 16150592, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328112000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4936, + 3272 + ], + "weight": 561, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-1.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-1.txt new file mode 100644 index 0000000..b792206 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-1.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-1", + "image": "//cdn.dxomark.com/dakdata/xml/K-1/vignette3.png", + "brand": "Pentax", + "price": 1800, + "pixelDepth": 36.4, + "pixels": 36590400, + "ISO": [ + 100, + 204800 + ], + "maxISO": 204800, + "launchDate": 1455638400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 4.4, + "resolution": [ + 7392, + 4950 + ], + "weight": 500, + "autoFocus": 33 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-3 II.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-3 II.txt new file mode 100644 index 0000000..e544041 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-3 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-3 II", + "image": "//cdn.dxomark.com/dakdata/xml/K-3_II/vignette3.png", + "brand": "Pentax", + "price": 1100, + "pixelDepth": 24.35, + "pixels": 24514560, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1429718400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 8.3, + "resolution": [ + 6080, + 4032 + ], + "weight": 500, + "autoFocus": 27 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-3.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-3.txt new file mode 100644 index 0000000..a1b5f8d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-3.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-3", + "image": "//cdn.dxomark.com/dakdata/xml/K-3/vignette3.png", + "brand": "Pentax", + "price": 1300, + "pixelDepth": 24, + "pixels": 24514560, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1381161600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8.3, + "resolution": [ + 6080, + 4032 + ], + "weight": 500, + "autoFocus": 27 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-30.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-30.txt new file mode 100644 index 0000000..94b3ed1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-30.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-30", + "image": "//cdn.dxomark.com/dakdata/xml/K-30/vignette3.png", + "brand": "Pentax", + "price": 470, + "pixelDepth": 16.3, + "pixels": 16150592, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1337616000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4936, + 3272 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-5 II.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-5 II.txt new file mode 100644 index 0000000..cd907fb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-5 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-5 II", + "image": "//cdn.dxomark.com/dakdata/xml/K-5_II/vignette3.png", + "brand": "Pentax", + "price": 999, + "pixelDepth": 16.3, + "pixels": 16084992, + "ISO": [ + 80, + 51200 + ], + "maxISO": 51200, + "launchDate": 1347292800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4928, + 3264 + ], + "weight": 680, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-5 IIs.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-5 IIs.txt new file mode 100644 index 0000000..9569165 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-5 IIs.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-5 IIs", + "image": "//cdn.dxomark.com/dakdata/xml/K-5_IIs/vignette3.png", + "brand": "Pentax", + "price": 1199, + "pixelDepth": 16.3, + "pixels": 16393728, + "ISO": [ + 80, + 51200 + ], + "maxISO": 51200, + "launchDate": 1347292800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4992, + 3284 + ], + "weight": 680, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-50.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-50.txt new file mode 100644 index 0000000..4fda2bd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-50.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-50", + "image": "//cdn.dxomark.com/dakdata/xml/K-50/vignette3.png", + "brand": "Pentax", + "price": 599, + "pixelDepth": 16.28, + "pixels": 16150592, + "ISO": [ + 100, + 51600 + ], + "maxISO": 51600, + "launchDate": 1370966400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4936, + 3272 + ], + "weight": 590, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-500.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-500.txt new file mode 100644 index 0000000..e3406db --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-500.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-500", + "image": "//cdn.dxomark.com/dakdata/xml/K-500/vignette3.png", + "brand": "Pentax", + "price": 600, + "pixelDepth": 16.28, + "pixels": 16150592, + "ISO": [ + 100, + 51600 + ], + "maxISO": 51600, + "launchDate": 1370966400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4936, + 3272 + ], + "weight": 586, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K-S1.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-S1.txt new file mode 100644 index 0000000..74dd7e6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K-S1.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-S1", + "image": "//cdn.dxomark.com/dakdata/xml/K-S1/vignette3.png", + "brand": "Pentax", + "price": 749, + "pixelDepth": 20.12, + "pixels": 20166656, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1409068800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 5504, + 3664 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K10D.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K10D.txt new file mode 100644 index 0000000..8697299 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K10D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K10D", + "image": "//cdn.dxomark.com/dakdata/xml/K10D/vignette3.png", + "brand": "Pentax", + "price": 900, + "pixelDepth": 10, + "pixels": 10328064, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1158076800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3936, + 2624 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K200D.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K200D.txt new file mode 100644 index 0000000..a4c5efb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K200D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K200D", + "image": "//cdn.dxomark.com/dakdata/xml/K200D/vignette3.png", + "brand": "Pentax", + "price": 660, + "pixelDepth": 10.2, + "pixels": 10191936, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1201017600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.8, + "resolution": [ + 3896, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K20D.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K20D.txt new file mode 100644 index 0000000..dcf30b1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K20D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K20D", + "image": "//cdn.dxomark.com/dakdata/xml/K20D/vignette3.png", + "brand": "Pentax", + "price": 770, + "pixelDepth": 14.6, + "pixels": 14645312, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1201017600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4688, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K5.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K5.txt new file mode 100644 index 0000000..150063b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K5.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K5", + "image": "//cdn.dxomark.com/dakdata/xml/K5/vignette3.png", + "brand": "Pentax", + "price": 1600, + "pixelDepth": 16.3, + "pixels": 16084992, + "ISO": [ + 80, + 51200 + ], + "maxISO": 51200, + "launchDate": 1284912000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4928, + 3264 + ], + "weight": 740, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax K7.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax K7.txt new file mode 100644 index 0000000..c771d92 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax K7.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K7", + "image": "//cdn.dxomark.com/dakdata/xml/K7/vignette3.png", + "brand": "Pentax", + "price": 1900, + "pixelDepth": 14.6, + "pixels": 14852096, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1242748800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.2, + "resolution": [ + 4736, + 3136 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax KM.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax KM.txt new file mode 100644 index 0000000..bbc0a52 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax KM.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax KM", + "image": "//cdn.dxomark.com/dakdata/xml/KM/vignette3.png", + "brand": "Pentax", + "price": 550, + "pixelDepth": 10.2, + "pixels": 10191936, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1222012800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3896, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax Kr.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax Kr.txt new file mode 100644 index 0000000..6cae9b3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax Kr.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Kr", + "image": "//cdn.dxomark.com/dakdata/xml/Kr/vignette3.png", + "brand": "Pentax", + "price": 700, + "pixelDepth": 12.4, + "pixels": 12212224, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1286553600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 4288, + 2848 + ], + "weight": 544.31, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax Kx.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax Kx.txt new file mode 100644 index 0000000..80d7c58 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax Kx.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Kx", + "image": "//cdn.dxomark.com/dakdata/xml/Kx/vignette3.png", + "brand": "Pentax", + "price": 640, + "pixelDepth": 12.4, + "pixels": 12358212, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1253116800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4.7, + "resolution": [ + 4309, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax MX-1.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax MX-1.txt new file mode 100644 index 0000000..06a616a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax MX-1.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax MX-1", + "image": "//cdn.dxomark.com/dakdata/xml/MX-1/vignette3.png", + "brand": "Pentax", + "price": 499, + "pixelDepth": 12, + "pixels": 12088160, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1357488000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4016, + 3010 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax Q.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax Q.txt new file mode 100644 index 0000000..ebd8097 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax Q.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Q", + "image": "//cdn.dxomark.com/dakdata/xml/Q/vignette3.png", + "brand": "Pentax", + "price": 799, + "pixelDepth": 12.4, + "pixels": 12000000, + "ISO": [ + 125, + 6400 + ], + "maxISO": 6400, + "launchDate": 1308672000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Pentax Q10.txt b/scr/模糊专家系统/fuzzy-expert/input/Pentax Q10.txt new file mode 100644 index 0000000..20b315f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Pentax Q10.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Q10", + "image": "//cdn.dxomark.com/dakdata/xml/Q10/vignette3.png", + "brand": "Pentax", + "price": 499, + "pixelDepth": 12.4, + "pixels": 12000000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1347292800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4000, + 3000 + ], + "weight": 200, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Phase One IQ180 Digital Back.txt b/scr/模糊专家系统/fuzzy-expert/input/Phase One IQ180 Digital Back.txt new file mode 100644 index 0000000..1a51c7d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Phase One IQ180 Digital Back.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One IQ180 Digital Back", + "image": "//cdn.dxomark.com/dakdata/xml/IQ180_Digital_Back/vignette3.png", + "brand": "Phase One", + "price": 42490, + "pixelDepth": 80, + "pixels": 81130080, + "ISO": [ + 35, + 3200 + ], + "maxISO": 3200, + "launchDate": 1295798400000, + "touchScreen": true, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.7, + "resolution": [ + 10380, + 7816 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Phase One P40 Plus.txt b/scr/模糊专家系统/fuzzy-expert/input/Phase One P40 Plus.txt new file mode 100644 index 0000000..5f1a169 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Phase One P40 Plus.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One P40 Plus", + "image": "//cdn.dxomark.com/dakdata/xml/P40_Plus/vignette3.png", + "brand": "Phase One", + "price": 19500, + "pixelDepth": 40, + "pixels": 40811392, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1240934400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 7372, + 5536 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Phase One P45 Plus.txt b/scr/模糊专家系统/fuzzy-expert/input/Phase One P45 Plus.txt new file mode 100644 index 0000000..e6d9f63 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Phase One P45 Plus.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One P45 Plus", + "image": "//cdn.dxomark.com/dakdata/xml/P45_Plus/vignette3.png", + "brand": "Phase One", + "price": 32990, + "pixelDepth": 39, + "pixels": 39447224, + "ISO": [ + 50, + 800 + ], + "maxISO": 800, + "launchDate": 1167580800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.67, + "resolution": [ + 7246, + 5444 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Phase One P65 Plus.txt b/scr/模糊专家系统/fuzzy-expert/input/Phase One P65 Plus.txt new file mode 100644 index 0000000..b6e8d1d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Phase One P65 Plus.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One P65 Plus", + "image": "//cdn.dxomark.com/dakdata/xml/P65_Plus/vignette3.png", + "brand": "Phase One", + "price": 39900, + "pixelDepth": 60.5, + "pixels": 60480288, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1215964800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1, + "resolution": [ + 8984, + 6732 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Ricoh GR II.txt b/scr/模糊专家系统/fuzzy-expert/input/Ricoh GR II.txt new file mode 100644 index 0000000..5bef26e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Ricoh GR II.txt @@ -0,0 +1,28 @@ +{ + "name": "Ricoh GR II", + "image": "//cdn.dxomark.com/dakdata/xml/GR_II/vignette3.png", + "brand": "Ricoh", + "price": 800, + "pixelDepth": 16.2, + "pixels": 16216320, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1434470400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4944, + 3280 + ], + "weight": 221, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Ricoh GR.txt b/scr/模糊专家系统/fuzzy-expert/input/Ricoh GR.txt new file mode 100644 index 0000000..e233bf2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Ricoh GR.txt @@ -0,0 +1,28 @@ +{ + "name": "Ricoh GR", + "image": "//cdn.dxomark.com/dakdata/xml/GR/vignette3.png", + "brand": "Ricoh", + "price": 799, + "pixelDepth": 16.2, + "pixels": 16216320, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1366128000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4944, + 3280 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung EX1.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung EX1.txt new file mode 100644 index 0000000..8b1c2ec --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung EX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung EX1", + "image": "//cdn.dxomark.com/dakdata/xml/EX1/vignette3.png", + "brand": "Samsung", + "price": 450, + "pixelDepth": 10, + "pixels": 10250640, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1266595200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 3714, + 2760 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung EX2F.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung EX2F.txt new file mode 100644 index 0000000..68b9b08 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung EX2F.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung EX2F", + "image": "//cdn.dxomark.com/dakdata/xml/EX2F/vignette3.png", + "brand": "Samsung", + "price": 549, + "pixelDepth": 12.4, + "pixels": 12393150, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1341244800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4070, + 3045 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung GALAXY NX.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung GALAXY NX.txt new file mode 100644 index 0000000..97ab598 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung GALAXY NX.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung GALAXY NX", + "image": "//cdn.dxomark.com/dakdata/xml/GALAXY_NX/vignette3.png", + "brand": "Samsung", + "price": 1300, + "pixelDepth": 20.3, + "pixels": 20597844, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1371657600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 8.6, + "resolution": [ + 5546, + 3714 + ], + "weight": 410, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung GX 20.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung GX 20.txt new file mode 100644 index 0000000..16a6700 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung GX 20.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung GX 20", + "image": "//cdn.dxomark.com/dakdata/xml/GX_20/vignette3.png", + "brand": "Samsung", + "price": 1060, + "pixelDepth": 14.6, + "pixels": 14645312, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1201104000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4688, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung Galaxy S6 Edge.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung Galaxy S6 Edge.txt new file mode 100644 index 0000000..161d1a0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung Galaxy S6 Edge.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung Galaxy S6 Edge", + "image": "//cdn.dxomark.com/dakdata/xml/Galaxy_S6_Edge/vignette3.png", + "brand": "Samsung", + "price": 600, + "pixelDepth": 16, + "pixels": 15984000, + "ISO": [ + 50, + 1600 + ], + "maxISO": 1600, + "launchDate": 1425139200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 5328, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 10.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 10.txt new file mode 100644 index 0000000..45f395c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 10.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 10", + "image": "//cdn.dxomark.com/dakdata/xml/NX_10/vignette3.png", + "brand": "Samsung", + "price": 610, + "pixelDepth": 14.6, + "pixels": 14033152, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1262534400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 100.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 100.txt new file mode 100644 index 0000000..1acd389 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 100.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 100", + "image": "//cdn.dxomark.com/dakdata/xml/NX_100/vignette3.png", + "brand": "Samsung", + "price": 499, + "pixelDepth": 14.6, + "pixels": 14695296, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1284393600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4704, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 1000.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 1000.txt new file mode 100644 index 0000000..ff6a62d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 1000.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 1000", + "image": "//cdn.dxomark.com/dakdata/xml/NX_1000/vignette3.png", + "brand": "Samsung", + "price": 749, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 11.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 11.txt new file mode 100644 index 0000000..0ee7094 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 11.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 11", + "image": "//cdn.dxomark.com/dakdata/xml/NX_11/vignette3.png", + "brand": "Samsung", + "price": 649, + "pixelDepth": 14.6, + "pixels": 14033152, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1293465600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 20.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 20.txt new file mode 100644 index 0000000..9dc3760 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 20.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 20", + "image": "//cdn.dxomark.com/dakdata/xml/NX_20/vignette3.png", + "brand": "Samsung", + "price": 719, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 200.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 200.txt new file mode 100644 index 0000000..7d54095 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 200.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 200", + "image": "//cdn.dxomark.com/dakdata/xml/NX_200/vignette3.png", + "brand": "Samsung", + "price": 899, + "pixelDepth": 20.3, + "pixels": 20243536, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1314806400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 5528, + 3662 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 210.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 210.txt new file mode 100644 index 0000000..e1c7cc2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 210.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 210", + "image": "//cdn.dxomark.com/dakdata/xml/NX_210/vignette3.png", + "brand": "Samsung", + "price": 899, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 30.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 30.txt new file mode 100644 index 0000000..641c6b9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 30.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 30", + "image": "//cdn.dxomark.com/dakdata/xml/NX_30/vignette3.png", + "brand": "Samsung", + "price": 1000, + "pixelDepth": 20, + "pixels": 20597844, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1388592000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 5546, + 3714 + ], + "weight": 500, + "autoFocus": 247 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 300.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 300.txt new file mode 100644 index 0000000..ad59cb7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX 300.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 300", + "image": "//cdn.dxomark.com/dakdata/xml/NX_300/vignette3.png", + "brand": "Samsung", + "price": 750, + "pixelDepth": 20.3, + "pixels": 20597844, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1357142400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 5546, + 3714 + ], + "weight": 500, + "autoFocus": 105 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX1.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX1.txt new file mode 100644 index 0000000..bb142a4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX1", + "image": "//cdn.dxomark.com/dakdata/xml/NX1/vignette3.png", + "brand": "Samsung", + "price": 1500, + "pixelDepth": 28.2, + "pixels": 28166656, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1410710400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 15, + "resolution": [ + 6496, + 4336 + ], + "weight": 550, + "autoFocus": 205 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX1100.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX1100.txt new file mode 100644 index 0000000..35ea8eb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX1100.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX1100", + "image": "//cdn.dxomark.com/dakdata/xml/NX1100/vignette3.png", + "brand": "Samsung", + "price": 600, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1365609600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 222, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX2000.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX2000.txt new file mode 100644 index 0000000..e2b09fa --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX2000.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX2000", + "image": "//cdn.dxomark.com/dakdata/xml/NX2000/vignette3.png", + "brand": "Samsung", + "price": 649, + "pixelDepth": 20.3, + "pixels": 20560704, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1367337600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5536, + 3714 + ], + "weight": 228, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Samsung NX500.txt b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX500.txt new file mode 100644 index 0000000..c4562da --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Samsung NX500.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX500", + "image": "//cdn.dxomark.com/dakdata/xml/NX500/vignette3.png", + "brand": "Samsung", + "price": 800, + "pixelDepth": 28, + "pixels": 28166656, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1423065600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 6496, + 4336 + ], + "weight": 286, + "autoFocus": 209 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A3000.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A3000.txt new file mode 100644 index 0000000..5018080 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A3000.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A3000", + "image": "//cdn.dxomark.com/dakdata/xml/A3000/vignette3.png", + "brand": "Sony", + "price": 400, + "pixelDepth": 20.1, + "pixels": 20093376, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1377532800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3.5, + "resolution": [ + 5496, + 3656 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A5000.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A5000.txt new file mode 100644 index 0000000..3cead34 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A5000.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A5000", + "image": "//cdn.dxomark.com/dakdata/xml/A5000/vignette3.png", + "brand": "Sony", + "price": 500, + "pixelDepth": 20, + "pixels": 20093376, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1389024000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 5496, + 3656 + ], + "weight": 212, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A5100.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A5100.txt new file mode 100644 index 0000000..73e0739 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A5100.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A5100", + "image": "//cdn.dxomark.com/dakdata/xml/A5100/vignette3.png", + "brand": "Sony", + "price": 550, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1408291200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 6024, + 4024 + ], + "weight": 224, + "autoFocus": 179 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A6000.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A6000.txt new file mode 100644 index 0000000..c173ffb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A6000.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A6000", + "image": "//cdn.dxomark.com/dakdata/xml/A6000/vignette3.png", + "brand": "Sony", + "price": 799, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1392134400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 179 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A6300.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A6300.txt new file mode 100644 index 0000000..74b3097 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A6300.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A6300", + "image": "//cdn.dxomark.com/dakdata/xml/A6300/vignette3.png", + "brand": "Sony", + "price": 1000, + "pixelDepth": 24.2, + "pixels": 24240576, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1454428800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6024, + 4024 + ], + "weight": 361, + "autoFocus": 425 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A6500.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A6500.txt new file mode 100644 index 0000000..94a0884 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A6500.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A6500", + "image": "//cdn.dxomark.com/dakdata/xml/A6500/vignette3.png", + "brand": "Sony", + "price": 1400, + "pixelDepth": 24.2, + "pixels": 24240576, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1475683200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 425 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A7 II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A7 II.txt new file mode 100644 index 0000000..0c9a275 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A7 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7 II", + "image": "//cdn.dxomark.com/dakdata/xml/A7_II/vignette3.png", + "brand": "Sony", + "price": 1600, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 50, + 51200 + ], + "maxISO": 51200, + "launchDate": 1416412800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 117 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A7.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A7.txt new file mode 100644 index 0000000..47824ee --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A7.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7", + "image": "//cdn.dxomark.com/dakdata/xml/A7/vignette3.png", + "brand": "Sony", + "price": 1700, + "pixelDepth": 24, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381852800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 417, + "autoFocus": 117 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A7R II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A7R II.txt new file mode 100644 index 0000000..8bc9cac --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A7R II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7R II", + "image": "//cdn.dxomark.com/dakdata/xml/A7R_II/vignette3.png", + "brand": "Sony", + "price": 3198, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1433865600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 399 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A7R III.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A7R III.txt new file mode 100644 index 0000000..cced6dd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A7R III.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7R III", + "image": "//cdn.dxomark.com/dakdata/xml/A7R_III/vignette3.png", + "brand": "Sony", + "price": 3200, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 100, + 32000 + ], + "maxISO": 32000, + "launchDate": 1508860800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 425 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A7R.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A7R.txt new file mode 100644 index 0000000..7d9f771 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A7R.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7R", + "image": "//cdn.dxomark.com/dakdata/xml/A7R/vignette3.png", + "brand": "Sony", + "price": 2300, + "pixelDepth": 36, + "pixels": 36368640, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381852800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 7392, + 4920 + ], + "weight": 408, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A7S II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A7S II.txt new file mode 100644 index 0000000..1fc9721 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A7S II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7S II", + "image": "//cdn.dxomark.com/dakdata/xml/A7S_II/vignette3.png", + "brand": "Sony", + "price": 3000, + "pixelDepth": 12.2, + "pixels": 12121088, + "ISO": [ + 50, + 409600 + ], + "maxISO": 409600, + "launchDate": 1441900800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4256, + 2848 + ], + "weight": 500, + "autoFocus": 169 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony A7S.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony A7S.txt new file mode 100644 index 0000000..3eb5432 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony A7S.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7S", + "image": "//cdn.dxomark.com/dakdata/xml/A7S/vignette3.png", + "brand": "Sony", + "price": 2499, + "pixelDepth": 12.2, + "pixels": 12212224, + "ISO": [ + 50, + 409600 + ], + "maxISO": 409600, + "launchDate": 1396713600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4288, + 2848 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 100.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 100.txt new file mode 100644 index 0000000..e6b20a0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 100.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 100", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_100/vignette3.png", + "brand": "Sony", + "price": 427, + "pixelDepth": 10, + "pixels": 10119040, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1149436800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 200.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 200.txt new file mode 100644 index 0000000..4090e5a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 200.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 200", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_200/vignette3.png", + "brand": "Sony", + "price": 611, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1199635200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 230.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 230.txt new file mode 100644 index 0000000..6ca555e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 230.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 230", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_230/vignette3.png", + "brand": "Sony", + "price": 900, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1242576000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 290.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 290.txt new file mode 100644 index 0000000..d77d1ac --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 290.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 290", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_290/vignette3.png", + "brand": "Sony", + "price": 499, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1275321600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 300.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 300.txt new file mode 100644 index 0000000..17aa9b8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 300.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 300", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_300/vignette3.png", + "brand": "Sony", + "price": 690, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201622400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 330.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 330.txt new file mode 100644 index 0000000..e908ea1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 330.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 330", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_330/vignette3.png", + "brand": "Sony", + "price": 780, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1242576000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 350.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 350.txt new file mode 100644 index 0000000..db2ae4c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 350.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 350", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_350/vignette3.png", + "brand": "Sony", + "price": 700, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201622400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 380.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 380.txt new file mode 100644 index 0000000..79ecf85 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 380.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 380", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_380/vignette3.png", + "brand": "Sony", + "price": 935, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1242576000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 390.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 390.txt new file mode 100644 index 0000000..7fbe273 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 390.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 390", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_390/vignette3.png", + "brand": "Sony", + "price": 620, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1276012800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 450.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 450.txt new file mode 100644 index 0000000..9992ef2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 450.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 450", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_450/vignette3.png", + "brand": "Sony", + "price": 680, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1262620800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 500.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 500.txt new file mode 100644 index 0000000..81a95c2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 500.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 500", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_500/vignette3.png", + "brand": "Sony", + "price": 699, + "pixelDepth": 12.3, + "pixels": 12166656, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1251302400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4272, + 2848 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 550.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 550.txt new file mode 100644 index 0000000..41f77bc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 550.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 550", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_550/vignette3.png", + "brand": "Sony", + "price": 899, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1251302400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 560.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 560.txt new file mode 100644 index 0000000..160d1fd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 560.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 560", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_560/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 580.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 580.txt new file mode 100644 index 0000000..f46c54c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 580.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 580", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_580/vignette3.png", + "brand": "Sony", + "price": 800, + "pixelDepth": 16.2, + "pixels": 16032768, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4912, + 3264 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 700.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 700.txt new file mode 100644 index 0000000..905cfb1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 700.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 700", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_700/vignette3.png", + "brand": "Sony", + "price": 1300, + "pixelDepth": 12.2, + "pixels": 12246528, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1189008000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4288, + 2856 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 850.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 850.txt new file mode 100644 index 0000000..815edfd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 850.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 850", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_850/vignette3.png", + "brand": "Sony", + "price": 2000, + "pixelDepth": 24.6, + "pixels": 24611840, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1251302400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 6080, + 4048 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 900.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 900.txt new file mode 100644 index 0000000..543f34f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Alpha 900.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 900", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_900/vignette3.png", + "brand": "Sony", + "price": 3000, + "pixelDepth": 24.6, + "pixels": 24611840, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1220889600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6080, + 4048 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC RX100 III.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC RX100 III.txt new file mode 100644 index 0000000..150332d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC RX100 III.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC RX100 III", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC_RX100_III/vignette3.png", + "brand": "Sony", + "price": 800, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1400169600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3672 + ], + "weight": 263, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1.txt new file mode 100644 index 0000000..c4beeef --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX1", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1/vignette3.png", + "brand": "Sony", + "price": 2800, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347379200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 453, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX10 II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX10 II.txt new file mode 100644 index 0000000..9012d30 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX10 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX10 II", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10_II/vignette3.png", + "brand": "Sony", + "price": 1298, + "pixelDepth": 20.2, + "pixels": 20181312, + "ISO": [ + 64, + 25600 + ], + "maxISO": 25600, + "launchDate": 1433865600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5496, + 3672 + ], + "weight": 770, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX10.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX10.txt new file mode 100644 index 0000000..310e6eb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX10.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX10", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10/vignette3.png", + "brand": "Sony", + "price": 1300, + "pixelDepth": 20, + "pixels": 20181312, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1381852800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3672 + ], + "weight": 756, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 II.txt new file mode 100644 index 0000000..4091730 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100 II", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_II/vignette3.png", + "brand": "Sony", + "price": 750, + "pixelDepth": 20.2, + "pixels": 20181312, + "ISO": [ + 160, + 25600 + ], + "maxISO": 25600, + "launchDate": 1372262400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3672 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 IV.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 IV.txt new file mode 100644 index 0000000..714baaa --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 IV.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100 IV", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_IV/vignette3.png", + "brand": "Sony", + "price": 948, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1433865600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 16, + "resolution": [ + 5496, + 3672 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 V.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 V.txt new file mode 100644 index 0000000..110a18b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100 V.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100 V", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_V/vignette3.png", + "brand": "Sony", + "price": 1000, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1475683200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 24, + "resolution": [ + 5496, + 3672 + ], + "weight": 272, + "autoFocus": 315 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100.txt new file mode 100644 index 0000000..4af2816 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX100.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 20.2, + "pixels": 20210688, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1338912000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 5504, + 3672 + ], + "weight": 213, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1R II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1R II.txt new file mode 100644 index 0000000..cca6c16 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1R II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX1R II", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R_II/vignette3.png", + "brand": "Sony", + "price": 3300, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1444752000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 399 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1R.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1R.txt new file mode 100644 index 0000000..245c0ff --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cyber-shot DSC-RX1R.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX1R", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R/vignette3.png", + "brand": "Sony", + "price": 2800, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1372262400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony Cybershot DSC-RX10 III.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony Cybershot DSC-RX10 III.txt new file mode 100644 index 0000000..51e4ce5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony Cybershot DSC-RX10 III.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cybershot DSC-RX10 III", + "image": "//cdn.dxomark.com/dakdata/xml/Cybershot_DSC-RX10_III/vignette3.png", + "brand": "Sony", + "price": 1500, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 64, + 128000 + ], + "maxISO": 128000, + "launchDate": 1459180800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5496, + 3672 + ], + "weight": 1051, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-3N.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-3N.txt new file mode 100644 index 0000000..ae16335 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-3N.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-3N", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-3N/vignette3.png", + "brand": "Sony", + "price": 670, + "pixelDepth": 16, + "pixels": 16144128, + "ISO": [ + 200, + 16000 + ], + "maxISO": 16000, + "launchDate": 1361289600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4928, + 3276 + ], + "weight": 210, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5N.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5N.txt new file mode 100644 index 0000000..f383557 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5N.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-5N", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5N/vignette3.png", + "brand": "Sony", + "price": 860, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1314115200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4928, + 3276 + ], + "weight": 269, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5R.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5R.txt new file mode 100644 index 0000000..08389c6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5R.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-5R", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5R/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1346169600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4928, + 3276 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5T.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5T.txt new file mode 100644 index 0000000..df7f08f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-5T.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-5T", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5T/vignette3.png", + "brand": "Sony", + "price": 549, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1377532800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4928, + 3276 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-6.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-6.txt new file mode 100644 index 0000000..b1aa2f6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-6.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-6", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-6/vignette3.png", + "brand": "Sony", + "price": 848, + "pixelDepth": 16.1, + "pixels": 16032768, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347379200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4912, + 3264 + ], + "weight": 287, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-7.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-7.txt new file mode 100644 index 0000000..33d1881 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-7.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-7", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-7/vignette3.png", + "brand": "Sony", + "price": 1720, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 6024, + 4024 + ], + "weight": 400, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-C3.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-C3.txt new file mode 100644 index 0000000..3053762 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-C3.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-C3", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-C3/vignette3.png", + "brand": "Sony", + "price": 770, + "pixelDepth": 16.2, + "pixels": 16163840, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1307462400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 2.5, + "resolution": [ + 4928, + 3280 + ], + "weight": 225, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-F3.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-F3.txt new file mode 100644 index 0000000..4239f97 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX-F3.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-F3", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-F3/vignette3.png", + "brand": "Sony", + "price": 600, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1337184000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4928, + 3276 + ], + "weight": 255, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX3.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX3.txt new file mode 100644 index 0000000..1447610 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX3.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX3", + "image": "//cdn.dxomark.com/dakdata/xml/NEX3/vignette3.png", + "brand": "Sony", + "price": 550, + "pixelDepth": 14.2, + "pixels": 14155776, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1272643200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4608, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony NEX5.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX5.txt new file mode 100644 index 0000000..49f3cef --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony NEX5.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX5", + "image": "//cdn.dxomark.com/dakdata/xml/NEX5/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 14.16, + "pixels": 14155776, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1272643200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4608, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 33.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 33.txt new file mode 100644 index 0000000..277c805 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 33.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 33", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_33/vignette3.png", + "brand": "Sony", + "price": 599, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 35.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 35.txt new file mode 100644 index 0000000..8b6466f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 35.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 35", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_35/vignette3.png", + "brand": "Sony", + "price": 600, + "pixelDepth": 16, + "pixels": 16032768, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1307462400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4912, + 3264 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 37.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 37.txt new file mode 100644 index 0000000..cc565ae --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 37.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 37", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_37/vignette3.png", + "brand": "Sony", + "price": 500, + "pixelDepth": 16, + "pixels": 16144128, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1337184000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4928, + 3276 + ], + "weight": 448, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 55.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 55.txt new file mode 100644 index 0000000..7177688 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 55.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 55", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_55/vignette3.png", + "brand": "Sony", + "price": 750, + "pixelDepth": 16.2, + "pixels": 16032768, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4912, + 3264 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 57.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 57.txt new file mode 100644 index 0000000..188300f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 57.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 57", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_57/vignette3.png", + "brand": "Sony", + "price": 700, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1331481600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4928, + 3276 + ], + "weight": 618, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 58.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 58.txt new file mode 100644 index 0000000..2d154c9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 58.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 58", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_58/vignette3.png", + "brand": "Sony", + "price": 735, + "pixelDepth": 20.1, + "pixels": 20093376, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1361289600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5496, + 3656 + ], + "weight": 492, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 65.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 65.txt new file mode 100644 index 0000000..5f14e9a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 65.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 65", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_65/vignette3.png", + "brand": "Sony", + "price": 1290, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 6024, + 4024 + ], + "weight": 622, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 68.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 68.txt new file mode 100644 index 0000000..733986a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 68.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 68", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_68/vignette3.png", + "brand": "Sony", + "price": 600, + "pixelDepth": 24, + "pixels": 24192384, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1446652800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 6024, + 4016 + ], + "weight": 500, + "autoFocus": 79 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 77 II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 77 II.txt new file mode 100644 index 0000000..80fa00a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 77 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 77 II", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77_II/vignette3.png", + "brand": "Sony", + "price": 1200, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1398873600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 6024, + 4024 + ], + "weight": 647, + "autoFocus": 79 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 77.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 77.txt new file mode 100644 index 0000000..a802f52 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 77.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 77", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77/vignette3.png", + "brand": "Sony", + "price": 1399, + "pixelDepth": 24.3, + "pixels": 24337152, + "ISO": [ + 50, + 16000 + ], + "maxISO": 16000, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 6048, + 4024 + ], + "weight": 653, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 99 II.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 99 II.txt new file mode 100644 index 0000000..b8093ea --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 99 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 99 II", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99_II/vignette3.png", + "brand": "Sony", + "price": 3200, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 399 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 99.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 99.txt new file mode 100644 index 0000000..07e72b5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony SLT Alpha 99.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 99", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99/vignette3.png", + "brand": "Sony", + "price": 2800, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347379200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/Sony a9.txt b/scr/模糊专家系统/fuzzy-expert/input/Sony a9.txt new file mode 100644 index 0000000..dbac5e3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/Sony a9.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony a9", + "image": "//cdn.dxomark.com/dakdata/xml/a9/vignette3.png", + "brand": "Sony", + "price": 4500, + "pixelDepth": 24.2, + "pixels": 24240576, + "ISO": [ + 50, + 204800 + ], + "maxISO": 204800, + "launchDate": 1492531200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 693 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/input/YUNEEC Breeze 4K.txt b/scr/模糊专家系统/fuzzy-expert/input/YUNEEC Breeze 4K.txt new file mode 100644 index 0000000..cc42cef --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/input/YUNEEC Breeze 4K.txt @@ -0,0 +1,28 @@ +{ + "name": "YUNEEC Breeze 4K", + "image": "//cdn.dxomark.com/dakdata/xml/Breeze_4K/vignette3.png", + "brand": "YUNEEC", + "price": 380, + "pixelDepth": 13, + "pixels": 12979200, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1472486400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4160, + 3120 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/lib/fastjson-1.2.44.jar b/scr/模糊专家系统/fuzzy-expert/lib/fastjson-1.2.44.jar new file mode 100644 index 0000000..efe859f Binary files /dev/null and b/scr/模糊专家系统/fuzzy-expert/lib/fastjson-1.2.44.jar differ diff --git a/scr/模糊专家系统/fuzzy-expert/lib/jFuzzyLogic.jar b/scr/模糊专家系统/fuzzy-expert/lib/jFuzzyLogic.jar new file mode 100644 index 0000000..14c404d Binary files /dev/null and b/scr/模糊专家系统/fuzzy-expert/lib/jFuzzyLogic.jar differ diff --git a/scr/模糊专家系统/fuzzy-expert/merged.json b/scr/模糊专家系统/fuzzy-expert/merged.json new file mode 100644 index 0000000..be51cc0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/merged.json @@ -0,0 +1,14282 @@ +[ + { + "ISO": [ + 100, + 409600 + ], + "assessment": { + "astronomy": 0.7921614914185363, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.7856874321177771, + "portrait": 0.7576045965370796, + "scenery": 0.8045375741867704, + "sports": 0.9291960813256774, + "travel": 0.5369388594944149 + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 16, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/_EOS-1D_X_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1454342400000, + "maxISO": 409600, + "name": "Canon EOS-1D X Mark II", + "pixelDepth": 20, + "pixels": 20170320, + "price": 6000, + "resolution": [ + 5496, + 3670 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 1340 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07494712212536904, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7810649350649359, + "newModel": 0.36355583088798077, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1000D/vignette3.png", + "isMetal": false, + "launchDate": 1213027200000, + "maxISO": 1600, + "name": "Canon EOS 1000D", + "pixelDepth": 10, + "pixels": 10163412, + "price": 540, + "resolution": [ + 3906, + 2602 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5755769565758335, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000004, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.08141121495327112, + "travel": 0.6220838836751243 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_100D/vignette3.png", + "isMetal": true, + "launchDate": 1363795200000, + "maxISO": 25600, + "name": "Canon EOS 100D", + "pixelDepth": 18, + "pixels": 18103008, + "price": 650, + "resolution": [ + 5208, + 3476 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 370 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07831154821558377, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7910602920010132, + "newModel": 0.20206199259585128, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_10D/vignette3.png", + "isMetal": false, + "launchDate": 1046275200000, + "maxISO": 3200, + "name": "Canon EOS 10D", + "pixelDepth": 6, + "pixels": 6518336, + "price": 347, + "resolution": [ + 3152, + 2068 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5024719019858837, + "lowPrice": 0.7775606210893378, + "newModel": 0.4975339668211982, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08402243812167474, + "travel": 0.2107460535346639 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1100D/vignette3.png", + "isMetal": false, + "launchDate": 1297008000000, + "maxISO": 6400, + "name": "Canon EOS 1100D", + "pixelDepth": 12, + "pixels": 12507648, + "price": 599, + "resolution": [ + 4352, + 2874 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 495 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5310506986743073, + "lowPrice": 0.7833333333333332, + "newModel": 0.4999999999999988, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08402243812167474, + "travel": 0.5281263875886049 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1200D/vignette3.png", + "isMetal": false, + "launchDate": 1392134400000, + "maxISO": 6400, + "name": "Canon EOS 1200D", + "pixelDepth": 18, + "pixels": 18024930, + "price": 500, + "resolution": [ + 5202, + 3465 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 435 + }, + { + "ISO": [ + 50, + 3200 + ], + "assessment": { + "astronomy": 0.08088718423770246, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.21219561611464086, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 8.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II_N/vignette3.png", + "isMetal": false, + "launchDate": 1124640000000, + "maxISO": 3200, + "name": "Canon EOS 1D Mark II N", + "pixelDepth": 8, + "pixels": 8486560, + "price": 5986, + "resolution": [ + 3596, + 2360 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 3200 + ], + "assessment": { + "astronomy": 0.08088718423770246, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.20503698563063325, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 8.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II/vignette3.png", + "isMetal": false, + "launchDate": 1075305600000, + "maxISO": 3200, + "name": "Canon EOS 1D Mark II", + "pixelDepth": 8, + "pixels": 8486560, + "price": 1700, + "resolution": [ + 3596, + 2360 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 6400 + ], + "assessment": { + "astronomy": 0.09342324225505241, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2209083025062537, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_III/vignette3.png", + "isMetal": false, + "launchDate": 1172073600000, + "maxISO": 6400, + "name": "Canon EOS 1D Mark III", + "pixelDepth": 10, + "pixels": 10446048, + "price": 4050, + "resolution": [ + 3984, + 2622 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 102400 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.4623645236971117, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.07402016607354676, + "travel": 0.5369388594944149 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_IV/vignette3.png", + "isMetal": false, + "launchDate": 1255968000000, + "maxISO": 102400, + "name": "Canon EOS 1D Mark IV", + "pixelDepth": 16, + "pixels": 15980544, + "price": 5840, + "resolution": [ + 4896, + 3264 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1180 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.20771470038980863, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_II/vignette3.png", + "isMetal": false, + "launchDate": 1095696000000, + "maxISO": 3200, + "name": "Canon EOS 1Ds Mark II", + "pixelDepth": 16, + "pixels": 17101584, + "price": 6950, + "resolution": [ + 5108, + 3348 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 3200 + ], + "assessment": { + "astronomy": 0.4883569096025662, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22404805898254374, + "portrait": 0.7600269270691173, + "scenery": 0.9064384181476092, + "sports": 0.2835686488710699, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_III/vignette3.png", + "isMetal": false, + "launchDate": 1187539200000, + "maxISO": 3200, + "name": "Canon EOS 1Ds Mark III", + "pixelDepth": 21, + "pixels": 21557088, + "price": 7100, + "resolution": [ + 5712, + 3774 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1233 + ], + "assessment": { + "astronomy": 0.07206054514320881, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.20107756449438624, + "portrait": 0.2280106572609703, + "scenery": 0.2280106572609703, + "sports": 0.07875190169689873, + "travel": 0.16167332382310975 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds/vignette3.png", + "isMetal": false, + "launchDate": 1032796800000, + "maxISO": 1233, + "name": "Canon EOS 1Ds", + "pixelDepth": 11, + "pixels": 11094876, + "price": 2700, + "resolution": [ + 4082, + 2718 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 1265 + }, + { + "ISO": [ + 50, + 204800 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 14, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Dx/vignette3.png", + "isMetal": true, + "launchDate": 1318867200000, + "maxISO": 204800, + "name": "Canon EOS 1Dx", + "pixelDepth": 18, + "pixels": 18378666, + "price": 6800, + "resolution": [ + 5202, + 3533 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.7855811307617426, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.522251079660429, + "lowPrice": 0.7804838709677436, + "newModel": 0.799981870734887, + "portrait": 0.7715852026174138, + "scenery": 0.8332393753972969, + "sports": 0.5279560357326973, + "travel": 0.5211232696298297 + }, + "autoFocus": 9, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_200D/vignette3.png", + "isMetal": false, + "launchDate": 1498665600000, + "maxISO": 51200, + "name": "Canon EOS 200D", + "pixelDepth": 24, + "pixels": 25504128, + "price": 550, + "resolution": [ + 6288, + 4056 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 453 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07535797072568724, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.2073144372356606, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_20D/vignette3.png", + "isMetal": false, + "launchDate": 1092844800000, + "maxISO": 1600, + "name": "Canon EOS 20D", + "pixelDepth": 8, + "pixels": 8486560, + "price": 700, + "resolution": [ + 3596, + 2360 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.0737679018883037, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7920705751169291, + "newModel": 0.20346839241623776, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_300D/vignette3.png", + "isMetal": false, + "launchDate": 1061308800000, + "maxISO": 1600, + "name": "Canon EOS 300D", + "pixelDepth": 6, + "pixels": 6518336, + "price": 324, + "resolution": [ + 3152, + 2068 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08088718423770246, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5540553740977198, + "newModel": 0.2149295664334448, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_30D/vignette3.png", + "isMetal": false, + "launchDate": 1140451200000, + "maxISO": 3200, + "name": "Canon EOS 30D", + "pixelDepth": 8, + "pixels": 8486560, + "price": 738, + "resolution": [ + 3596, + 2360 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07521263147419484, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7798974358974388, + "newModel": 0.20961724884918687, + "portrait": 0.21666666666666654, + "scenery": 0.21666666666666654, + "sports": 0.0784042080851938, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 2.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_350D/vignette3.png", + "isMetal": false, + "launchDate": 1108569600000, + "maxISO": 1600, + "name": "Canon EOS 350D", + "pixelDepth": 8, + "pixels": 8185248, + "price": 560, + "resolution": [ + 3516, + 2328 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07471614206027041, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7822105263157916, + "newModel": 0.2178557811179551, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_400D/vignette3.png", + "isMetal": false, + "launchDate": 1156348800000, + "maxISO": 1600, + "name": "Canon EOS 400D", + "pixelDepth": 10, + "pixels": 10351656, + "price": 520, + "resolution": [ + 3948, + 2622 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08147334838865895, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.22404805898254374, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_40D/vignette3.png", + "isMetal": false, + "launchDate": 1187539200000, + "maxISO": 3200, + "name": "Canon EOS 40D", + "pixelDepth": 10, + "pixels": 10341168, + "price": 899, + "resolution": [ + 3944, + 2622 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7793057324840699, + "newModel": 0.2470739519371539, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_450D/vignette3.png", + "isMetal": false, + "launchDate": 1201104000000, + "maxISO": 1600, + "name": "Canon EOS 450D", + "pixelDepth": 12, + "pixels": 12401312, + "price": 570, + "resolution": [ + 4312, + 2876 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4385583965455643, + "portrait": 0.2453703030803535, + "scenery": 0.2453703030803535, + "sports": 0.0785942026656306, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_500D/vignette3.png", + "isMetal": false, + "launchDate": 1237910400000, + "maxISO": 12800, + "name": "Canon EOS 500D", + "pixelDepth": 15, + "pixels": 15039810, + "price": 1040, + "resolution": [ + 4770, + 3153 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.3936722085160627, + "portrait": 0.2453703030803535, + "scenery": 0.2453703030803535, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_50D/vignette3.png", + "isMetal": false, + "launchDate": 1219680000000, + "maxISO": 12800, + "name": "Canon EOS 50D", + "pixelDepth": 15, + "pixels": 15154290, + "price": 1300, + "resolution": [ + 4770, + 3177 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.47174036842704004, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07724829122938497, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D_pre_production/vignette3.png", + "isMetal": false, + "launchDate": 1265558400000, + "maxISO": 12800, + "name": "Canon EOS 550D pre production", + "pixelDepth": 18, + "pixels": 18789504, + "price": 900, + "resolution": [ + 5344, + 3516 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.47313961212919964, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08410422601060216, + "travel": 0.4999999999999997 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D/vignette3.png", + "isMetal": false, + "launchDate": 1267113600000, + "maxISO": 12800, + "name": "Canon EOS 550D", + "pixelDepth": 18, + "pixels": 17915904, + "price": 1000, + "resolution": [ + 5184, + 3456 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 25600 + ], + "assessment": { + "astronomy": 0.7676254200178484, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.4864719601124947, + "lowPrice": 0.1999999999999999, + "newModel": 0.40030730231223327, + "portrait": 0.7600174525443824, + "scenery": 0.8039867908150126, + "sports": 0.2751677762170413, + "travel": 0.4922776224805059 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_II/vignette3.png", + "isMetal": false, + "launchDate": 1221580800000, + "maxISO": 25600, + "name": "Canon EOS 5D Mark II", + "pixelDepth": 21, + "pixels": 21144402, + "price": 2199, + "resolution": [ + 5634, + 3753 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 810 + }, + { + "ISO": [ + 50, + 102400 + ], + "assessment": { + "astronomy": 0.7852640332162286, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.374491059147178, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.764356809725556, + "scenery": 0.8239906226360154, + "sports": 0.8582892526486077, + "travel": 0.441462135252791 + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_III/vignette3.png", + "isMetal": false, + "launchDate": 1330617600000, + "maxISO": 102400, + "name": "Canon EOS 5D Mark III", + "pixelDepth": 22, + "pixels": 23384000, + "price": 3499, + "resolution": [ + 5920, + 3950 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 910 + }, + { + "ISO": [ + 50, + 102400 + ], + "assessment": { + "astronomy": 0.7932706515974663, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000001, + "lowPrice": 0.1999999999999999, + "newModel": 0.7938960385640131, + "portrait": 0.7893076140630775, + "scenery": 0.8318405024316109, + "sports": 0.8349469265766305, + "travel": 0.6000000000000001 + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_IV/vignette3.png", + "isMetal": true, + "launchDate": 1472054400000, + "maxISO": 102400, + "name": "Canon EOS 5D Mark IV", + "pixelDepth": 30, + "pixels": 31262720, + "price": 3500, + "resolution": [ + 6880, + 4544 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 800 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.21219561611464086, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D/vignette3.png", + "isMetal": false, + "launchDate": 1124640000000, + "maxISO": 3200, + "name": "Canon EOS 5D", + "pixelDepth": 12, + "pixels": 13222104, + "price": 2000, + "resolution": [ + 4476, + 2954 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 12800 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.44498549799032006, + "lowPrice": 0.1999999999999999, + "newModel": 0.5815100981022692, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.8378640915593707, + "travel": 0.46951837792796974 + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS_R/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 5DS R", + "pixelDepth": 50, + "pixels": 51158016, + "price": 3900, + "resolution": [ + 8736, + 5856 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 845 + }, + { + "ISO": [ + 50, + 12800 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.44498549799032006, + "lowPrice": 0.1999999999999999, + "newModel": 0.5815100981022692, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.8378640915593707, + "travel": 0.46951837792796974 + }, + "autoFocus": 61, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 5DS", + "pixelDepth": 50, + "pixels": 51158016, + "price": 3700, + "resolution": [ + 8736, + 5856 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 845 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5317947310647638, + "newModel": 0.4975339668211982, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08410422601060216, + "travel": 0.1999999999999999 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 3.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_600D/vignette3.png", + "isMetal": false, + "launchDate": 1297008000000, + "maxISO": 12800, + "name": "Canon EOS 600D", + "pixelDepth": 18, + "pixels": 18789504, + "price": 850, + "resolution": [ + 5344, + 3516 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 515 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.48616335099682817, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_60D/vignette3.png", + "isMetal": false, + "launchDate": 1282752000000, + "maxISO": 12800, + "name": "Canon EOS 60D", + "pixelDepth": 18, + "pixels": 17992016, + "price": 1199, + "resolution": [ + 5194, + 3464 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_650D/vignette3.png", + "isMetal": false, + "launchDate": 1339084800000, + "maxISO": 25600, + "name": "Canon EOS 650D", + "pixelDepth": 18, + "pixels": 18627840, + "price": 899, + "resolution": [ + 5280, + 3528 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 575 + }, + { + "ISO": [ + 50, + 102400 + ], + "assessment": { + "astronomy": 0.7874213959052214, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.799981870734887, + "portrait": 0.777490682209416, + "scenery": 0.8238056996089119, + "sports": 0.8367909995994819, + "travel": 0.6000000000000001 + }, + "autoFocus": 45, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 6.5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1498665600000, + "maxISO": 102400, + "name": "Canon EOS 6D Mark II", + "pixelDepth": 26, + "pixels": 26966016, + "price": 2000, + "resolution": [ + 6384, + 4224 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 685 + }, + { + "ISO": [ + 50, + 102400 + ], + "assessment": { + "astronomy": 0.7907297221479909, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7568273106758033, + "scenery": 0.8053950618745999, + "sports": 0.2569497272503779, + "travel": 0.6000000000000001 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 102400, + "name": "Canon EOS 6D", + "pixelDepth": 20, + "pixels": 20646144, + "price": 2099, + "resolution": [ + 5568, + 3708 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.5000000000000004, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_700D/vignette3.png", + "isMetal": true, + "launchDate": 1363795200000, + "maxISO": 25600, + "name": "Canon EOS 700D", + "pixelDepth": 18, + "pixels": 18103008, + "price": 750, + "resolution": [ + 5208, + 3476 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7687723241092553, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000012, + "portrait": 0.7576045965370796, + "scenery": 0.7917503569121463, + "sports": 0.7506182928923596, + "travel": 0.4999999999999997 + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_70D/vignette3.png", + "isMetal": false, + "launchDate": 1372694400000, + "maxISO": 25600, + "name": "Canon EOS 70D", + "pixelDepth": 20, + "pixels": 20170320, + "price": 1199, + "resolution": [ + 5496, + 3670 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7700512821846767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.5815100981022692, + "portrait": 0.7700512821846767, + "scenery": 0.9131164182807887, + "sports": 0.7652313700035975, + "travel": 0.4999999999999997 + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_750D/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 750D", + "pixelDepth": 24, + "pixels": 24228528, + "price": 750, + "resolution": [ + 6024, + 4022 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 510 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7700512821846767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5317947310647638, + "newModel": 0.5815100981022692, + "portrait": 0.7700512821846767, + "scenery": 0.9131164182807887, + "sports": 0.7652313700035975, + "travel": 0.4999999999999997 + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_760D/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 12800, + "name": "Canon EOS 760D", + "pixelDepth": 24, + "pixels": 24228528, + "price": 850, + "resolution": [ + 6024, + 4022 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 510 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.7921614914185363, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5356718768052593, + "portrait": 0.7576045965370796, + "scenery": 0.8045375741867704, + "sports": 0.9255475967480529, + "travel": 0.6000000000000001 + }, + "autoFocus": 65, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 51200, + "name": "Canon EOS 7D Mark II", + "pixelDepth": 20, + "pixels": 20170320, + "price": 1800, + "resolution": [ + 5496, + 3670 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.4738502673796765, + "lowPrice": 0.1999999999999999, + "newModel": 0.4576839877747468, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.19255398624790912 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D/vignette3.png", + "isMetal": false, + "launchDate": 1251734400000, + "maxISO": 12800, + "name": "Canon EOS 7D", + "pixelDepth": 18, + "pixels": 18840400, + "price": 1974, + "resolution": [ + 5360, + 3515 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 820 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7864120703458854, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8415008769890358, + "travel": 0.4999999999999997 + }, + "autoFocus": 45, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_80D/vignette3.png", + "isMetal": true, + "launchDate": 1455724800000, + "maxISO": 25600, + "name": "Canon EOS 80D", + "pixelDepth": 24, + "pixels": 25504128, + "price": 1200, + "resolution": [ + 6288, + 4056 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 650 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9112032288698959, + "travel": 0.4999999999999997 + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M/vignette3.png", + "isMetal": true, + "launchDate": 1342972800000, + "maxISO": 25600, + "name": "Canon EOS M", + "pixelDepth": 18, + "pixels": 18627840, + "price": 799, + "resolution": [ + 5280, + 3528 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.715715321860331, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9329098228663452, + "travel": 0.4999999999999997 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M10/vignette3.png", + "isMetal": true, + "launchDate": 1444665600000, + "maxISO": 25600, + "name": "Canon EOS M10", + "pixelDepth": 18, + "pixels": 18103008, + "price": 600, + "resolution": [ + 5208, + 3476 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7815251864786922, + "lowPrice": 0.7774999999999945, + "newModel": 0.8000000000000005, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8439917435445609, + "travel": 0.5742906721158703 + }, + "autoFocus": 49, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 6.1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M100/vignette3.png", + "isMetal": true, + "launchDate": 1503936000000, + "maxISO": 25600, + "name": "Canon EOS M100", + "pixelDepth": 24, + "pixels": 25504128, + "price": 600, + "resolution": [ + 6288, + 4056 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 266 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000054, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9112032288698959, + "travel": 0.4999999999999997 + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M2/vignette3.png", + "isMetal": true, + "launchDate": 1386000000000, + "maxISO": 25600, + "name": "Canon EOS M2", + "pixelDepth": 18, + "pixels": 18103008, + "price": 650, + "resolution": [ + 5208, + 3476 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712751483066825, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.6673272877164017, + "lowPrice": 0.5281263875886054, + "newModel": 0.5815100981022692, + "portrait": 0.7700512821846767, + "scenery": 0.8294286039328348, + "sports": 0.8511560152480457, + "travel": 0.562683137739345 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M3/vignette3.png", + "isMetal": true, + "launchDate": 1423152000000, + "maxISO": 25600, + "name": "Canon EOS M3", + "pixelDepth": 24, + "pixels": 24228528, + "price": 870, + "resolution": [ + 6024, + 4022 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 320 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5662932330827082, + "lowPrice": 0.5048829182192582, + "newModel": 0.7945859514570968, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8439917435445609, + "travel": 0.5465891677675032 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M5/vignette3.png", + "isMetal": true, + "launchDate": 1473868800000, + "maxISO": 25600, + "name": "Canon EOS M5", + "pixelDepth": 24, + "pixels": 25504128, + "price": 980, + "resolution": [ + 6288, + 4056 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 380 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.772197190092996, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.611062516095502, + "lowPrice": 0.5438923933209653, + "newModel": 0.7985232099799165, + "portrait": 0.7715852026174138, + "scenery": 0.8331957820239151, + "sports": 0.8439917435445609, + "travel": 0.5569471811079159 + }, + "autoFocus": 49, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M6/vignette3.png", + "isMetal": true, + "launchDate": 1487088000000, + "maxISO": 25600, + "name": "Canon EOS M6", + "pixelDepth": 24, + "pixels": 25504128, + "price": 780, + "resolution": [ + 6288, + 4056 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 343 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.4999999999999988, + "portrait": 0.23642481756120523, + "scenery": 0.23642481756120523, + "sports": 0.9112032288698959, + "travel": 0.4999999999999997 + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1_X_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1392134400000, + "maxISO": 12800, + "name": "Canon PowerShot G1 X Mark II", + "pixelDepth": 13, + "pixels": 14740832, + "price": 800, + "resolution": [ + 4432, + 3326 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 516 + }, + { + "ISO": [ + 80, + 1600 + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7851328804229709, + "newModel": 0.40030730231223327, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07282837839071495, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 1.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G10/vignette3.png", + "isMetal": false, + "launchDate": 1221580800000, + "maxISO": 1600, + "name": "Canon Powershot G10", + "pixelDepth": 14, + "pixels": 14999040, + "price": 467, + "resolution": [ + 4480, + 3348 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 3200 + ], + "assessment": { + "astronomy": 0.0814163743518294, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7820392337700567, + "newModel": 0.45637117003652616, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07209373243864912, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 1.1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G11/vignette3.png", + "isMetal": false, + "launchDate": 1250611200000, + "maxISO": 3200, + "name": "Canon Powershot G11", + "pixelDepth": 10, + "pixels": 10423296, + "price": 523, + "resolution": [ + 3744, + 2784 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 3200 + ], + "assessment": { + "astronomy": 0.08161559297498973, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.4874675526148574, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07567000940144156, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G12/vignette3.png", + "isMetal": false, + "launchDate": 1284393600000, + "maxISO": 3200, + "name": "Canon PowerShot G12", + "pixelDepth": 10, + "pixels": 9980928, + "price": 499, + "resolution": [ + 3648, + 2736 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7098110041944159, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.5650224805016064 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G15/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Canon Powershot G15", + "pixelDepth": 12, + "pixels": 12338304, + "price": 599, + "resolution": [ + 4048, + 3048 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 310 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.780541944127943, + "newModel": 0.49999999999999895, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5990232131948705, + "travel": 0.4999999999999997 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 12.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G16/vignette3.png", + "isMetal": true, + "launchDate": 1377100800000, + "maxISO": 12800, + "name": "Canon PowerShot G16", + "pixelDepth": 12, + "pixels": 12835904, + "price": 549, + "resolution": [ + 4192, + 3062 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5039297217996406, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.5039235324633394 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1X/vignette3.png", + "isMetal": true, + "launchDate": 1326038400000, + "maxISO": 12800, + "name": "Canon PowerShot G1X", + "pixelDepth": 14, + "pixels": 15133536, + "price": 799, + "resolution": [ + 4496, + 3366 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 492 + }, + { + "ISO": [ + 125, + 25600 + ], + "assessment": { + "astronomy": 0.7682225986960214, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.637258068873028, + "portrait": 0.7570392348728391, + "scenery": 0.7935462995979276, + "sports": 0.8781934932810521, + "travel": 0.4999999999999997 + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G3_X/vignette3.png", + "isMetal": true, + "launchDate": 1434556800000, + "maxISO": 25600, + "name": "Canon PowerShot G3 X", + "pixelDepth": 20, + "pixels": 20444448, + "price": 1000, + "resolution": [ + 5536, + 3693 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 690 + }, + { + "ISO": [ + 125, + 12800 + ], + "assessment": { + "astronomy": 0.7570392348728391, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.715715321860331, + "portrait": 0.7570392348728391, + "scenery": 0.9044489399606346, + "sports": 0.8781934932810521, + "travel": 0.4999999999999997 + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G5_X/vignette3.png", + "isMetal": true, + "launchDate": 1444665600000, + "maxISO": 12800, + "name": "Canon PowerShot G5 X", + "pixelDepth": 20, + "pixels": 20444448, + "price": 800, + "resolution": [ + 5536, + 3693 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 125, + 12800 + ], + "assessment": { + "astronomy": 0.7567417726514891, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.780014451840753, + "lowPrice": 0.5688059701492514, + "newModel": 0.5356718768052593, + "portrait": 0.7567417726514891, + "scenery": 0.9042489076836084, + "sports": 0.8572481358355573, + "travel": 0.5717193397980831 + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G7_X/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 12800, + "name": "Canon PowerShot G7 X", + "pixelDepth": 20, + "pixels": 20894720, + "price": 700, + "resolution": [ + 5632, + 3710 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 279 + }, + { + "ISO": [ + 125, + 12800 + ], + "assessment": { + "astronomy": 0.7570392348728391, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7902854577186353, + "lowPrice": 0.7816405228758168, + "newModel": 0.7976517087388207, + "portrait": 0.7570392348728391, + "scenery": 0.9044489399606346, + "sports": 0.8781934932810521, + "travel": 0.5878194349220124 + }, + "autoFocus": 31, + "bluetooth": true, + "brand": "Canon", + "flash": false, + "frameRate": 8.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1483459200000, + "maxISO": 12800, + "name": "Canon PowerShot G9 X Mark II", + "pixelDepth": 20, + "pixels": 20444448, + "price": 530, + "resolution": [ + 5536, + 3693 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 182 + }, + { + "ISO": [ + 125, + 12800 + ], + "assessment": { + "astronomy": 0.7570392348728391, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.7166083253096587, + "portrait": 0.7570392348728391, + "scenery": 0.9044489399606346, + "sports": 0.8781934932810521, + "travel": 0.4999999999999997 + }, + "autoFocus": 31, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X/vignette3.png", + "isMetal": true, + "launchDate": 1444752000000, + "maxISO": 12800, + "name": "Canon PowerShot G9 X", + "pixelDepth": 20, + "pixels": 20444448, + "price": 500, + "resolution": [ + 5536, + 3693 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 1600 + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7335119966762389, + "newModel": 0.22404805898254374, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07361418938727647, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 1.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G9/vignette3.png", + "isMetal": false, + "launchDate": 1187539200000, + "maxISO": 1600, + "name": "Canon Powershot G9", + "pixelDepth": 12, + "pixels": 12192768, + "price": 606, + "resolution": [ + 4032, + 3024 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7871207369024819, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S100/vignette3.png", + "isMetal": false, + "launchDate": 1316016000000, + "maxISO": 6400, + "name": "Canon PowerShot S100", + "pixelDepth": 12, + "pixels": 12995840, + "price": 429, + "resolution": [ + 4160, + 3124 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.78876597112353, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.5856369576579451 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_S110/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Canon Powershot S110", + "pixelDepth": 12, + "pixels": 12338304, + "price": 499, + "resolution": [ + 4048, + 3048 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 198 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.789249147471554, + "lowPrice": 0.7860866286905286, + "newModel": 0.49999999999999895, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.5863383439763902 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 5.6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S120/vignette3.png", + "isMetal": true, + "launchDate": 1377100800000, + "maxISO": 12800, + "name": "Canon PowerShot S120", + "pixelDepth": 12, + "pixels": 12835904, + "price": 449, + "resolution": [ + 4192, + 3062 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 193 + }, + { + "ISO": [ + 80, + 3200 + ], + "assessment": { + "astronomy": 0.0814163743518294, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7875774647887285, + "newModel": 0.45637117003652616, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.0714293666624468, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 0.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S90/vignette3.png", + "isMetal": false, + "launchDate": 1250611200000, + "maxISO": 3200, + "name": "Canon PowerShot S90", + "pixelDepth": 10, + "pixels": 10423296, + "price": 420, + "resolution": [ + 3744, + 2784 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 3200 + ], + "assessment": { + "astronomy": 0.0814163743518294, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7913731343283599, + "lowPrice": 0.7885714285714326, + "newModel": 0.4856808727756244, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07438183832188398, + "travel": 0.47754744215665035 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 0.98, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S95/vignette3.png", + "isMetal": false, + "launchDate": 1282147200000, + "maxISO": 3200, + "name": "Canon PowerShot S95", + "pixelDepth": 10, + "pixels": 10423296, + "price": 400, + "resolution": [ + 3744, + 2784 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 170 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7844324324324303, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08141121495327112, + "travel": 0.4999999999999997 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX50_HS/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Canon PowerShot SX50 HS", + "pixelDepth": 12, + "pixels": 12786912, + "price": 480, + "resolution": [ + 4176, + 3062 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 551 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7804838709677436, + "newModel": 0.5356718768052593, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Canon", + "flash": false, + "frameRate": 6.4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX60_HS/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 6400, + "name": "Canon PowerShot SX60 HS", + "pixelDepth": 16, + "pixels": 16764288, + "price": 550, + "resolution": [ + 4768, + 3516 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7875628742338098, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Phantom_4/vignette3.png", + "isMetal": true, + "launchDate": 1457971200000, + "maxISO": 3200, + "name": "DJI Phantom 4", + "pixelDepth": 12, + "pixels": 12000000, + "price": 1200, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7581690225850446, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7963990497347746, + "portrait": 0.7581690225850446, + "scenery": 0.8081274183527211, + "sports": 0.5390282916213289, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 14, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Phantom4_Pro/vignette3.png", + "isMetal": true, + "launchDate": 1479139200000, + "maxISO": 12800, + "name": "DJI Phantom4 Pro", + "pixelDepth": 20, + "pixels": 19961856, + "price": 1500, + "resolution": [ + 5472, + 3648 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7581690225850446, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.7829979945104432, + "lowPrice": 0.7775606210893378, + "newModel": 0.7963990497347746, + "portrait": 0.7581690225850446, + "scenery": 0.8081274183527211, + "sports": 0.5390282916213289, + "travel": 0.6363633411485914 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 20, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X4S/vignette3.png", + "isMetal": true, + "launchDate": 1479139200000, + "maxISO": 12800, + "name": "DJI Zenmuse X4S", + "pixelDepth": 20, + "pixels": 19961856, + "price": 599, + "resolution": [ + 5472, + 3648 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 253 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7675569954152581, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5184884919907811, + "lowPrice": 0.5000000000000002, + "newModel": 0.7963990497347746, + "portrait": 0.7567423211439139, + "scenery": 0.7985203381594502, + "sports": 0.5616519303453117, + "travel": 0.6074133321819782 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 20, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X5S/vignette3.png", + "isMetal": true, + "launchDate": 1479139200000, + "maxISO": 25600, + "name": "DJI Zenmuse X5S", + "pixelDepth": 20, + "pixels": 20887680, + "price": 1400, + "resolution": [ + 5280, + 3956 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 461 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712125017751787, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5241584267811638, + "lowPrice": 0.1999999999999999, + "newModel": 0.8000000000000005, + "portrait": 0.769938790213497, + "scenery": 0.8139611448003187, + "sports": 0.6144769578229766, + "travel": 0.6095480825352767 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "DJI", + "flash": false, + "frameRate": 20, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X7/vignette3.png", + "isMetal": true, + "launchDate": 1507651200000, + "maxISO": 25600, + "name": "DJI Zenmuse X7", + "pixelDepth": 24, + "pixels": 24112128, + "price": 2700, + "resolution": [ + 6016, + 4008 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 449 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.7890575539568294, + "lowPrice": 0.7860344827586178, + "newModel": 0.4952260258402374, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.07402016607354676, + "travel": 0.6416595805504298 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F550EXR/vignette3.png", + "isMetal": false, + "launchDate": 1294156800000, + "maxISO": 12800, + "name": "Fujifilm FinePix F550EXR", + "pixelDepth": 16, + "pixels": 16076305, + "price": 450, + "resolution": [ + 4613, + 3485 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 195 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.0843245758851411, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.933, + "travel": 0.6000000000000001 + }, + "autoFocus": 256, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F600EXR/vignette3.png", + "isMetal": false, + "launchDate": 1312992000000, + "maxISO": 12800, + "name": "Fujifilm FinePix F600EXR", + "pixelDepth": 16, + "pixels": 8037568, + "price": 500, + "resolution": [ + 3262, + 2464 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7877777173137505, + "lowPrice": 0.7909707627909911, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.5841809512624617 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F800EXR/vignette3.png", + "isMetal": false, + "launchDate": 1343145600000, + "maxISO": 12800, + "name": "Fujifilm FinePix F800EXR", + "pixelDepth": 16, + "pixels": 16076305, + "price": 349, + "resolution": [ + 4613, + 3485 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 208 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08058766629036895, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5628897752859012, + "newModel": 0.2470739519371539, + "portrait": 0.2280106572609703, + "scenery": 0.2280106572609703, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S100fs/vignette3.png", + "isMetal": false, + "launchDate": 1201104000000, + "maxISO": 3200, + "name": "Fujifilm FinePix S100fs", + "pixelDepth": 11, + "pixels": 11059200, + "price": 713, + "resolution": [ + 3840, + 2880 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07329558152854765, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.20511031132658228, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S3_Pro/vignette3.png", + "isMetal": false, + "launchDate": 1075910400000, + "maxISO": 1600, + "name": "Fujifilm FinePix S3 Pro", + "pixelDepth": 6, + "pixels": 6096384, + "price": 1190, + "resolution": [ + 3024, + 2016 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07766693392882804, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.21838126173299063, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S5_Pro/vignette3.png", + "isMetal": false, + "launchDate": 1159113600000, + "maxISO": 3200, + "name": "Fujifilm FinePix S5 Pro", + "pixelDepth": 6, + "pixels": 6096384, + "price": 1200, + "resolution": [ + 3024, + 2016 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.40750000000000486, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329098228663452, + "travel": 0.45236901807869573 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X_S1/vignette3.png", + "isMetal": true, + "launchDate": 1322064000000, + "maxISO": 12800, + "name": "Fujifilm FinePix X S1", + "pixelDepth": 12, + "pixels": 12000000, + "price": 699, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 880 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.6380289440771788, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329098228663452, + "travel": 0.5602517547964436 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X10/vignette3.png", + "isMetal": false, + "launchDate": 1314806400000, + "maxISO": 12800, + "name": "Fujifilm FinePix X10", + "pixelDepth": 12, + "pixels": 12212896, + "price": 600, + "resolution": [ + 4028, + 3032 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 330 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5479244423685782, + "lowPrice": 0.5002492512472553, + "newModel": 0.48780963542990663, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329098228663452, + "travel": 0.5386979393318829 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X100/vignette3.png", + "isMetal": true, + "launchDate": 1284825600000, + "maxISO": 12800, + "name": "Fujifilm FinePix X100", + "pixelDepth": 12, + "pixels": 12369700, + "price": 999, + "resolution": [ + 4310, + 2870 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 405 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Fujifilm", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/XF1/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Fujifilm XF1", + "pixelDepth": 12, + "pixels": 12000000, + "price": 499, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.6500000000000002, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.7947135702942201, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.5390282916213289, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "GoPro", + "flash": false, + "frameRate": 30, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/HERO5_Black/vignette3.png", + "isMetal": false, + "launchDate": 1474214400000, + "maxISO": 1600, + "name": "GoPro HERO5 Black", + "pixelDepth": 12, + "pixels": 12000000, + "price": 400, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 400 + ], + "assessment": { + "astronomy": 0.6776196269734426, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22581977891147426, + "portrait": 0.7999640340898365, + "scenery": 0.9329802944742082, + "sports": 0.49298276197015695, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Hasselblad", + "flash": false, + "frameRate": 0.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_39/vignette3.png", + "isMetal": false, + "launchDate": 1196006400000, + "maxISO": 400, + "name": "Hasselblad H3DII 39", + "pixelDepth": 39, + "pixels": 39458112, + "price": 22000, + "resolution": [ + 7248, + 5444 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 400 + ], + "assessment": { + "astronomy": 0.6776872570626299, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22581977891147426, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.495386674129829, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Hasselblad", + "flash": false, + "frameRate": 0.9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_50/vignette3.png", + "isMetal": false, + "launchDate": 1196006400000, + "maxISO": 400, + "name": "Hasselblad H3DII 50", + "pixelDepth": 50, + "pixels": 51679680, + "price": 20000, + "resolution": [ + 8282, + 6240 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7942026687014537, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.791603730875711, + "portrait": 0.8000000000000005, + "scenery": 0.8387202611043807, + "sports": 0.5271866966133213, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Hasselblad", + "flash": false, + "frameRate": 2.3, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/X1D-50c/vignette3.png", + "isMetal": true, + "launchDate": 1466524800000, + "maxISO": 25600, + "name": "Hasselblad X1D-50c", + "pixelDepth": 50, + "pixels": 51402240, + "price": 8995, + "resolution": [ + 8280, + 6208 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07760492265724778, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.21165168791248107, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Konica Minolta", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_5D/vignette3.png", + "isMetal": false, + "launchDate": 1121356800000, + "maxISO": 3200, + "name": "Konica Minolta DYNAX 5D", + "pixelDepth": 6, + "pixels": 6056128, + "price": 500, + "resolution": [ + 3016, + 2008 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07760492265724778, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7793648548731495, + "newModel": 0.20764170756612468, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Konica Minolta", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_7D/vignette3.png", + "isMetal": false, + "launchDate": 1095177600000, + "maxISO": 3200, + "name": "Konica Minolta DYNAX 7D", + "pixelDepth": 6, + "pixels": 6056128, + "price": 569, + "resolution": [ + 3016, + 2008 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 800 + ], + "assessment": { + "astronomy": 0.6671204945348616, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.21839784666838566, + "portrait": 0.7947193502035401, + "scenery": 0.9295308230908899, + "sports": 0.4684191934677148, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leaf", + "flash": false, + "frameRate": 0.83, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Aptus75S/vignette3.png", + "isMetal": false, + "launchDate": 1159200000000, + "maxISO": 800, + "name": "Leaf Aptus75S", + "pixelDepth": 33, + "pixels": 33276672, + "price": 32995, + "resolution": [ + 6666, + 4992 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5411682295905136, + "newModel": 0.49999999999999667, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/C/vignette3.png", + "isMetal": true, + "launchDate": 1378742400000, + "maxISO": 12800, + "name": "Leica C", + "pixelDepth": 12, + "pixels": 12112256, + "price": 795, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.7697806897606136, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7697806897606136, + "scenery": 0.9129364224889734, + "sports": 0.35913287221098766, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M_Typ_240/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 6400, + "name": "Leica M Typ 240", + "pixelDepth": 24, + "pixels": 23936000, + "price": 6950, + "resolution": [ + 5984, + 4000 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 2500 + ], + "assessment": { + "astronomy": 0.0737154836007143, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M-E_Typ_220/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 2500, + "name": "Leica M-E Typ 220", + "pixelDepth": 18, + "pixels": 18109952, + "price": 5450, + "resolution": [ + 5216, + 3472 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 50000 + ], + "assessment": { + "astronomy": 0.7855542352311429, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7979614152856618, + "portrait": 0.769739927706708, + "scenery": 0.8299353152852595, + "sports": 0.42596223587001725, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M10/vignette3.png", + "isMetal": true, + "launchDate": 1484668800000, + "maxISO": 50000, + "name": "Leica M10", + "pixelDepth": 24, + "pixels": 23888128, + "price": 6895, + "resolution": [ + 5984, + 3992 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 590 + }, + { + "ISO": [ + 160, + 2500 + ], + "assessment": { + "astronomy": 0.07820651804692716, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2182008037681383, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M8/vignette3.png", + "isMetal": false, + "launchDate": 1158163200000, + "maxISO": 2500, + "name": "Leica M8", + "pixelDepth": 10, + "pixels": 10340960, + "price": 5495, + "resolution": [ + 3920, + 2638 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 2500 + ], + "assessment": { + "astronomy": 0.0737154836007143, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.49634183016529004, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M9_P/vignette3.png", + "isMetal": true, + "launchDate": 1295539200000, + "maxISO": 2500, + "name": "Leica M9 P", + "pixelDepth": 18, + "pixels": 18109952, + "price": 6950, + "resolution": [ + 5216, + 3472 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 2500 + ], + "assessment": { + "astronomy": 0.0737154836007143, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4584766374272051, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07567000940144156, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/M9/vignette3.png", + "isMetal": false, + "launchDate": 1252425600000, + "maxISO": 2500, + "name": "Leica M9", + "pixelDepth": 18, + "pixels": 18109952, + "price": 5500, + "resolution": [ + 5216, + 3472 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 545 + }, + { + "ISO": [ + 100, + 50000 + ], + "assessment": { + "astronomy": 0.7854937716172566, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.6332034374702056, + "portrait": 0.7699847368302629, + "scenery": 0.8305046044889461, + "sports": 0.851644003957937, + "travel": 0.4999999999999997 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Q_Typ_116/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 50000, + "name": "Leica Q Typ 116", + "pixelDepth": 24, + "pixels": 24160256, + "price": 4250, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 590 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.6830626561110877, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7993618049959713, + "scenery": 0.8585373754523935, + "sports": 0.5021179997601634, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 1.5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/S/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 1600, + "name": "Leica S", + "pixelDepth": 37, + "pixels": 37600000, + "price": 21950, + "resolution": [ + 7520, + 5000 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 50000 + ], + "assessment": { + "astronomy": 0.7854937716172566, + "durableBuild": 0.8000000000000005, + "event": 0.5772727272727275, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7220794214614688, + "portrait": 0.7699847368302629, + "scenery": 0.8176294292573827, + "sports": 0.8713087951318573, + "travel": 0.6000000000000001 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 11, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SL_(Typ_601)/vignette3.png", + "isMetal": true, + "launchDate": 1445270400000, + "maxISO": 50000, + "name": "Leica SL (Typ 601)", + "pixelDepth": 24, + "pixels": 24160256, + "price": 7450, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12500 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.6183766865446153, + "lowPrice": 0.1999999999999999, + "newModel": 0.4999999999999977, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.5579816085583185 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/T/vignette3.png", + "isMetal": true, + "launchDate": 1398268800000, + "maxISO": 12500, + "name": "Leica T", + "pixelDepth": 16, + "pixels": 16206432, + "price": 1850, + "resolution": [ + 4944, + 3278 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 339 + }, + { + "ISO": [ + 100, + 12500 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4999999999999997, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Leica", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/X_Vario/vignette3.png", + "isMetal": true, + "launchDate": 1370880000000, + "maxISO": 12500, + "name": "Leica X Vario", + "pixelDepth": 16, + "pixels": 16186656, + "price": 2850, + "resolution": [ + 4944, + 3274 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 400 + ], + "assessment": { + "astronomy": 0.43215420965778045, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.395551069068901, + "portrait": 0.7600010199731728, + "scenery": 0.9064214010591755, + "sports": 0.18647131663635308, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Mamiya", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/ZD_Back/vignette3.png", + "isMetal": false, + "launchDate": 1220198400000, + "maxISO": 400, + "name": "Mamiya ZD Back", + "pixelDepth": 21, + "pixels": 21461504, + "price": 6999, + "resolution": [ + 5344, + 4016 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.6951672370432288, + "lowPrice": 0.540338983050848, + "newModel": 0.500000000000002, + "portrait": 0.24083820454836385, + "scenery": 0.6938318737493623, + "sports": 0.933, + "travel": 0.6296461584682099 + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/1_AW1/vignette3.png", + "isMetal": true, + "launchDate": 1379520000000, + "maxISO": 6400, + "name": "Nikon 1 AW1", + "pixelDepth": 14, + "pixels": 14238840, + "price": 800, + "resolution": [ + 4620, + 3082 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 313 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.09234734927674859, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.7850795214168989, + "lowPrice": 0.5688059701492514, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5390282916213289, + "travel": 0.5800580243166777 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 13, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J1/vignette3.png", + "isMetal": false, + "launchDate": 1316534400000, + "maxISO": 6400, + "name": "Nikon 1 J1", + "pixelDepth": 10, + "pixels": 10173824, + "price": 700, + "resolution": [ + 3904, + 2606 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 234 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.09231668411852569, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J2/vignette3.png", + "isMetal": false, + "launchDate": 1344441600000, + "maxISO": 6400, + "name": "Nikon 1 J2", + "pixelDepth": 10, + "pixels": 10166016, + "price": 700, + "resolution": [ + 3904, + 2604 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.49999999999999933, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J3/vignette3.png", + "isMetal": true, + "launchDate": 1357574400000, + "maxISO": 6400, + "name": "Nikon 1 J3", + "pixelDepth": 14, + "pixels": 14238840, + "price": 600, + "resolution": [ + 4620, + 3082 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000048, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 171, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J4/vignette3.png", + "isMetal": true, + "launchDate": 1397059200000, + "maxISO": 12800, + "name": "Nikon 1 J4", + "pixelDepth": 18, + "pixels": 18378496, + "price": 599, + "resolution": [ + 5248, + 3502 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 12800 + ], + "assessment": { + "astronomy": 0.7567589967123857, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.6023053491129261, + "portrait": 0.7567589967123857, + "scenery": 0.9042580508537008, + "sports": 0.9035289101291036, + "travel": 0.4999999999999997 + }, + "autoFocus": 171, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_J5/vignette3.png", + "isMetal": false, + "launchDate": 1427904000000, + "maxISO": 12800, + "name": "Nikon 1 J5", + "pixelDepth": 20, + "pixels": 20794816, + "price": 500, + "resolution": [ + 5584, + 3724 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.09273700262475541, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.49999999999999933, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_S1/vignette3.png", + "isMetal": true, + "launchDate": 1357574400000, + "maxISO": 6400, + "name": "Nikon 1 S1", + "pixelDepth": 10, + "pixels": 10272696, + "price": 499, + "resolution": [ + 3948, + 2602 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.09234734927674859, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.7783471865585969, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.933, + "travel": 0.5687955821693761 + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 34, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_V1/vignette3.png", + "isMetal": false, + "launchDate": 1316534400000, + "maxISO": 6400, + "name": "Nikon 1 V1", + "pixelDepth": 10, + "pixels": 10173824, + "price": 1000, + "resolution": [ + 3904, + 2606 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 293 + }, + { + "ISO": [ + 160, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.780131607363599, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000001, + "portrait": 0.24083820454836385, + "scenery": 0.6938318737493623, + "sports": 0.933, + "travel": 0.6337171904202219 + }, + "autoFocus": 135, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 15, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/1_V2/vignette3.png", + "isMetal": false, + "launchDate": 1351008000000, + "maxISO": 6400, + "name": "Nikon 1 V2", + "pixelDepth": 14, + "pixels": 14238840, + "price": 899, + "resolution": [ + 4620, + 3082 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 278 + }, + { + "ISO": [ + 160, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.6544146371735617, + "lowPrice": 0.5002492512472553, + "newModel": 0.5000000000000007, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5390282916213289, + "travel": 0.5617212797063059 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 30, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/1_V3/vignette3.png", + "isMetal": true, + "launchDate": 1394640000000, + "maxISO": 12800, + "name": "Nikon 1 V3", + "pixelDepth": 18, + "pixels": 18378496, + "price": 999, + "resolution": [ + 5248, + 3502 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 324 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.500000000000001, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_A/vignette3.png", + "isMetal": true, + "launchDate": 1362326400000, + "maxISO": 25600, + "name": "Nikon Coolpix A", + "pixelDepth": 16, + "pixels": 16373760, + "price": 1100, + "resolution": [ + 4992, + 3280 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7885714285714326, + "lowPrice": 0.7895362318840548, + "newModel": 0.500000000000001, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.6412499999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P330/vignette3.png", + "isMetal": true, + "launchDate": 1362326400000, + "maxISO": 12800, + "name": "Nikon Coolpix P330", + "pixelDepth": 12, + "pixels": 12192768, + "price": 380, + "resolution": [ + 4032, + 3024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 200 + }, + { + "ISO": [ + 80, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7895362318840548, + "newModel": 0.49999999999999706, + "portrait": 0.23214285714285718, + "scenery": 0.6679145681242322, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P340/vignette3.png", + "isMetal": false, + "launchDate": 1391616000000, + "maxISO": 25600, + "name": "Nikon Coolpix P340", + "pixelDepth": 12, + "pixels": 12192768, + "price": 380, + "resolution": [ + 4032, + 3024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 64, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7866070389804667, + "newModel": 0.38734740903433185, + "portrait": 0.23642481756120523, + "scenery": 0.23642481756120523, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P6000/vignette3.png", + "isMetal": false, + "launchDate": 1218038400000, + "maxISO": 6400, + "name": "Nikon Coolpix P6000", + "pixelDepth": 13, + "pixels": 13457760, + "price": 439, + "resolution": [ + 4240, + 3174 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.09184912717672215, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.4870564677819162, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5244813082467101, + "travel": 0.4999999999999997 + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 1.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7000/vignette3.png", + "isMetal": false, + "launchDate": 1283875200000, + "maxISO": 6400, + "name": "Nikon Coolpix P7000", + "pixelDepth": 10, + "pixels": 10046688, + "price": 500, + "resolution": [ + 3664, + 2742 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.09187779000886613, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.554620891262316, + "lowPrice": 0.5620724384000517, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5244813082467101, + "travel": 0.5419478513405445 + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 1.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7100/vignette3.png", + "isMetal": false, + "launchDate": 1314115200000, + "maxISO": 6400, + "name": "Nikon Coolpix P7100", + "pixelDepth": 10, + "pixels": 10054016, + "price": 715, + "resolution": [ + 3664, + 2744 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 395 + }, + { + "ISO": [ + 80, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7700/vignette3.png", + "isMetal": false, + "launchDate": 1345564800000, + "maxISO": 6400, + "name": "Nikon Coolpix P7700", + "pixelDepth": 12, + "pixels": 12192768, + "price": 499, + "resolution": [ + 4032, + 3024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7774999999999945, + "lowPrice": 0.7804838709677436, + "newModel": 0.49999999999999967, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.5672727272727268 + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7800/vignette3.png", + "isMetal": true, + "launchDate": 1378310400000, + "maxISO": 6400, + "name": "Nikon Coolpix P7800", + "pixelDepth": 12, + "pixels": 12192768, + "price": 550, + "resolution": [ + 4032, + 3024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 300 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.081543452567325, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2132343357512345, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D200/vignette3.png", + "isMetal": false, + "launchDate": 1130774400000, + "maxISO": 3200, + "name": "Nikon D200", + "pixelDepth": 10, + "pixels": 10212864, + "price": 1000, + "resolution": [ + 3904, + 2616 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 6400 + ], + "assessment": { + "astronomy": 0.07223018887419151, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.20321300426865188, + "portrait": 0.20499999999999993, + "scenery": 0.20499999999999993, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D2H/vignette3.png", + "isMetal": false, + "launchDate": 1058803200000, + "maxISO": 6400, + "name": "Nikon D2H", + "pixelDepth": 4, + "pixels": 4113408, + "price": 900, + "resolution": [ + 2496, + 1648 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2076538779647219, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D2X/vignette3.png", + "isMetal": false, + "launchDate": 1095264000000, + "maxISO": 3200, + "name": "Nikon D2X", + "pixelDepth": 12, + "pixels": 12389760, + "price": 2000, + "resolution": [ + 4320, + 2868 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2164994832188621, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D2Xs/vignette3.png", + "isMetal": false, + "launchDate": 1149091200000, + "maxISO": 3200, + "name": "Nikon D2Xs", + "pixelDepth": 12, + "pixels": 12212224, + "price": 4250, + "resolution": [ + 4288, + 2848 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.22410150826352104, + "portrait": 0.23214285714285718, + "scenery": 0.5349047177886246, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3/vignette3.png", + "isMetal": false, + "launchDate": 1187798400000, + "maxISO": 25600, + "name": "Nikon D3", + "pixelDepth": 12, + "pixels": 12195072, + "price": 4300, + "resolution": [ + 4288, + 2844 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.4582456140350867, + "newModel": 0.22410150826352104, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D300/vignette3.png", + "isMetal": false, + "launchDate": 1187798400000, + "maxISO": 6400, + "name": "Nikon D300", + "pixelDepth": 12, + "pixels": 12481536, + "price": 1540, + "resolution": [ + 4352, + 2868 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5565868772782485, + "newModel": 0.4413803643790505, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08746015737559586, + "travel": 0.1999999999999999 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3000/vignette3.png", + "isMetal": true, + "launchDate": 1239638400000, + "maxISO": 3200, + "name": "Nikon D3000", + "pixelDepth": 12, + "pixels": 12361080, + "price": 730, + "resolution": [ + 4310, + 2868 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.45428220718412077, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D300s/vignette3.png", + "isMetal": false, + "launchDate": 1248883200000, + "maxISO": 6400, + "name": "Nikon D300s", + "pixelDepth": 12, + "pixels": 12481536, + "price": 1815, + "resolution": [ + 4352, + 2868 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.4886318118458703, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3100/vignette3.png", + "isMetal": false, + "launchDate": 1285862400000, + "maxISO": 12800, + "name": "Nikon D3100", + "pixelDepth": 14, + "pixels": 14408448, + "price": 699, + "resolution": [ + 4672, + 3084 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7702188603967507, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.521305939010396, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.7702188603967507, + "scenery": 0.9132276873879216, + "sports": 0.5474943113310172, + "travel": 0.5203126755375478 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3200/vignette3.png", + "isMetal": true, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Nikon D3200", + "pixelDepth": 24, + "pixels": 24392960, + "price": 699, + "resolution": [ + 6080, + 4012 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 455 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000031, + "portrait": 0.7699847368302629, + "scenery": 0.829216454512239, + "sports": 0.5398039036618845, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3300/vignette3.png", + "isMetal": false, + "launchDate": 1389024000000, + "maxISO": 25600, + "name": "Nikon D3300", + "pixelDepth": 24, + "pixels": 24160256, + "price": 650, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.7936242789291871, + "portrait": 0.7699847368302629, + "scenery": 0.829216454512239, + "sports": 0.5398039036618845, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3400/vignette3.png", + "isMetal": true, + "launchDate": 1471363200000, + "maxISO": 25600, + "name": "Nikon D3400", + "pixelDepth": 24, + "pixels": 24160256, + "price": 650, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 102400 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.4618121843030409, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.07402016607354676, + "travel": 0.16167332382310975 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3s/vignette3.png", + "isMetal": true, + "launchDate": 1255449600000, + "maxISO": 102400, + "name": "Nikon D3s", + "pixelDepth": 12, + "pixels": 12195072, + "price": 5510, + "resolution": [ + 4288, + 2844 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 1240 + }, + { + "ISO": [ + 50, + 6400 + ], + "assessment": { + "astronomy": 0.770429932071499, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.41869788491367926, + "portrait": 0.770429932071499, + "scenery": 0.9133684927801615, + "sports": 0.4523483629078768, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D3X/vignette3.png", + "isMetal": false, + "launchDate": 1228060800000, + "maxISO": 6400, + "name": "Nikon D3X", + "pixelDepth": 24, + "pixels": 24587520, + "price": 9172, + "resolution": [ + 6080, + 4044 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 204800 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.5772727272727275, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.928265423242468, + "travel": 0.5369388594944149 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 11, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D4/vignette3.png", + "isMetal": false, + "launchDate": 1325779200000, + "maxISO": 204800, + "name": "Nikon D4", + "pixelDepth": 16, + "pixels": 16433664, + "price": 5999, + "resolution": [ + 4992, + 3292 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1340 + }, + { + "ISO": [ + 200, + 3200 + ], + "assessment": { + "astronomy": 0.07770734086566078, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.21924667551736418, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D40/vignette3.png", + "isMetal": false, + "launchDate": 1163606400000, + "maxISO": 3200, + "name": "Nikon D40", + "pixelDepth": 6, + "pixels": 6122560, + "price": 400, + "resolution": [ + 3040, + 2014 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.081543452567325, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5004980059800642, + "newModel": 0.22111460690387605, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D40X/vignette3.png", + "isMetal": false, + "launchDate": 1173110400000, + "maxISO": 3200, + "name": "Nikon D40X", + "pixelDepth": 10, + "pixels": 10212864, + "price": 998, + "resolution": [ + 3904, + 2616 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 409600 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000009, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.928265423242468, + "travel": 0.4999999999999997 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D4s/vignette3.png", + "isMetal": false, + "launchDate": 1393257600000, + "maxISO": 409600, + "name": "Nikon D4s", + "pixelDepth": 16, + "pixels": 16229568, + "price": 6500, + "resolution": [ + 4936, + 3288 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 3280000 + ], + "assessment": { + "astronomy": 0.7902800639992472, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.7844376273133042, + "portrait": 0.7567533893511361, + "scenery": 0.8056995693022159, + "sports": 0.9165573859433006, + "travel": 0.5369388594944149 + }, + "autoFocus": 153, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 14, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D5/vignette3.png", + "isMetal": true, + "launchDate": 1452009600000, + "maxISO": 3280000, + "name": "Nikon D5", + "pixelDepth": 20, + "pixels": 20817152, + "price": 6500, + "resolution": [ + 5584, + 3728 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 1225 + }, + { + "ISO": [ + 200, + 1600 + ], + "assessment": { + "astronomy": 0.07332567456337055, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2104521810624988, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D50/vignette3.png", + "isMetal": false, + "launchDate": 1113926400000, + "maxISO": 1600, + "name": "Nikon D50", + "pixelDepth": 6, + "pixels": 6122560, + "price": 1000, + "resolution": [ + 3040, + 2014 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 1640000 + ], + "assessment": { + "astronomy": 0.7901392577736084, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7844376273133042, + "portrait": 0.7567434672427742, + "scenery": 0.8057987212862777, + "sports": 0.9012439591036879, + "travel": 0.6000000000000001 + }, + "autoFocus": 153, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D500/vignette3.png", + "isMetal": true, + "launchDate": 1452009600000, + "maxISO": 1640000, + "name": "Nikon D500", + "pixelDepth": 20, + "pixels": 20873072, + "price": 2000, + "resolution": [ + 5599, + 3728 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 670 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5565868772782485, + "newModel": 0.4413803643790505, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5000/vignette3.png", + "isMetal": false, + "launchDate": 1239638400000, + "maxISO": 6400, + "name": "Nikon D5000", + "pixelDepth": 12, + "pixels": 12361080, + "price": 730, + "resolution": [ + 4310, + 2868 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5100/vignette3.png", + "isMetal": false, + "launchDate": 1301932800000, + "maxISO": 25600, + "name": "Nikon D5100", + "pixelDepth": 16, + "pixels": 16373760, + "price": 799, + "resolution": [ + 4992, + 3280 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712950591780232, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5229243231030903, + "newModel": 0.5000000000000002, + "portrait": 0.7700867269925482, + "scenery": 0.8295406124478762, + "sports": 0.8380012220996484, + "travel": 0.4999999999999997 + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5200/vignette3.png", + "isMetal": false, + "launchDate": 1352131200000, + "maxISO": 25600, + "name": "Nikon D5200", + "pixelDepth": 24, + "pixels": 24264720, + "price": 897, + "resolution": [ + 6036, + 4020 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.4999999999999982, + "portrait": 0.7699847368302629, + "scenery": 0.8140452813264997, + "sports": 0.8386714371044622, + "travel": 0.6000000000000001 + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D5300/vignette3.png", + "isMetal": false, + "launchDate": 1381939200000, + "maxISO": 25600, + "name": "Nikon D5300", + "pixelDepth": 24, + "pixels": 24160256, + "price": 800, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.5708140819591409, + "portrait": 0.7699847368302629, + "scenery": 0.8140452813264997, + "sports": 0.8386714371044622, + "travel": 0.6000000000000001 + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D5500/vignette3.png", + "isMetal": true, + "launchDate": 1420473600000, + "maxISO": 25600, + "name": "Nikon D5500", + "pixelDepth": 24, + "pixels": 24160256, + "price": 900, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712379676841797, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.7962615188493051, + "portrait": 0.7699847368302629, + "scenery": 0.829216454512239, + "sports": 0.8386714371044622, + "travel": 0.4999999999999997 + }, + "autoFocus": 39, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D5600/vignette3.png", + "isMetal": false, + "launchDate": 1478707200000, + "maxISO": 25600, + "name": "Nikon D5600", + "pixelDepth": 24, + "pixels": 24160256, + "price": 700, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.081543452567325, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7849727891156452, + "newModel": 0.25429606889763623, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D60/vignette3.png", + "isMetal": false, + "launchDate": 1201536000000, + "maxISO": 3200, + "name": "Nikon D60", + "pixelDepth": 10, + "pixels": 10212864, + "price": 470, + "resolution": [ + 3904, + 2616 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 25600 + ], + "assessment": { + "astronomy": 0.771429533932277, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7703218061746175, + "scenery": 0.8302316500739159, + "sports": 0.8366512471788445, + "travel": 0.4999999999999997 + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D600/vignette3.png", + "isMetal": false, + "launchDate": 1347465600000, + "maxISO": 25600, + "name": "Nikon D600", + "pixelDepth": 24, + "pixels": 24490240, + "price": 2100, + "resolution": [ + 6080, + 4028 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 25600 + ], + "assessment": { + "astronomy": 0.771429533932277, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4999999999999989, + "portrait": 0.7703218061746175, + "scenery": 0.8302316500739159, + "sports": 0.8366512471788445, + "travel": 0.4999999999999997 + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D610/vignette3.png", + "isMetal": true, + "launchDate": 1381161600000, + "maxISO": 25600, + "name": "Nikon D610", + "pixelDepth": 24, + "pixels": 24490240, + "price": 1999, + "resolution": [ + 6080, + 4028 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 1600 + ], + "assessment": { + "astronomy": 0.07332567456337055, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.20502652485113151, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D70/vignette3.png", + "isMetal": false, + "launchDate": 1075219200000, + "maxISO": 1600, + "name": "Nikon D70", + "pixelDepth": 6, + "pixels": 6122560, + "price": 400, + "resolution": [ + 3040, + 2014 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.37308067882861895, + "portrait": 0.23214285714285718, + "scenery": 0.5349047177886246, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D700/vignette3.png", + "isMetal": false, + "launchDate": 1214841600000, + "maxISO": 25600, + "name": "Nikon D700", + "pixelDepth": 12, + "pixels": 12195072, + "price": 2699, + "resolution": [ + 4288, + 2844 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.48753599416625626, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.9241080139372799, + "travel": 0.6000000000000001 + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/D7000/vignette3.png", + "isMetal": true, + "launchDate": 1284480000000, + "maxISO": 25600, + "name": "Nikon D7000", + "pixelDepth": 16, + "pixels": 16370480, + "price": 1200, + "resolution": [ + 4991, + 3280 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 690 + }, + { + "ISO": [ + 200, + 1600 + ], + "assessment": { + "astronomy": 0.07332567456337055, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.2104521810624988, + "portrait": 0.2102281322364056, + "scenery": 0.2102281322364056, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D70s/vignette3.png", + "isMetal": false, + "launchDate": 1113926400000, + "maxISO": 1600, + "name": "Nikon D70s", + "pixelDepth": 6, + "pixels": 6122560, + "price": 700, + "resolution": [ + 3040, + 2014 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712950591780232, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000018, + "portrait": 0.7700867269925482, + "scenery": 0.8295406124478762, + "sports": 0.8510068518262013, + "travel": 0.4999999999999997 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D7100/vignette3.png", + "isMetal": true, + "launchDate": 1361376000000, + "maxISO": 25600, + "name": "Nikon D7100", + "pixelDepth": 24, + "pixels": 24264720, + "price": 1200, + "resolution": [ + 6036, + 4020 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 675 + }, + { + "ISO": [ + 100, + 102400 + ], + "assessment": { + "astronomy": 0.7855503789786742, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5902590904447592, + "portrait": 0.7699847368302629, + "scenery": 0.8305520747203903, + "sports": 0.8517496142303977, + "travel": 0.4999999999999997 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D7200/vignette3.png", + "isMetal": true, + "launchDate": 1425225600000, + "maxISO": 102400, + "name": "Nikon D7200", + "pixelDepth": 24, + "pixels": 24160256, + "price": 1200, + "resolution": [ + 6016, + 4016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 675 + }, + { + "ISO": [ + 50, + 51200 + ], + "assessment": { + "astronomy": 0.7855258093631292, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5347916168006315, + "portrait": 0.7701435792498484, + "scenery": 0.8308840995595104, + "sports": 0.8506184576022527, + "travel": 0.4999999999999997 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 6.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D750/vignette3.png", + "isMetal": true, + "launchDate": 1410451200000, + "maxISO": 51200, + "name": "Nikon D750", + "pixelDepth": 24, + "pixels": 24321024, + "price": 2300, + "resolution": [ + 6032, + 4032 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1640000 + ], + "assessment": { + "astronomy": 0.7901300043862469, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7993966437404254, + "portrait": 0.7567431737262453, + "scenery": 0.8109981987829713, + "sports": 0.9011373212493489, + "travel": 0.4999999999999997 + }, + "autoFocus": 51, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D7500/vignette3.png", + "isMetal": true, + "launchDate": 1491926400000, + "maxISO": 1640000, + "name": "Nikon D7500", + "pixelDepth": 20, + "pixels": 20876800, + "price": 1250, + "resolution": [ + 5600, + 3728 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08155336618002212, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5565868772782485, + "newModel": 0.21761156202610107, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D80/vignette3.png", + "isMetal": false, + "launchDate": 1155052800000, + "maxISO": 3200, + "name": "Nikon D80", + "pixelDepth": 10, + "pixels": 10190700, + "price": 730, + "resolution": [ + 3900, + 2613 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 25600 + ], + "assessment": { + "astronomy": 0.7931625117890672, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.4738502673796765, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7987538346442257, + "scenery": 0.8663303776677606, + "sports": 0.8368904332610863, + "travel": 0.4851298526153548 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D800/vignette3.png", + "isMetal": true, + "launchDate": 1328544000000, + "maxISO": 25600, + "name": "Nikon D800", + "pixelDepth": 36, + "pixels": 36555776, + "price": 2999, + "resolution": [ + 7424, + 4924 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 820 + }, + { + "ISO": [ + 50, + 25600 + ], + "assessment": { + "astronomy": 0.7931625117890672, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7987538346442257, + "scenery": 0.8663303776677606, + "sports": 0.8368904332610863, + "travel": 0.4999999999999997 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D800E/vignette3.png", + "isMetal": true, + "launchDate": 1328544000000, + "maxISO": 25600, + "name": "Nikon D800E", + "pixelDepth": 36, + "pixels": 36555776, + "price": 3300, + "resolution": [ + 7424, + 4924 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 64, + 51200 + ], + "assessment": { + "astronomy": 0.7990905162469095, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.40750000000000486, + "lowPrice": 0.1999999999999999, + "newModel": 0.5123106810826351, + "portrait": 0.7986281521239487, + "scenery": 0.8580214867890246, + "sports": 0.8368018012636756, + "travel": 0.45236901807869573 + }, + "autoFocus": 51, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D810/vignette3.png", + "isMetal": true, + "launchDate": 1403712000000, + "maxISO": 51200, + "name": "Nikon D810", + "pixelDepth": 36, + "pixels": 36368640, + "price": 3300, + "resolution": [ + 7380, + 4928 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 880 + }, + { + "ISO": [ + 32, + 102400 + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.36863550737495104, + "lowPrice": 0.1999999999999999, + "newModel": 0.8000000000000005, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.8378640915593707, + "travel": 0.4399584353128087 + }, + "autoFocus": 153, + "bluetooth": true, + "brand": "Nikon", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D850/vignette3.png", + "isMetal": true, + "launchDate": 1503417600000, + "maxISO": 102400, + "name": "Nikon D850", + "pixelDepth": 45, + "pixels": 45749760, + "price": 3300, + "resolution": [ + 8288, + 5520 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 915 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.3939891906060031, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 4.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/D90/vignette3.png", + "isMetal": false, + "launchDate": 1219766400000, + "maxISO": 6400, + "name": "Nikon D90", + "pixelDepth": 12, + "pixels": 12361080, + "price": 1235, + "resolution": [ + 4310, + 2868 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 204800 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000004, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999567, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.9241080139372799, + "travel": 0.1999999999999999 + }, + "autoFocus": 39, + "bluetooth": false, + "brand": "Nikon", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Df/vignette3.png", + "isMetal": true, + "launchDate": 1383580800000, + "maxISO": 204800, + "name": "Nikon Df", + "pixelDepth": 16, + "pixels": 16433664, + "price": 2749, + "resolution": [ + 4992, + 3292 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 710 + }, + { + "ISO": [ + 100, + 4000 + ], + "assessment": { + "astronomy": 0.7213071465729739, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7112748815165891, + "newModel": 0.5000000000000002, + "portrait": 0.7996808373686597, + "scenery": 0.8587499269852524, + "sports": 0.6154975668365649, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Nokia", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1020/vignette3.png", + "isMetal": false, + "launchDate": 1373472000000, + "maxISO": 4000, + "name": "Nokia Lumia 1020", + "pixelDepth": 41, + "pixels": 38334720, + "price": 610, + "resolution": [ + 7152, + 5360 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 4000 + ], + "assessment": { + "astronomy": 0.39455541698456, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000006, + "portrait": 0.7581690225850446, + "scenery": 0.8081274183527211, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Nokia", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1520/vignette3.png", + "isMetal": false, + "launchDate": 1384444800000, + "maxISO": 4000, + "name": "Nokia Lumia 1520", + "pixelDepth": 20, + "pixels": 18690048, + "price": 600, + "resolution": [ + 4992, + 3744 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08142175387354594, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.22507340354602132, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E3/vignette3.png", + "isMetal": false, + "launchDate": 1192464000000, + "maxISO": 3200, + "name": "Olympus E3", + "pixelDepth": 10, + "pixels": 10416000, + "price": 1300, + "resolution": [ + 3720, + 2800 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.2532412516784761, + "newModel": 0.41294944190141847, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E30/vignette3.png", + "isMetal": false, + "launchDate": 1225814400000, + "maxISO": 3200, + "name": "Olympus E30", + "pixelDepth": 12, + "pixels": 12644400, + "price": 1689, + "resolution": [ + 4100, + 3084 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7844324324324303, + "newModel": 0.22109739830133673, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E410/vignette3.png", + "isMetal": false, + "launchDate": 1173024000000, + "maxISO": 1600, + "name": "Olympus E410", + "pixelDepth": 10, + "pixels": 10416000, + "price": 480, + "resolution": [ + 3720, + 2800 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7822105263157916, + "newModel": 0.29669389128462814, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E420/vignette3.png", + "isMetal": false, + "launchDate": 1204646400000, + "maxISO": 1600, + "name": "Olympus E420", + "pixelDepth": 10, + "pixels": 10416000, + "price": 520, + "resolution": [ + 3720, + 2800 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7863991683939994, + "newModel": 0.43942185715960336, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E450/vignette3.png", + "isMetal": false, + "launchDate": 1238428800000, + "maxISO": 1600, + "name": "Olympus E450", + "pixelDepth": 10, + "pixels": 10416000, + "price": 443, + "resolution": [ + 3720, + 2800 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000001, + "lowPrice": 0.20587046213519297, + "newModel": 0.4874675526148574, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E5/vignette3.png", + "isMetal": false, + "launchDate": 1284393600000, + "maxISO": 6400, + "name": "Olympus E5", + "pixelDepth": 12, + "pixels": 12632064, + "price": 1699, + "resolution": [ + 4096, + 3084 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 800 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7779243274424468, + "newModel": 0.22109739830133673, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E510/vignette3.png", + "isMetal": false, + "launchDate": 1173024000000, + "maxISO": 1600, + "name": "Olympus E510", + "pixelDepth": 10, + "pixels": 10416000, + "price": 593, + "resolution": [ + 3720, + 2800 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07462558898761443, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.3487729526151192, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E520/vignette3.png", + "isMetal": false, + "launchDate": 1210608000000, + "maxISO": 1600, + "name": "Olympus E520", + "pixelDepth": 10, + "pixels": 10416000, + "price": 450, + "resolution": [ + 3720, + 2800 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7838859060402698, + "newModel": 0.4574842364369934, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E600/vignette3.png", + "isMetal": false, + "launchDate": 1251561600000, + "maxISO": 3200, + "name": "Olympus E600", + "pixelDepth": 12, + "pixels": 12632064, + "price": 490, + "resolution": [ + 4096, + 3084 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6776033651047088, + "newModel": 0.43416924282280067, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/E620/vignette3.png", + "isMetal": false, + "launchDate": 1235404800000, + "maxISO": 3200, + "name": "Olympus E620", + "pixelDepth": 12, + "pixels": 12644400, + "price": 618, + "resolution": [ + 4100, + 3084 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 64, + 25600 + ], + "assessment": { + "astronomy": 0.7681262391569119, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7947135702942201, + "portrait": 0.7569656133868935, + "scenery": 0.7938956988929231, + "sports": 0.922442146520365, + "travel": 0.4999999999999997 + }, + "autoFocus": 121, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 60, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Olympus OM-D E-M1 Mark II", + "pixelDepth": 20, + "pixels": 20498880, + "price": 2000, + "resolution": [ + 5240, + 3912 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.49999999999999667, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 800, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1/vignette3.png", + "isMetal": true, + "launchDate": 1378742400000, + "maxISO": 25600, + "name": "Olympus OM-D E-M1", + "pixelDepth": 16, + "pixels": 16110080, + "price": 1399, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.6128220755207755, + "lowPrice": 0.609096385542166, + "newModel": 0.6775019875015178, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5572072098756068 + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1440432000000, + "maxISO": 25600, + "name": "Olympus OM-D E-M10 Mark II", + "pixelDepth": 16, + "pixels": 16110080, + "price": 650, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 342 + }, + { + "ISO": [ + 200, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.4999999999999973, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10/vignette3.png", + "isMetal": true, + "launchDate": 1390924800000, + "maxISO": 25600, + "name": "Olympus OM-D E-M10", + "pixelDepth": 16, + "pixels": 16110080, + "price": 700, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5407067040274806, + "lowPrice": 0.5000000000000002, + "newModel": 0.5811554917614258, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5346221378053997 + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5_Mark_II/vignette3.png", + "isMetal": true, + "launchDate": 1423065600000, + "maxISO": 25600, + "name": "Olympus OM-D E-M5 Mark II", + "pixelDepth": 16, + "pixels": 16110080, + "price": 1100, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 417 + }, + { + "ISO": [ + 200, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5362743005879058, + "lowPrice": 0.5002492512472553, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.5317947310647645 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5/vignette3.png", + "isMetal": false, + "launchDate": 1328630400000, + "maxISO": 25600, + "name": "Olympus OM-D E-M5", + "pixelDepth": 16, + "pixels": 16110080, + "price": 999, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 425 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999999, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.4999999999999997 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-P5/vignette3.png", + "isMetal": true, + "launchDate": 1368115200000, + "maxISO": 25600, + "name": "Olympus PEN E-P5", + "pixelDepth": 16, + "pixels": 16110080, + "price": 1000, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.780014451840753, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.5717193397980831 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL5/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 25600, + "name": "Olympus PEN E-PL5", + "pixelDepth": 16, + "pixels": 16110080, + "price": 699, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 279 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7151478602554087, + "lowPrice": 0.7774999999999945, + "newModel": 0.5304164978937393, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5652509571929268 + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL7/vignette3.png", + "isMetal": true, + "launchDate": 1409155200000, + "maxISO": 25600, + "name": "Olympus PEN E-PL7", + "pixelDepth": 16, + "pixels": 16110080, + "price": 600, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 309 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7862428552525458, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.918078369905959, + "travel": 0.5818623594201947 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PM2/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 25600, + "name": "Olympus PEN E-PM2", + "pixelDepth": 16, + "pixels": 16110080, + "price": 599, + "resolution": [ + 4640, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 223 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4493673838990525, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP1/vignette3.png", + "isMetal": false, + "launchDate": 1245081600000, + "maxISO": 6400, + "name": "Olympus PEN EP1", + "pixelDepth": 12, + "pixels": 12644400, + "price": 1098, + "resolution": [ + 4100, + 3084 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4638099462065186, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP2/vignette3.png", + "isMetal": false, + "launchDate": 1257350400000, + "maxISO": 6400, + "name": "Olympus PEN EP2", + "pixelDepth": 12, + "pixels": 12644400, + "price": 1100, + "resolution": [ + 4100, + 3084 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5797773392152289, + "travel": 0.4999999999999997 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP3/vignette3.png", + "isMetal": true, + "launchDate": 1309363200000, + "maxISO": 12800, + "name": "Olympus PEN EP3", + "pixelDepth": 12, + "pixels": 12403200, + "price": 1000, + "resolution": [ + 4080, + 3040 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7779851770197644, + "lowPrice": 0.7775606210893378, + "newModel": 0.4713464098737795, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.5681479853800597 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL1/vignette3.png", + "isMetal": true, + "launchDate": 1265126400000, + "maxISO": 3200, + "name": "Olympus PEN EPL1", + "pixelDepth": 12, + "pixels": 12632064, + "price": 599, + "resolution": [ + 4096, + 3084 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 296 + }, + { + "ISO": [ + 200, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.49529561480541173, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08746015737559586, + "travel": 0.1999999999999999 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL2/vignette3.png", + "isMetal": false, + "launchDate": 1294243200000, + "maxISO": 6400, + "name": "Olympus PEN EPL2", + "pixelDepth": 12, + "pixels": 12632064, + "price": 599, + "resolution": [ + 4096, + 3084 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7855068493150691, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.918078369905959, + "travel": 0.4999999999999997 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL3/vignette3.png", + "isMetal": true, + "launchDate": 1309363200000, + "maxISO": 12800, + "name": "Olympus PEN EPL3", + "pixelDepth": 12, + "pixels": 12403200, + "price": 460, + "resolution": [ + 4080, + 3040 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.918078369905959, + "travel": 0.4999999999999997 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 5.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPM1/vignette3.png", + "isMetal": true, + "launchDate": 1309363200000, + "maxISO": 12800, + "name": "Olympus PEN EPM1", + "pixelDepth": 12, + "pixels": 12403200, + "price": 499, + "resolution": [ + 4080, + 3040 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 25600 + ], + "assessment": { + "astronomy": 0.7684955031908199, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5726361670492659, + "lowPrice": 0.5000000000000002, + "newModel": 0.785412816207799, + "portrait": 0.7572868840213457, + "scenery": 0.7926129370273821, + "sports": 0.9203087175298793, + "travel": 0.5486631326330748 + }, + "autoFocus": 81, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/PEN-F/vignette3.png", + "isMetal": true, + "launchDate": 1453824000000, + "maxISO": 25600, + "name": "Olympus PEN-F", + "pixelDepth": 20, + "pixels": 20300800, + "price": 1200, + "resolution": [ + 5200, + 3904 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 373 + }, + { + "ISO": [ + 64, + 1600 + ], + "assessment": { + "astronomy": 0.07506642524478498, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7869155797003347, + "newModel": 0.3933539059946349, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07245345875816203, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SP_565_UZ/vignette3.png", + "isMetal": false, + "launchDate": 1219593600000, + "maxISO": 1600, + "name": "Olympus SP 565 UZ", + "pixelDepth": 10, + "pixels": 10046688, + "price": 433, + "resolution": [ + 3664, + 2742 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 64, + 6400 + ], + "assessment": { + "astronomy": 0.09184912717672215, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7822105263157916, + "newModel": 0.24407239113139745, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07245345875816203, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SP_570_UZ/vignette3.png", + "isMetal": false, + "launchDate": 1200931200000, + "maxISO": 6400, + "name": "Olympus SP 570 UZ", + "pixelDepth": 10, + "pixels": 10046688, + "price": 520, + "resolution": [ + 3664, + 2742 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.09950000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000016, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Stylus1/vignette3.png", + "isMetal": false, + "launchDate": 1382976000000, + "maxISO": 12800, + "name": "Olympus Stylus1", + "pixelDepth": 12, + "pixels": 11968000, + "price": 699, + "resolution": [ + 4000, + 2992 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.0992896951943043, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.6060336964889568, + "lowPrice": 0.780541944127943, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.46319057892844184, + "travel": 0.5561613545026597 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/XZ-2_iHS/vignette3.png", + "isMetal": false, + "launchDate": 1347811200000, + "maxISO": 12800, + "name": "Olympus XZ-2 iHS", + "pixelDepth": 12, + "pixels": 11896224, + "price": 549, + "resolution": [ + 3984, + 2986 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 346 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.09228079614586604, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7804838709677436, + "lowPrice": 0.7836646718468486, + "newModel": 0.49529561480541173, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.08116981209654213, + "travel": 0.4385198821796793 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Olympus", + "flash": false, + "frameRate": 2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/XZ1/vignette3.png", + "isMetal": false, + "launchDate": 1294243200000, + "maxISO": 6400, + "name": "Olympus XZ1", + "pixelDepth": 10, + "pixels": 10156800, + "price": 494, + "resolution": [ + 3680, + 2760 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 275 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07501242967942229, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7872729469602328, + "newModel": 0.38114424349938836, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/DMC_FZ28/vignette3.png", + "isMetal": false, + "launchDate": 1216569600000, + "maxISO": 1600, + "name": "Panasonic DMC FZ28", + "pixelDepth": 10, + "pixels": 10101672, + "price": 426, + "resolution": [ + 3668, + 2754 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7684339285286038, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7976517087388207, + "portrait": 0.7572262931000363, + "scenery": 0.7928172707242244, + "sports": 0.9257801806104143, + "travel": 0.4999999999999997 + }, + "autoFocus": 225, + "bluetooth": true, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DC-GH5/vignette3.png", + "isMetal": true, + "launchDate": 1483459200000, + "maxISO": 25600, + "name": "Panasonic Lumix DC-GH5", + "pixelDepth": 20, + "pixels": 20332032, + "price": 2000, + "resolution": [ + 5208, + 3904 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 645 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7890575539568294, + "newModel": 0.38114424349938836, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_FX150/vignette3.png", + "isMetal": false, + "launchDate": 1216569600000, + "maxISO": 1600, + "name": "Panasonic Lumix DMC FX150", + "pixelDepth": 14, + "pixels": 14721996, + "price": 390, + "resolution": [ + 4429, + 3324 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5420363153232955, + "newModel": 0.3988588623602434, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G1/vignette3.png", + "isMetal": false, + "launchDate": 1221148800000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC G1", + "pixelDepth": 12, + "pixels": 12118288, + "price": 790, + "resolution": [ + 4018, + 3016 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.4738306857015196, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.09011911411139363, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G10/vignette3.png", + "isMetal": false, + "launchDate": 1267891200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC G10", + "pixelDepth": 12, + "pixels": 12000000, + "price": 600, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.4738306857015196, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.09011911411139363, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G2/vignette3.png", + "isMetal": false, + "launchDate": 1267891200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC G2", + "pixelDepth": 12, + "pixels": 12000000, + "price": 599, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.6243849712365716, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.07402016607354676, + "travel": 0.5587468760938182 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G3/vignette3.png", + "isMetal": false, + "launchDate": 1305129600000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC G3", + "pixelDepth": 16, + "pixels": 15962112, + "price": 599, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 336 + }, + { + "ISO": [ + 160, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 20, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G5/vignette3.png", + "isMetal": false, + "launchDate": 1342540800000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC G5", + "pixelDepth": 16, + "pixels": 16054528, + "price": 650, + "resolution": [ + 4624, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7793057324840699, + "newModel": 0.4577835952643776, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF1/vignette3.png", + "isMetal": false, + "launchDate": 1251820800000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC GF1", + "pixelDepth": 12, + "pixels": 12118288, + "price": 570, + "resolution": [ + 4018, + 3016 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7816405228758168, + "lowPrice": 0.7775606210893378, + "newModel": 0.49095776088763216, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08784330484330488, + "travel": 0.4433003897388093 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF2/vignette3.png", + "isMetal": false, + "launchDate": 1288800000000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC GF2", + "pixelDepth": 12, + "pixels": 12329408, + "price": 599, + "resolution": [ + 4088, + 3016 + ], + "touchScreen": true, + "video": false, + "waterproof": false, + "weight": 265 + }, + { + "ISO": [ + 160, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07643608866238999, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF3/vignette3.png", + "isMetal": false, + "launchDate": 1307894400000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC GF3", + "pixelDepth": 12, + "pixels": 12112256, + "price": 699, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF5/vignette3.png", + "isMetal": false, + "launchDate": 1333555200000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC GF5", + "pixelDepth": 12, + "pixels": 12112256, + "price": 599, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5805915492957675, + "newModel": 0.4999999999999993, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 20, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF6/vignette3.png", + "isMetal": true, + "launchDate": 1365436800000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC GF6", + "pixelDepth": 16, + "pixels": 15962112, + "price": 680, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5262343637670737, + "newModel": 0.435263218452224, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH1/vignette3.png", + "isMetal": false, + "launchDate": 1236009600000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC GH1", + "pixelDepth": 12, + "pixels": 12118288, + "price": 880, + "resolution": [ + 4018, + 3016 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4879463588599421, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH2/vignette3.png", + "isMetal": false, + "launchDate": 1284998400000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC GH2", + "pixelDepth": 16, + "pixels": 16526720, + "price": 1100, + "resolution": [ + 4760, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 160, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 4.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GX1/vignette3.png", + "isMetal": true, + "launchDate": 1320595200000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC GX1", + "pixelDepth": 16, + "pixels": 15962112, + "price": 699, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07498410914110726, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5086267210380269, + "newModel": 0.22422653820654423, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_L10/vignette3.png", + "isMetal": false, + "launchDate": 1188403200000, + "maxISO": 1600, + "name": "Panasonic Lumix DMC L10", + "pixelDepth": 10, + "pixels": 10129182, + "price": 964, + "resolution": [ + 3682, + 2751 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 25600 + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.7947135702942201, + "portrait": 0.7577852385599273, + "scenery": 0.7966064796863366, + "sports": 0.9280927874100128, + "travel": 0.6000000000000001 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX10/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC LX10", + "pixelDepth": 20, + "pixels": 20108032, + "price": 699, + "resolution": [ + 5488, + 3664 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 3200 + ], + "assessment": { + "astronomy": 0.08158626796976341, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.3920642881983111, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX3/vignette3.png", + "isMetal": false, + "launchDate": 1219248000000, + "maxISO": 3200, + "name": "Panasonic Lumix DMC LX3", + "pixelDepth": 10, + "pixels": 10101672, + "price": 450, + "resolution": [ + 3668, + 2754 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.09159248417473735, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7849727891156452, + "newModel": 0.48367497900914785, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX5/vignette3.png", + "isMetal": false, + "launchDate": 1279641600000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC LX5", + "pixelDepth": 10, + "pixels": 9980928, + "price": 470, + "resolution": [ + 3648, + 2736 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.0901815952879145, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.5000000000000002, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.9219632107023416, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX7/vignette3.png", + "isMetal": true, + "launchDate": 1342540800000, + "maxISO": 12800, + "name": "Panasonic Lumix DMC LX7", + "pixelDepth": 10, + "pixels": 9616512, + "price": 450, + "resolution": [ + 3792, + 2536 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 25600 + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000013, + "lowPrice": 0.5223287671232876, + "newModel": 0.5083073264676934, + "portrait": 0.7577852385599273, + "scenery": 0.7913335562244795, + "sports": 0.9305153256238644, + "travel": 0.4999999999999997 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ1000/vignette3.png", + "isMetal": true, + "launchDate": 1402502400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-FZ1000", + "pixelDepth": 20, + "pixels": 20108032, + "price": 900, + "resolution": [ + 5488, + 3664 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 780 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5077518978895429, + "lowPrice": 0.6435495207667674, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.5077038001485237 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ150/vignette3.png", + "isMetal": false, + "launchDate": 1314288000000, + "maxISO": 6400, + "name": "Panasonic LUMIX DMC-FZ150", + "pixelDepth": 12, + "pixels": 12112256, + "price": 630, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 484 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ200/vignette3.png", + "isMetal": false, + "launchDate": 1342540800000, + "maxISO": 6400, + "name": "Panasonic LUMIX DMC-FZ200", + "pixelDepth": 12, + "pixels": 12112256, + "price": 600, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 537 + }, + { + "ISO": [ + 80, + 25600 + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7947135702942201, + "portrait": 0.7577852385599273, + "scenery": 0.7913335562244795, + "sports": 0.9305153256238644, + "travel": 0.4999999999999997 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ2000/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-FZ2000", + "pixelDepth": 20, + "pixels": 20108032, + "price": 1200, + "resolution": [ + 5488, + 3664 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.652456703667635, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.9329549431761037, + "travel": 0.4999999999999997 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ330/vignette3.png", + "isMetal": false, + "launchDate": 1436976000000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-FZ330", + "pixelDepth": 12, + "pixels": 12112256, + "price": 600, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 691 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.788620117127104, + "newModel": 0.5000000000000014, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ70/vignette3.png", + "isMetal": false, + "launchDate": 1374076800000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-FZ70", + "pixelDepth": 16, + "pixels": 16054528, + "price": 399, + "resolution": [ + 4624, + 3472 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 562 + }, + { + "ISO": [ + 160, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.4999999999999999, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-G6/vignette3.png", + "isMetal": true, + "launchDate": 1366732800000, + "maxISO": 25600, + "name": "Panasonic LUMIX DMC-G6", + "pixelDepth": 16, + "pixels": 16054528, + "price": 750, + "resolution": [ + 4624, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.7947135702942201, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9329098228663452, + "travel": 0.4999999999999997 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-G80/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-G80", + "pixelDepth": 16, + "pixels": 15962112, + "price": 900, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 125, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5142987351549673, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.5139947079947079 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH3/vignette3.png", + "isMetal": true, + "launchDate": 1347811200000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GH3", + "pixelDepth": 16, + "pixels": 16054528, + "price": 1300, + "resolution": [ + 4624, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 470 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5166240245186735, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000037, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.9329549431761037, + "travel": 0.5161471125474214 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH4/vignette3.png", + "isMetal": true, + "launchDate": 1391702400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GH4", + "pixelDepth": 16, + "pixels": 16054528, + "price": 1700, + "resolution": [ + 4624, + 3472 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 465 + }, + { + "ISO": [ + 125, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.791105053176385, + "lowPrice": 0.7774999999999945, + "newModel": 0.4999999999999982, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.5889682780620483 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM1/vignette3.png", + "isMetal": false, + "launchDate": 1381939200000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GM1", + "pixelDepth": 16, + "pixels": 15962112, + "price": 600, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 173 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5356718768052593, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM5/vignette3.png", + "isMetal": false, + "launchDate": 1410710400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GM5", + "pixelDepth": 16, + "pixels": 15962112, + "price": 650, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 125, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5002492512472553, + "newModel": 0.49999999999999734, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX7/vignette3.png", + "isMetal": true, + "launchDate": 1375286400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GX7", + "pixelDepth": 16, + "pixels": 15962112, + "price": 999, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7684955031908199, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5310506986743073, + "lowPrice": 0.5000000000000002, + "newModel": 0.652456703667635, + "portrait": 0.7572868840213457, + "scenery": 0.7926129370273821, + "sports": 0.9202082067600574, + "travel": 0.5281263875886049 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX8/vignette3.png", + "isMetal": true, + "launchDate": 1436976000000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GX8", + "pixelDepth": 20, + "pixels": 20300800, + "price": 1200, + "resolution": [ + 5200, + 3904 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 435 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5637677017282634, + "lowPrice": 0.540338983050848, + "newModel": 0.7884656742453423, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5390282916213289, + "travel": 0.5456816567615795 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 40, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX80/vignette3.png", + "isMetal": true, + "launchDate": 1459785600000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-GX80", + "pixelDepth": 16, + "pixels": 15962112, + "price": 800, + "resolution": [ + 4608, + 3464 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 383 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833333333333332, + "newModel": 0.4999999999999999, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-LF1/vignette3.png", + "isMetal": true, + "launchDate": 1366732800000, + "maxISO": 12800, + "name": "Panasonic LUMIX DMC-LF1", + "pixelDepth": 12, + "pixels": 12112256, + "price": 500, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5356718768052593, + "portrait": 0.23214285714285718, + "scenery": 0.5349047177886246, + "sports": 0.9282101545000288, + "travel": 0.4999999999999997 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-LX100/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-LX100", + "pixelDepth": 12, + "pixels": 12813312, + "price": 899, + "resolution": [ + 4128, + 3104 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 25600 + ], + "assessment": { + "astronomy": 0.7689126965844876, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7810649350649359, + "lowPrice": 0.5688059701492514, + "newModel": 0.7843904802557701, + "portrait": 0.7577852385599273, + "scenery": 0.7913335562244795, + "sports": 0.9305153256238644, + "travel": 0.5735143996455466 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 50, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS100/vignette3.png", + "isMetal": true, + "launchDate": 1451923200000, + "maxISO": 25600, + "name": "Panasonic Lumix DMC-ZS100", + "pixelDepth": 20, + "pixels": 20108032, + "price": 700, + "resolution": [ + 5488, + 3664 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 270 + }, + { + "ISO": [ + 80, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7868641561878553, + "lowPrice": 0.7885714285714326, + "newModel": 0.5704789664781744, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.5828093268052286 + }, + "autoFocus": 23, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS50/vignette3.png", + "isMetal": true, + "launchDate": 1420387200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-ZS50", + "pixelDepth": 12, + "pixels": 12112256, + "price": 400, + "resolution": [ + 4016, + 3016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 217 + }, + { + "ISO": [ + 80, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7844324324324303, + "lowPrice": 0.7860344827586178, + "newModel": 0.7843904802557701, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.9329549431761037, + "travel": 0.579036395147314 + }, + "autoFocus": 49, + "bluetooth": false, + "brand": "Panasonic", + "flash": false, + "frameRate": 40, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS60/vignette3.png", + "isMetal": true, + "launchDate": 1451923200000, + "maxISO": 6400, + "name": "Panasonic Lumix DMC-ZS60", + "pixelDepth": 18, + "pixels": 18115456, + "price": 450, + "resolution": [ + 4912, + 3688 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 240 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.6843044393014942, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4733707601890019, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.4981685791550049, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 1.1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/645D/vignette3.png", + "isMetal": false, + "launchDate": 1267372800000, + "maxISO": 1600, + "name": "Pentax 645D", + "pixelDepth": 40, + "pixels": 41218048, + "price": 9400, + "resolution": [ + 7424, + 5552 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 204800 + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.7040822943449921, + "travel": 0.4274213155703581 + }, + "autoFocus": 27, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/645Z/vignette3.png", + "isMetal": true, + "launchDate": 1397491200000, + "maxISO": 204800, + "name": "Pentax 645Z", + "pixelDepth": 51, + "pixels": 51261600, + "price": 8499, + "resolution": [ + 8268, + 6200 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1470 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K_01/vignette3.png", + "isMetal": false, + "launchDate": 1328112000000, + "maxISO": 25600, + "name": "Pentax K 01", + "pixelDepth": 16, + "pixels": 16150592, + "price": 899, + "resolution": [ + 4936, + 3272 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 561 + }, + { + "ISO": [ + 100, + 204800 + ], + "assessment": { + "astronomy": 0.7991884704521022, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7863670909985402, + "portrait": 0.7987767219178751, + "scenery": 0.8372544396217364, + "sports": 0.8187182533260141, + "travel": 0.6000000000000001 + }, + "autoFocus": 33, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 4.4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-1/vignette3.png", + "isMetal": true, + "launchDate": 1455638400000, + "maxISO": 204800, + "name": "Pentax K-1", + "pixelDepth": 36, + "pixels": 36590400, + "price": 1800, + "resolution": [ + 7392, + 4950 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.7855073257873711, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.6110358267573983, + "portrait": 0.7703483691026713, + "scenery": 0.8181443144048468, + "sports": 0.7844544401853034, + "travel": 0.6000000000000001 + }, + "autoFocus": 27, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 8.3, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-3_II/vignette3.png", + "isMetal": true, + "launchDate": 1429718400000, + "maxISO": 51200, + "name": "Pentax K-3 II", + "pixelDepth": 24, + "pixels": 24514560, + "price": 1100, + "resolution": [ + 6080, + 4032 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.7855073257873711, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999989, + "portrait": 0.7703483691026713, + "scenery": 0.8312799771905217, + "sports": 0.7844544401853034, + "travel": 0.4999999999999997 + }, + "autoFocus": 27, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 8.3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-3/vignette3.png", + "isMetal": true, + "launchDate": 1381161600000, + "maxISO": 51200, + "name": "Pentax K-3", + "pixelDepth": 24, + "pixels": 24514560, + "price": 1300, + "resolution": [ + 6080, + 4032 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7849727891156452, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7904757995564279, + "sports": 0.08709750835940046, + "travel": 0.6000000000000001 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-30/vignette3.png", + "isMetal": true, + "launchDate": 1337616000000, + "maxISO": 25600, + "name": "Pentax K-30", + "pixelDepth": 16, + "pixels": 16150592, + "price": 470, + "resolution": [ + 4936, + 3272 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 51200 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5002492512472553, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.6000000000000001 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-5_II/vignette3.png", + "isMetal": false, + "launchDate": 1347292800000, + "maxISO": 51200, + "name": "Pentax K-5 II", + "pixelDepth": 16, + "pixels": 16084992, + "price": 999, + "resolution": [ + 4928, + 3264 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 680 + }, + { + "ISO": [ + 80, + 51200 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.6000000000000001 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 7, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/K-5_IIs/vignette3.png", + "isMetal": false, + "launchDate": 1347292800000, + "maxISO": 51200, + "name": "Pentax K-5 IIs", + "pixelDepth": 16, + "pixels": 16393728, + "price": 1199, + "resolution": [ + 4992, + 3284 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 680 + }, + { + "ISO": [ + 100, + 51600 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.4999999999999988, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-50/vignette3.png", + "isMetal": true, + "launchDate": 1370966400000, + "maxISO": 51600, + "name": "Pentax K-50", + "pixelDepth": 16, + "pixels": 16150592, + "price": 599, + "resolution": [ + 4936, + 3272 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 590 + }, + { + "ISO": [ + 100, + 51600 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.4999999999999988, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-500/vignette3.png", + "isMetal": true, + "launchDate": 1370966400000, + "maxISO": 51600, + "name": "Pentax K-500", + "pixelDepth": 16, + "pixels": 16150592, + "price": 600, + "resolution": [ + 4936, + 3272 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 586 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.7921735416410526, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5509399968123966, + "newModel": 0.5301265009296511, + "portrait": 0.7576143941853541, + "scenery": 0.8086863944353474, + "sports": 0.14159419166227288, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K-S1/vignette3.png", + "isMetal": true, + "launchDate": 1409068800000, + "maxISO": 51200, + "name": "Pentax K-S1", + "pixelDepth": 20, + "pixels": 20166656, + "price": 749, + "resolution": [ + 5504, + 3664 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07474809247089696, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.2181843616746698, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K10D/vignette3.png", + "isMetal": false, + "launchDate": 1158076800000, + "maxISO": 1600, + "name": "Pentax K10D", + "pixelDepth": 10, + "pixels": 10328064, + "price": 900, + "resolution": [ + 3936, + 2624 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07491549761011086, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.597519313304726, + "newModel": 0.24558198458970612, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.0784042080851938, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 2.8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K200D/vignette3.png", + "isMetal": false, + "launchDate": 1201017600000, + "maxISO": 1600, + "name": "Pentax K200D", + "pixelDepth": 10, + "pixels": 10191936, + "price": 660, + "resolution": [ + 3896, + 2616 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5459308666017538, + "newModel": 0.24558198458970612, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K20D/vignette3.png", + "isMetal": false, + "launchDate": 1201017600000, + "maxISO": 6400, + "name": "Pentax K20D", + "pixelDepth": 14, + "pixels": 14645312, + "price": 770, + "resolution": [ + 4688, + 3124 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 51200 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.4999999999999993, + "lowPrice": 0.4055555555555558, + "newModel": 0.4878779963391795, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K5/vignette3.png", + "isMetal": false, + "launchDate": 1284912000000, + "maxISO": 51200, + "name": "Pentax K5", + "pixelDepth": 16, + "pixels": 16084992, + "price": 1600, + "resolution": [ + 4928, + 3264 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 740 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4460967507986353, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/K7/vignette3.png", + "isMetal": false, + "launchDate": 1242748800000, + "maxISO": 6400, + "name": "Pentax K7", + "pixelDepth": 14, + "pixels": 14852096, + "price": 1900, + "resolution": [ + 4736, + 3136 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08155286617093023, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7804838709677436, + "newModel": 0.40172294729228947, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07829684601113168, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/KM/vignette3.png", + "isMetal": false, + "launchDate": 1222012800000, + "maxISO": 3200, + "name": "Pentax KM", + "pixelDepth": 10, + "pixels": 10191936, + "price": 550, + "resolution": [ + 3896, + 2616 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.4891793045993771, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.08709750835940046, + "travel": 0.4999999999999997 + }, + "autoFocus": 11, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Kr/vignette3.png", + "isMetal": false, + "launchDate": 1286553600000, + "maxISO": 12800, + "name": "Pentax Kr", + "pixelDepth": 12, + "pixels": 12212224, + "price": 700, + "resolution": [ + 4288, + 2848 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 544 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6239120879120843, + "newModel": 0.45925794491957994, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 4.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Kx/vignette3.png", + "isMetal": false, + "launchDate": 1253116800000, + "maxISO": 12800, + "name": "Pentax Kx", + "pixelDepth": 12, + "pixels": 12358212, + "price": 640, + "resolution": [ + 4309, + 2868 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000009, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/MX-1/vignette3.png", + "isMetal": true, + "launchDate": 1357488000000, + "maxISO": 12800, + "name": "Pentax MX-1", + "pixelDepth": 12, + "pixels": 12088160, + "price": 499, + "resolution": [ + 4016, + 3010 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 125, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Q/vignette3.png", + "isMetal": false, + "launchDate": 1308672000000, + "maxISO": 6400, + "name": "Pentax Q", + "pixelDepth": 12, + "pixels": 12000000, + "price": 799, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7885714285714326, + "lowPrice": 0.7833885932814528, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.5, + "travel": 0.5853521126760562 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Pentax", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Q10/vignette3.png", + "isMetal": false, + "launchDate": 1347292800000, + "maxISO": 6400, + "name": "Pentax Q10", + "pixelDepth": 12, + "pixels": 12000000, + "price": 499, + "resolution": [ + 4000, + 3000 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 200 + }, + { + "ISO": [ + 35, + 3200 + ], + "assessment": { + "astronomy": 0.7054902216427643, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4965516706809994, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.49315579740607685, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 0.7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/IQ180_Digital_Back/vignette3.png", + "isMetal": false, + "launchDate": 1295798400000, + "maxISO": 3200, + "name": "Phase One IQ180 Digital Back", + "pixelDepth": 80, + "pixels": 81130080, + "price": 42490, + "resolution": [ + 10380, + 7816 + ], + "touchScreen": true, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 3200 + ], + "assessment": { + "astronomy": 0.7054902216427643, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.4433996683780272, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.499768472551638, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 1.2, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/P40_Plus/vignette3.png", + "isMetal": false, + "launchDate": 1240934400000, + "maxISO": 3200, + "name": "Phase One P40 Plus", + "pixelDepth": 40, + "pixels": 40811392, + "price": 19500, + "resolution": [ + 7372, + 5536 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 800 + ], + "assessment": { + "astronomy": 0.6789590464394789, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.2200207290364855, + "portrait": 0.7999626495104558, + "scenery": 0.9329794185094133, + "sports": 0.4926892715782085, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 0.67, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/P45_Plus/vignette3.png", + "isMetal": false, + "launchDate": 1167580800000, + "maxISO": 800, + "name": "Phase One P45 Plus", + "pixelDepth": 39, + "pixels": 39447224, + "price": 32990, + "resolution": [ + 7246, + 5444 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 3200 + ], + "assessment": { + "astronomy": 0.7054902216427643, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.3784216378941073, + "portrait": 0.8000000000000005, + "scenery": 0.933, + "sports": 0.49670835035303734, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Phase One", + "flash": false, + "frameRate": 1, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/P65_Plus/vignette3.png", + "isMetal": false, + "launchDate": 1215964800000, + "maxISO": 3200, + "name": "Phase One P65 Plus", + "pixelDepth": 60, + "pixels": 60480288, + "price": 39900, + "resolution": [ + 8984, + 6732 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7864513069328588, + "lowPrice": 0.540338983050848, + "newModel": 0.6367447328611162, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.08141121495327112, + "travel": 0.5821811517518162 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Ricoh", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/GR_II/vignette3.png", + "isMetal": true, + "launchDate": 1434470400000, + "maxISO": 25600, + "name": "Ricoh GR II", + "pixelDepth": 16, + "pixels": 16216320, + "price": 800, + "resolution": [ + 4944, + 3280 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 221 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.4999999999999992, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Ricoh", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/GR/vignette3.png", + "isMetal": true, + "launchDate": 1366128000000, + "maxISO": 25600, + "name": "Ricoh GR", + "pixelDepth": 16, + "pixels": 16216320, + "price": 799, + "resolution": [ + 4944, + 3280 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 3200 + ], + "assessment": { + "astronomy": 0.08152527351808017, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7860344827586178, + "newModel": 0.47267626401982743, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EX1/vignette3.png", + "isMetal": false, + "launchDate": 1266595200000, + "maxISO": 3200, + "name": "Samsung EX1", + "pixelDepth": 10, + "pixels": 10250640, + "price": 450, + "resolution": [ + 3714, + 2760 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.780541944127943, + "newModel": 0.5000000000000002, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/EX2F/vignette3.png", + "isMetal": true, + "launchDate": 1341244800000, + "maxISO": 3200, + "name": "Samsung EX2F", + "pixelDepth": 12, + "pixels": 12393150, + "price": 549, + "resolution": [ + 4070, + 3045 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.767963968942561, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5448230521169204, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999987, + "portrait": 0.7568678042605349, + "scenery": 0.7978176549765145, + "sports": 0.17485598775152725, + "travel": 0.6160526505589617 + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 8.6, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/GALAXY_NX/vignette3.png", + "isMetal": false, + "launchDate": 1371657600000, + "maxISO": 25600, + "name": "Samsung GALAXY NX", + "pixelDepth": 20, + "pixels": 20597844, + "price": 1300, + "resolution": [ + 5546, + 3714 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 410 + }, + { + "ISO": [ + 50, + 1600 + ], + "assessment": { + "astronomy": 0.06971978751660024, + "durableBuild": 0.1999999999999999, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5898856238849349, + "portrait": 0.5, + "scenery": 0.8000000000000005, + "sports": 0.07402016607354676, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 4, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/Galaxy_S6_Edge/vignette3.png", + "isMetal": false, + "launchDate": 1425139200000, + "maxISO": 1600, + "name": "Samsung Galaxy S6 Edge", + "pixelDepth": 16, + "pixels": 15984000, + "price": 600, + "resolution": [ + 5328, + 3000 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2470739519371539, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/GX_20/vignette3.png", + "isMetal": false, + "launchDate": 1201104000000, + "maxISO": 6400, + "name": "Samsung GX 20", + "pixelDepth": 14, + "pixels": 14645312, + "price": 1060, + "resolution": [ + 4688, + 3124 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7112748815165891, + "newModel": 0.4689337662499292, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5797773392152289, + "travel": 0.4999999999999997 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_10/vignette3.png", + "isMetal": true, + "launchDate": 1262534400000, + "maxISO": 3200, + "name": "Samsung NX 10", + "pixelDepth": 14, + "pixels": 14033152, + "price": 610, + "resolution": [ + 4592, + 3056 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.4874675526148574, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_100/vignette3.png", + "isMetal": false, + "launchDate": 1284393600000, + "maxISO": 6400, + "name": "Samsung NX 100", + "pixelDepth": 14, + "pixels": 14695296, + "price": 499, + "resolution": [ + 4704, + 3124 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5509399968123966, + "newModel": 0.5000000000000002, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_1000/vignette3.png", + "isMetal": false, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Samsung NX 1000", + "pixelDepth": 20, + "pixels": 20427820, + "price": 749, + "resolution": [ + 5530, + 3694 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6104119565398675, + "newModel": 0.49467166549249286, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5797773392152289, + "travel": 0.4999999999999997 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_11/vignette3.png", + "isMetal": false, + "launchDate": 1293465600000, + "maxISO": 3200, + "name": "Samsung NX 11", + "pixelDepth": 14, + "pixels": 14033152, + "price": 649, + "resolution": [ + 4592, + 3056 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5605035174275096, + "newModel": 0.5000000000000002, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_20/vignette3.png", + "isMetal": true, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Samsung NX 20", + "pixelDepth": 20, + "pixels": 20427820, + "price": 719, + "resolution": [ + 5530, + 3694 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7574156331648266, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.7574156331648266, + "scenery": 0.9047003568345681, + "sports": 0.9035960760058871, + "travel": 0.4999999999999997 + }, + "autoFocus": 35, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_200/vignette3.png", + "isMetal": true, + "launchDate": 1314806400000, + "maxISO": 12800, + "name": "Samsung NX 200", + "pixelDepth": 20, + "pixels": 20243536, + "price": 899, + "resolution": [ + 5528, + 3662 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.5000000000000002, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_210/vignette3.png", + "isMetal": true, + "launchDate": 1334764800000, + "maxISO": 12800, + "name": "Samsung NX 210", + "pixelDepth": 20, + "pixels": 20427820, + "price": 899, + "resolution": [ + 5530, + 3694 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.767963968942561, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.49999999999999994, + "portrait": 0.7568678042605349, + "scenery": 0.7945249062106045, + "sports": 0.9096998997760598, + "travel": 0.4999999999999997 + }, + "autoFocus": 247, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_30/vignette3.png", + "isMetal": true, + "launchDate": 1388592000000, + "maxISO": 25600, + "name": "Samsung NX 30", + "pixelDepth": 20, + "pixels": 20597844, + "price": 1000, + "resolution": [ + 5546, + 3714 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.767963968942561, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.5000000000000002, + "portrait": 0.7568678042605349, + "scenery": 0.7945249062106045, + "sports": 0.9096998997760598, + "travel": 0.4999999999999997 + }, + "autoFocus": 105, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX_300/vignette3.png", + "isMetal": true, + "launchDate": 1357142400000, + "maxISO": 25600, + "name": "Samsung NX 300", + "pixelDepth": 20, + "pixels": 20597844, + "price": 750, + "resolution": [ + 5546, + 3714 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.789696014730465, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5356718768052593, + "portrait": 0.78260150860643, + "scenery": 0.8445449976008005, + "sports": 0.863331869802134, + "travel": 0.4999999999999997 + }, + "autoFocus": 205, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 15, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX1/vignette3.png", + "isMetal": true, + "launchDate": 1410710400000, + "maxISO": 51200, + "name": "Samsung NX1", + "pixelDepth": 28, + "pixels": 28166656, + "price": 1500, + "resolution": [ + 6496, + 4336 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 550 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.7570652809909236, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7863470725831935, + "lowPrice": 0.7774999999999945, + "newModel": 0.49999999999999895, + "portrait": 0.7570652809909236, + "scenery": 0.9044647245941736, + "sports": 0.7515917089083104, + "travel": 0.5820220068230356 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX1100/vignette3.png", + "isMetal": false, + "launchDate": 1365609600000, + "maxISO": 12800, + "name": "Samsung NX1100", + "pixelDepth": 20, + "pixels": 20427820, + "price": 600, + "resolution": [ + 5530, + 3694 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 222 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7680231925477633, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7857178161195241, + "lowPrice": 0.6104119565398675, + "newModel": 0.5000000000000007, + "portrait": 0.7569000413755361, + "scenery": 0.794289630177359, + "sports": 0.16952446197897722, + "travel": 0.5810531450277894 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Samsung", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX2000/vignette3.png", + "isMetal": false, + "launchDate": 1367337600000, + "maxISO": 25600, + "name": "Samsung NX2000", + "pixelDepth": 20, + "pixels": 20560704, + "price": 649, + "resolution": [ + 5536, + 3714 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 228 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.789696014730465, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7791860490003187, + "lowPrice": 0.540338983050848, + "newModel": 0.5811554917614258, + "portrait": 0.78260150860643, + "scenery": 0.8445449976008005, + "sports": 0.836872067404478, + "travel": 0.570277940985 + }, + "autoFocus": 209, + "bluetooth": true, + "brand": "Samsung", + "flash": false, + "frameRate": 9, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NX500/vignette3.png", + "isMetal": true, + "launchDate": 1423065600000, + "maxISO": 51200, + "name": "Samsung NX500", + "pixelDepth": 28, + "pixels": 28166656, + "price": 800, + "resolution": [ + 6496, + 4336 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 286 + }, + { + "ISO": [ + 100, + 16000 + ], + "assessment": { + "astronomy": 0.757124786697767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7885714285714326, + "newModel": 0.500000000000001, + "portrait": 0.7578318827615904, + "scenery": 0.8088067209032789, + "sports": 0.15281007824415999, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A3000/vignette3.png", + "isMetal": true, + "launchDate": 1377532800000, + "maxISO": 16000, + "name": "Sony A3000", + "pixelDepth": 20, + "pixels": 20093376, + "price": 400, + "resolution": [ + 5496, + 3656 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 16000 + ], + "assessment": { + "astronomy": 0.757124786697767, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7873744565469238, + "lowPrice": 0.7833333333333332, + "newModel": 0.5000000000000031, + "portrait": 0.7578318827615904, + "scenery": 0.8088067209032789, + "sports": 0.15281007824415999, + "travel": 0.5835785396731737 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A5000/vignette3.png", + "isMetal": false, + "launchDate": 1389024000000, + "maxISO": 16000, + "name": "Sony A5000", + "pixelDepth": 20, + "pixels": 20093376, + "price": 500, + "resolution": [ + 5496, + 3656 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 212 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7861386577120755, + "lowPrice": 0.7804838709677436, + "newModel": 0.5275181400190596, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.851176015876996, + "travel": 0.5817022089871295 + }, + "autoFocus": 179, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A5100/vignette3.png", + "isMetal": false, + "launchDate": 1408291200000, + "maxISO": 25600, + "name": "Sony A5100", + "pixelDepth": 24, + "pixels": 24240576, + "price": 550, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 224 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5405018411683207, + "newModel": 0.4999999999999988, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.8708446550476395, + "travel": 0.4999999999999997 + }, + "autoFocus": 179, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A6000/vignette3.png", + "isMetal": true, + "launchDate": 1392134400000, + "maxISO": 25600, + "name": "Sony A6000", + "pixelDepth": 24, + "pixels": 24240576, + "price": 799, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.4499999999999999, + "lightBuild": 0.5853605595441081, + "lowPrice": 0.5000000000000002, + "newModel": 0.7857329930118643, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.8708446550476395, + "travel": 0.5520921769047799 + }, + "autoFocus": 425, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A6300/vignette3.png", + "isMetal": true, + "launchDate": 1454428800000, + "maxISO": 51200, + "name": "Sony A6300", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1000, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 361 + }, + { + "ISO": [ + 100, + 51200 + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.5772727272727275, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.7952429470062747, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.8708446550476395, + "travel": 0.4999999999999997 + }, + "autoFocus": 425, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 11, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A6500/vignette3.png", + "isMetal": true, + "launchDate": 1475683200000, + "maxISO": 51200, + "name": "Sony A6500", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1400, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 51200 + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.4055555555555558, + "newModel": 0.5556135791067395, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.851176015876996, + "travel": 0.4999999999999997 + }, + "autoFocus": 117, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7_II/vignette3.png", + "isMetal": true, + "launchDate": 1416412800000, + "maxISO": 51200, + "name": "Sony A7 II", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1600, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5407067040274806, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999956, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.851176015876996, + "travel": 0.5346221378053997 + }, + "autoFocus": 117, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7/vignette3.png", + "isMetal": true, + "launchDate": 1381852800000, + "maxISO": 25600, + "name": "Sony A7", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1700, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 417 + }, + { + "ISO": [ + 50, + 102400 + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.6332034374702056, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.8378640915593707, + "travel": 0.4999999999999997 + }, + "autoFocus": 399, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7R_II/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 102400, + "name": "Sony A7R II", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3198, + "resolution": [ + 8000, + 5320 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 32000 + ], + "assessment": { + "astronomy": 0.7954545454545446, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.8000000000000005, + "portrait": 0.8000000000000005, + "scenery": 0.8603932729624846, + "sports": 0.8378640915593707, + "travel": 0.4999999999999997 + }, + "autoFocus": 425, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7R_III/vignette3.png", + "isMetal": true, + "launchDate": 1508860800000, + "maxISO": 32000, + "name": "Sony A7R III", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3200, + "resolution": [ + 8000, + 5320 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 25600 + ], + "assessment": { + "astronomy": 0.7930571715794911, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5460449527928192, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999956, + "portrait": 0.7986281521239487, + "scenery": 0.8662175586444613, + "sports": 0.7972095312509098, + "travel": 0.5376965929178139 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7R/vignette3.png", + "isMetal": true, + "launchDate": 1381852800000, + "maxISO": 25600, + "name": "Sony A7R", + "pixelDepth": 36, + "pixels": 36368640, + "price": 2300, + "resolution": [ + 7392, + 4920 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 408 + }, + { + "ISO": [ + 50, + 409600 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.6896551095281694, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 169, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7S_II/vignette3.png", + "isMetal": true, + "launchDate": 1441900800000, + "maxISO": 409600, + "name": "Sony A7S II", + "pixelDepth": 12, + "pixels": 12121088, + "price": 3000, + "resolution": [ + 4256, + 2848 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 409600 + ], + "assessment": { + "astronomy": 0.8000000000000005, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000004, + "portrait": 0.23214285714285718, + "scenery": 0.6271739130434784, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/A7S/vignette3.png", + "isMetal": true, + "launchDate": 1396713600000, + "maxISO": 409600, + "name": "Sony A7S", + "pixelDepth": 12, + "pixels": 12212224, + "price": 2499, + "resolution": [ + 4288, + 2848 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 50, + 204800 + ], + "assessment": { + "astronomy": 0.785537094844888, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7994803580749491, + "portrait": 0.7700629113951525, + "scenery": 0.8307183119161758, + "sports": 0.878889417328949, + "travel": 0.4999999999999997 + }, + "autoFocus": 693, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 20, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/a9/vignette3.png", + "isMetal": true, + "launchDate": 1492531200000, + "maxISO": 204800, + "name": "Sony a9", + "pixelDepth": 24, + "pixels": 24240576, + "price": 4500, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 1600 + ], + "assessment": { + "astronomy": 0.07499457070566203, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7872221738460448, + "newModel": 0.21656304589236866, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_100/vignette3.png", + "isMetal": false, + "launchDate": 1149436800000, + "maxISO": 1600, + "name": "Sony Alpha 100", + "pixelDepth": 10, + "pixels": 10119040, + "price": 427, + "resolution": [ + 3880, + 2608 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7063710957574427, + "newModel": 0.2265904080586503, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_200/vignette3.png", + "isMetal": false, + "launchDate": 1199635200000, + "maxISO": 3200, + "name": "Sony Alpha 200", + "pixelDepth": 10, + "pixels": 10119040, + "price": 611, + "resolution": [ + 3880, + 2608 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5223287671232876, + "newModel": 0.44584616997006904, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_230/vignette3.png", + "isMetal": false, + "launchDate": 1242576000000, + "maxISO": 3200, + "name": "Sony Alpha 230", + "pixelDepth": 10, + "pixels": 10119040, + "price": 900, + "resolution": [ + 3880, + 2608 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7833885932814528, + "newModel": 0.480158319890666, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_290/vignette3.png", + "isMetal": false, + "launchDate": 1275321600000, + "maxISO": 3200, + "name": "Sony Alpha 290", + "pixelDepth": 14, + "pixels": 14131200, + "price": 499, + "resolution": [ + 4600, + 3072 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5742148626817465, + "newModel": 0.2556945110907585, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07875190169689873, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_300/vignette3.png", + "isMetal": false, + "launchDate": 1201622400000, + "maxISO": 3200, + "name": "Sony Alpha 300", + "pixelDepth": 10, + "pixels": 10119040, + "price": 690, + "resolution": [ + 3880, + 2608 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.08158060306678926, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5438923933209653, + "newModel": 0.44584616997006904, + "portrait": 0.2240399921230124, + "scenery": 0.2240399921230124, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_330/vignette3.png", + "isMetal": false, + "launchDate": 1242576000000, + "maxISO": 3200, + "name": "Sony Alpha 330", + "pixelDepth": 10, + "pixels": 10119040, + "price": 780, + "resolution": [ + 3880, + 2608 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.2556945110907585, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_350/vignette3.png", + "isMetal": false, + "launchDate": 1201622400000, + "maxISO": 3200, + "name": "Sony Alpha 350", + "pixelDepth": 14, + "pixels": 14131200, + "price": 700, + "resolution": [ + 4600, + 3072 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5150757466706188, + "newModel": 0.44584616997006904, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_380/vignette3.png", + "isMetal": false, + "launchDate": 1242576000000, + "maxISO": 3200, + "name": "Sony Alpha 380", + "pixelDepth": 14, + "pixels": 14131200, + "price": 935, + "resolution": [ + 4600, + 3072 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 3200 + ], + "assessment": { + "astronomy": 0.07751827242524914, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.6708244274809205, + "newModel": 0.4807263812493066, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07755819150764996, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_390/vignette3.png", + "isMetal": false, + "launchDate": 1276012800000, + "maxISO": 3200, + "name": "Sony Alpha 390", + "pixelDepth": 14, + "pixels": 14131200, + "price": 620, + "resolution": [ + 4600, + 3072 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5805915492957675, + "newModel": 0.4690156471488247, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.08141121495327112, + "travel": 0.1999999999999999 + }, + "autoFocus": 9, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_450/vignette3.png", + "isMetal": false, + "launchDate": 1262620800000, + "maxISO": 12800, + "name": "Sony Alpha 450", + "pixelDepth": 14, + "pixels": 14033152, + "price": 680, + "resolution": [ + 4592, + 3056 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5693093341274658, + "newModel": 0.45718307173781214, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_500/vignette3.png", + "isMetal": false, + "launchDate": 1251302400000, + "maxISO": 12800, + "name": "Sony Alpha 500", + "pixelDepth": 12, + "pixels": 12166656, + "price": 699, + "resolution": [ + 4272, + 2848 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5225276166212549, + "newModel": 0.45718307173781214, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_550/vignette3.png", + "isMetal": false, + "launchDate": 1251302400000, + "maxISO": 12800, + "name": "Sony Alpha 550", + "pixelDepth": 14, + "pixels": 14033152, + "price": 899, + "resolution": [ + 4592, + 3056 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.48602562819374145, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_560/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony Alpha 560", + "pixelDepth": 14, + "pixels": 14033152, + "price": 650, + "resolution": [ + 4592, + 3056 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.540338983050848, + "newModel": 0.48602562819374145, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_580/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony Alpha 580", + "pixelDepth": 16, + "pixels": 16032768, + "price": 800, + "resolution": [ + 4912, + 3264 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.2243513616148157, + "portrait": 0.23214285714285718, + "scenery": 0.23214285714285718, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_700/vignette3.png", + "isMetal": false, + "launchDate": 1189008000000, + "maxISO": 6400, + "name": "Sony Alpha 700", + "pixelDepth": 12, + "pixels": 12246528, + "price": 1300, + "resolution": [ + 4288, + 2856 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.7704572785696823, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.45718307173781214, + "portrait": 0.7704572785696823, + "scenery": 0.9133867067232389, + "sports": 0.38354424209842136, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 3, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_850/vignette3.png", + "isMetal": false, + "launchDate": 1251302400000, + "maxISO": 6400, + "name": "Sony Alpha 850", + "pixelDepth": 24, + "pixels": 24611840, + "price": 2000, + "resolution": [ + 6080, + 4048 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 6400 + ], + "assessment": { + "astronomy": 0.7704572785696823, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.3979735610767237, + "portrait": 0.7704572785696823, + "scenery": 0.9133867067232389, + "sports": 0.45318308537722457, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_900/vignette3.png", + "isMetal": false, + "launchDate": 1220889600000, + "maxISO": 6400, + "name": "Sony Alpha 900", + "pixelDepth": 24, + "pixels": 24611840, + "price": 3000, + "resolution": [ + 6080, + 4048 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 125, + 25600 + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.781868221169668, + "lowPrice": 0.540338983050848, + "newModel": 0.5005642077701145, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.7506715684692546, + "travel": 0.5748646900582306 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC_RX100_III/vignette3.png", + "isMetal": true, + "launchDate": 1400169600000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC RX100 III", + "pixelDepth": 20, + "pixels": 20181312, + "price": 800, + "resolution": [ + 5496, + 3672 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 263 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.522251079660429, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.765272111911738, + "travel": 0.5211232696298297 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1/vignette3.png", + "isMetal": false, + "launchDate": 1347379200000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX1", + "pixelDepth": 24, + "pixels": 24240576, + "price": 2800, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 453 + }, + { + "ISO": [ + 64, + 25600 + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.4999999999999999, + "lowPrice": 0.5000000000000002, + "newModel": 0.6332034374702056, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.9250914391481908, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 14, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10_II/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX10 II", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1298, + "resolution": [ + 5496, + 3672 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 770 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.7575753910868758, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000011, + "lowPrice": 0.5000000000000002, + "newModel": 0.49999999999999956, + "portrait": 0.7575753910868758, + "scenery": 0.904804349946865, + "sports": 0.7506715684692546, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10/vignette3.png", + "isMetal": true, + "launchDate": 1381852800000, + "maxISO": 12800, + "name": "Sony Cyber-shot DSC-RX10", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1300, + "resolution": [ + 5496, + 3672 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 756 + }, + { + "ISO": [ + 160, + 25600 + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.49999999999999967, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.7506715684692546, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_II/vignette3.png", + "isMetal": true, + "launchDate": 1372262400000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX100 II", + "pixelDepth": 20, + "pixels": 20181312, + "price": 750, + "resolution": [ + 5496, + 3672 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 125, + 25600 + ], + "assessment": { + "astronomy": 0.7687482850711789, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5122372045389215, + "newModel": 0.6332034374702056, + "portrait": 0.7575753910868758, + "scenery": 0.7918235798115387, + "sports": 0.9250914391481908, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 16, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_IV/vignette3.png", + "isMetal": true, + "launchDate": 1433865600000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX100 IV", + "pixelDepth": 20, + "pixels": 20181312, + "price": 948, + "resolution": [ + 5496, + 3672 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 80, + 12800 + ], + "assessment": { + "astronomy": 0.7575753910868758, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.7808321445108233, + "lowPrice": 0.5000000000000002, + "newModel": 0.7952429470062747, + "portrait": 0.7575753910868758, + "scenery": 0.904804349946865, + "sports": 0.9289580592623857, + "travel": 0.5731205166457228 + }, + "autoFocus": 315, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 24, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_V/vignette3.png", + "isMetal": true, + "launchDate": 1475683200000, + "maxISO": 12800, + "name": "Sony Cyber-shot DSC-RX100 V", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1000, + "resolution": [ + 5496, + 3672 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 272 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7686844615786673, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7872729469602328, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000002, + "portrait": 0.7574988049767019, + "scenery": 0.7920187512505069, + "sports": 0.7507865996247792, + "travel": 0.46433253781375516 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100/vignette3.png", + "isMetal": false, + "launchDate": 1338912000000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX100", + "pixelDepth": 20, + "pixels": 20210688, + "price": 650, + "resolution": [ + 5504, + 3672 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 213 + }, + { + "ISO": [ + 50, + 102400 + ], + "assessment": { + "astronomy": 0.8, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7166083253096587, + "portrait": 0.8000000000000005, + "scenery": 0.8589465478841881, + "sports": 0.8378640915593707, + "travel": 0.4999999999999997 + }, + "autoFocus": 399, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R_II/vignette3.png", + "isMetal": true, + "launchDate": 1444752000000, + "maxISO": 102400, + "name": "Sony Cyber-shot DSC-RX1R II", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3300, + "resolution": [ + 8000, + 5320 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.49999999999999967, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.765272111911738, + "travel": 0.4999999999999997 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R/vignette3.png", + "isMetal": true, + "launchDate": 1372262400000, + "maxISO": 25600, + "name": "Sony Cyber-shot DSC-RX1R", + "pixelDepth": 24, + "pixels": 24240576, + "price": 2800, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 64, + 128000 + ], + "assessment": { + "astronomy": 0.7921253835539216, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.1999999999999999, + "lowPrice": 0.5000000000000002, + "newModel": 0.7881672764471431, + "portrait": 0.7575753910868758, + "scenery": 0.8087352396637774, + "sports": 0.9250914391481908, + "travel": 0.4274213155703581 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 14, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Cybershot_DSC-RX10_III/vignette3.png", + "isMetal": true, + "launchDate": 1459180800000, + "maxISO": 128000, + "name": "Sony Cybershot DSC-RX10 III", + "pixelDepth": 20, + "pixels": 20181312, + "price": 1500, + "resolution": [ + 5496, + 3672 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 1051 + }, + { + "ISO": [ + 200, + 16000 + ], + "assessment": { + "astronomy": 0.7561544192841484, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7875774647887285, + "lowPrice": 0.5882224371373292, + "newModel": 0.49999999999999967, + "portrait": 0.5, + "scenery": 0.7561544192841484, + "sports": 0.5, + "travel": 0.5838818529536767 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-3N/vignette3.png", + "isMetal": true, + "launchDate": 1361289600000, + "maxISO": 16000, + "name": "Sony NEX-3N", + "pixelDepth": 16, + "pixels": 16144128, + "price": 670, + "resolution": [ + 4928, + 3276 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 210 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7811798263884996, + "lowPrice": 0.529979472659706, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.5, + "travel": 0.5737092990652819 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5N/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 25600, + "name": "Sony NEX-5N", + "pixelDepth": 16, + "pixels": 16144128, + "price": 860, + "resolution": [ + 4928, + 3276 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 269 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5R/vignette3.png", + "isMetal": true, + "launchDate": 1346169600000, + "maxISO": 25600, + "name": "Sony NEX-5R", + "pixelDepth": 16, + "pixels": 16144128, + "price": 650, + "resolution": [ + 4928, + 3276 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.780541944127943, + "newModel": 0.500000000000001, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5T/vignette3.png", + "isMetal": true, + "launchDate": 1377532800000, + "maxISO": 25600, + "name": "Sony NEX-5T", + "pixelDepth": 16, + "pixels": 16144128, + "price": 549, + "resolution": [ + 4928, + 3276 + ], + "touchScreen": true, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.7790665157385805, + "lowPrice": 0.5321526928938327, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.5700684743559113 + }, + "autoFocus": 99, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-6/vignette3.png", + "isMetal": false, + "launchDate": 1347379200000, + "maxISO": 25600, + "name": "Sony NEX-6", + "pixelDepth": 16, + "pixels": 16032768, + "price": 848, + "resolution": [ + 4912, + 3264 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 287 + }, + { + "ISO": [ + 100, + 16000 + ], + "assessment": { + "astronomy": 0.768033040268409, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5511827956989267, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8660418380302833, + "sports": 0.765272111911738, + "travel": 0.5403389830508478 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-7/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 16000, + "name": "Sony NEX-7", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1720, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 400 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7860344827586178, + "lowPrice": 0.5459308666017538, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08243762781186093, + "travel": 0.5815415549597859 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-C3/vignette3.png", + "isMetal": true, + "launchDate": 1307462400000, + "maxISO": 12800, + "name": "Sony NEX-C3", + "pixelDepth": 16, + "pixels": 16163840, + "price": 770, + "resolution": [ + 4928, + 3280 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 225 + }, + { + "ISO": [ + 100, + 16000 + ], + "assessment": { + "astronomy": 0.7561544192841484, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.7827748344370856, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7561544192841484, + "sports": 0.5, + "travel": 0.5763623124931568 + }, + "autoFocus": 25, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 6, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX-F3/vignette3.png", + "isMetal": true, + "launchDate": 1337184000000, + "maxISO": 16000, + "name": "Sony NEX-F3", + "pixelDepth": 16, + "pixels": 16144128, + "price": 600, + "resolution": [ + 4928, + 3276 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 255 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7804838709677436, + "newModel": 0.4779259701994772, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX3/vignette3.png", + "isMetal": false, + "launchDate": 1272643200000, + "maxISO": 12800, + "name": "Sony NEX3", + "pixelDepth": 14, + "pixels": 14155776, + "price": 550, + "resolution": [ + 4608, + 3072 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 200, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.609096385542166, + "newModel": 0.4779259701994772, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.07402016607354676, + "travel": 0.1999999999999999 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/NEX5/vignette3.png", + "isMetal": false, + "launchDate": 1272643200000, + "maxISO": 12800, + "name": "Sony NEX5", + "pixelDepth": 14, + "pixels": 14155776, + "price": 650, + "resolution": [ + 4608, + 3072 + ], + "touchScreen": false, + "video": false, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7775606210893378, + "newModel": 0.48602562819374145, + "portrait": 0.24083820454836385, + "scenery": 0.24083820454836385, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_33/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony SLT Alpha 33", + "pixelDepth": 14, + "pixels": 14033152, + "price": 599, + "resolution": [ + 4592, + 3056 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.08243762781186093, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 2.5, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_35/vignette3.png", + "isMetal": false, + "launchDate": 1307462400000, + "maxISO": 12800, + "name": "Sony SLT Alpha 35", + "pixelDepth": 16, + "pixels": 16032768, + "price": 600, + "resolution": [ + 4912, + 3264 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 16000 + ], + "assessment": { + "astronomy": 0.7561544192841484, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5246382425030723, + "lowPrice": 0.7833333333333332, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7561544192841484, + "sports": 0.5, + "travel": 0.5231221657963078 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 7, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_37/vignette3.png", + "isMetal": false, + "launchDate": 1337184000000, + "maxISO": 16000, + "name": "Sony SLT Alpha 37", + "pixelDepth": 16, + "pixels": 16144128, + "price": 500, + "resolution": [ + 4928, + 3276 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 448 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.1999999999999999, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5506756756756758, + "newModel": 0.48602562819374145, + "portrait": 0.5, + "scenery": 0.5, + "sports": 0.5, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_55/vignette3.png", + "isMetal": false, + "launchDate": 1282579200000, + "maxISO": 12800, + "name": "Sony SLT Alpha 55", + "pixelDepth": 16, + "pixels": 16032768, + "price": 750, + "resolution": [ + 4912, + 3264 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7733320673206766, + "durableBuild": 0.1999999999999999, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5688059701492514, + "newModel": 0.5000000000000002, + "portrait": 0.5, + "scenery": 0.7733320673206766, + "sports": 0.933, + "travel": 0.4999999999999997 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_57/vignette3.png", + "isMetal": false, + "launchDate": 1331481600000, + "maxISO": 25600, + "name": "Sony SLT Alpha 57", + "pixelDepth": 16, + "pixels": 16144128, + "price": 700, + "resolution": [ + 4928, + 3276 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 618 + }, + { + "ISO": [ + 100, + 16000 + ], + "assessment": { + "astronomy": 0.757124786697767, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5039297217996406, + "lowPrice": 0.5549758418656195, + "newModel": 0.49999999999999967, + "portrait": 0.7578318827615904, + "scenery": 0.8088067209032789, + "sports": 0.7502320157775385, + "travel": 0.5039235324633394 + }, + "autoFocus": 15, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_58/vignette3.png", + "isMetal": true, + "launchDate": 1361289600000, + "maxISO": 16000, + "name": "Sony SLT Alpha 58", + "pixelDepth": 20, + "pixels": 20093376, + "price": 735, + "resolution": [ + 5496, + 3656 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 492 + }, + { + "ISO": [ + 100, + 16000 + ], + "assessment": { + "astronomy": 0.768033040268409, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8229472058469092, + "sports": 0.851176015876996, + "travel": 0.6000000000000001 + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_65/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 16000, + "name": "Sony SLT Alpha 65", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1290, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 622 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712555350839917, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7774999999999945, + "newModel": 0.7376997222824313, + "portrait": 0.7700162146413259, + "scenery": 0.8293164489858248, + "sports": 0.8515184574716526, + "travel": 0.4999999999999997 + }, + "autoFocus": 79, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 8, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_68/vignette3.png", + "isMetal": true, + "launchDate": 1446652800000, + "maxISO": 25600, + "name": "Sony SLT Alpha 68", + "pixelDepth": 24, + "pixels": 24192384, + "price": 600, + "resolution": [ + 6024, + 4016 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.4999999999999995, + "portrait": 0.7700629113951525, + "scenery": 0.8294659210376442, + "sports": 0.878889417328949, + "travel": 0.4999999999999997 + }, + "autoFocus": 79, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77_II/vignette3.png", + "isMetal": true, + "launchDate": 1398873600000, + "maxISO": 25600, + "name": "Sony SLT Alpha 77 II", + "pixelDepth": 24, + "pixels": 24240576, + "price": 1200, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 647 + }, + { + "ISO": [ + 50, + 16000 + ], + "assessment": { + "astronomy": 0.7681301672554949, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.5000000000000002, + "newModel": 0.5000000000000002, + "portrait": 0.7701601610274225, + "scenery": 0.8231407538735952, + "sports": 0.8505086917392912, + "travel": 0.6000000000000001 + }, + "autoFocus": 19, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77/vignette3.png", + "isMetal": true, + "launchDate": 1314115200000, + "maxISO": 16000, + "name": "Sony SLT Alpha 77", + "pixelDepth": 24, + "pixels": 24337152, + "price": 1399, + "resolution": [ + 6048, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 653 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7942026687014537, + "durableBuild": 0.8000000000000005, + "event": 0.6000000000000001, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.7947135702942201, + "portrait": 0.8000000000000005, + "scenery": 0.8673690429506864, + "sports": 0.8589465478841881, + "travel": 0.4999999999999997 + }, + "autoFocus": 399, + "bluetooth": true, + "brand": "Sony", + "flash": false, + "frameRate": 12, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99_II/vignette3.png", + "isMetal": true, + "launchDate": 1474214400000, + "maxISO": 25600, + "name": "Sony SLT Alpha 99 II", + "pixelDepth": 42, + "pixels": 42560000, + "price": 3200, + "resolution": [ + 8000, + 5320 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 25600 + ], + "assessment": { + "astronomy": 0.7712816624063041, + "durableBuild": 0.8000000000000005, + "event": 0.4999999999999997, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.1999999999999999, + "newModel": 0.5000000000000002, + "portrait": 0.7700629113951525, + "scenery": 0.8141852827277354, + "sports": 0.43986235922907646, + "travel": 0.6000000000000001 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "Sony", + "flash": false, + "frameRate": 10, + "gps": true, + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99/vignette3.png", + "isMetal": true, + "launchDate": 1347379200000, + "maxISO": 25600, + "name": "Sony SLT Alpha 99", + "pixelDepth": 24, + "pixels": 24240576, + "price": 2800, + "resolution": [ + 6024, + 4024 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + }, + { + "ISO": [ + 100, + 12800 + ], + "assessment": { + "astronomy": 0.5, + "durableBuild": 0.8000000000000005, + "event": 0.1999999999999999, + "lightBuild": 0.5000000000000002, + "lowPrice": 0.7895362318840548, + "newModel": 0.7940626724806624, + "portrait": 0.23642481756120523, + "scenery": 0.23642481756120523, + "sports": 0.07402016607354676, + "travel": 0.4999999999999997 + }, + "autoFocus": 6, + "bluetooth": false, + "brand": "YUNEEC", + "flash": false, + "frameRate": 4, + "gps": false, + "image": "//cdn.dxomark.com/dakdata/xml/Breeze_4K/vignette3.png", + "isMetal": true, + "launchDate": 1472486400000, + "maxISO": 12800, + "name": "YUNEEC Breeze 4K", + "pixelDepth": 13, + "pixels": 12979200, + "price": 380, + "resolution": [ + 4160, + 3120 + ], + "touchScreen": false, + "video": true, + "waterproof": false, + "weight": 500 + } +] \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/merger.js b/scr/模糊专家系统/fuzzy-expert/merger.js new file mode 100644 index 0000000..40a239a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/merger.js @@ -0,0 +1,12 @@ +let fs = require("fs"); +let path = require("path"); + + +let files = fs.readdirSync("./result"); +let merged=[]; +files.forEach(file => { + let data = JSON.parse(fs.readFileSync(path.join('./result', file), { encoding: "utf8" })); + merged.push(data); +}); + +fs.writeFileSync("merged.json", JSON.stringify(merged, null, 4), { encoding: "utf8" }); diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS-1D X Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS-1D X Mark II.txt new file mode 100644 index 0000000..f3d9397 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS-1D X Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,409600], + "assessment":{ + "astronomy":0.7921614914185363, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.1999999999999999, + "lowPrice":0.1999999999999999, + "newModel":0.7856874321177771, + "portrait":0.7576045965370796, + "scenery":0.8045375741867704, + "sports":0.9291960813256774, + "travel":0.5369388594944149 + }, + "autoFocus":61, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":16.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/_EOS-1D_X_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1454342400000, + "maxISO":409600, + "name":"Canon EOS-1D X Mark II", + "pixelDepth":20, + "pixels":20170320, + "price":6000, + "resolution":[5496,3670], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":1340 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1000D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1000D.txt new file mode 100644 index 0000000..98b3ae9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1000D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07494712212536904, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7810649350649359, + "newModel":0.36355583088798077, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1000D/vignette3.png", + "isMetal":false, + "launchDate":1213027200000, + "maxISO":1600, + "name":"Canon EOS 1000D", + "pixelDepth":10, + "pixels":10163412, + "price":540, + "resolution":[3906,2602], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 100D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 100D.txt new file mode 100644 index 0000000..8c6a31a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 100D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5755769565758335, + "lowPrice":0.609096385542166, + "newModel":0.5000000000000004, + "portrait":0.5, + "scenery":0.7904757995564279, + "sports":0.08141121495327112, + "travel":0.6220838836751243 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_100D/vignette3.png", + "isMetal":true, + "launchDate":1363795200000, + "maxISO":25600, + "name":"Canon EOS 100D", + "pixelDepth":18, + "pixels":18103008, + "price":650, + "resolution":[5208,3476], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":370 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 10D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 10D.txt new file mode 100644 index 0000000..a874708 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 10D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07831154821558377, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7910602920010132, + "newModel":0.20206199259585128, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_10D/vignette3.png", + "isMetal":false, + "launchDate":1046275200000, + "maxISO":3200, + "name":"Canon EOS 10D", + "pixelDepth":6, + "pixels":6518336, + "price":347, + "resolution":[3152,2068], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1100D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1100D.txt new file mode 100644 index 0000000..d4054c4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1100D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5024719019858837, + "lowPrice":0.7775606210893378, + "newModel":0.4975339668211982, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08402243812167474, + "travel":0.2107460535346639 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1100D/vignette3.png", + "isMetal":false, + "launchDate":1297008000000, + "maxISO":6400, + "name":"Canon EOS 1100D", + "pixelDepth":12, + "pixels":12507648, + "price":599, + "resolution":[4352,2874], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":495 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1200D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1200D.txt new file mode 100644 index 0000000..361579e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1200D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5310506986743073, + "lowPrice":0.7833333333333332, + "newModel":0.4999999999999988, + "portrait":0.5, + "scenery":0.5, + "sports":0.08402243812167474, + "travel":0.5281263875886049 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1200D/vignette3.png", + "isMetal":false, + "launchDate":1392134400000, + "maxISO":6400, + "name":"Canon EOS 1200D", + "pixelDepth":18, + "pixels":18024930, + "price":500, + "resolution":[5202,3465], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":435 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark II N.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark II N.txt new file mode 100644 index 0000000..7730477 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark II N.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,3200], + "assessment":{ + "astronomy":0.08088718423770246, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.21219561611464086, + "portrait":0.21666666666666654, + "scenery":0.21666666666666654, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":8.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II_N/vignette3.png", + "isMetal":false, + "launchDate":1124640000000, + "maxISO":3200, + "name":"Canon EOS 1D Mark II N", + "pixelDepth":8, + "pixels":8486560, + "price":5986, + "resolution":[3596,2360], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark II.txt new file mode 100644 index 0000000..613dc40 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,3200], + "assessment":{ + "astronomy":0.08088718423770246, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.20503698563063325, + "portrait":0.21666666666666654, + "scenery":0.21666666666666654, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":8.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II/vignette3.png", + "isMetal":false, + "launchDate":1075305600000, + "maxISO":3200, + "name":"Canon EOS 1D Mark II", + "pixelDepth":8, + "pixels":8486560, + "price":1700, + "resolution":[3596,2360], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark III.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark III.txt new file mode 100644 index 0000000..de758ee --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark III.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,6400], + "assessment":{ + "astronomy":0.09342324225505241, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.2209083025062537, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_III/vignette3.png", + "isMetal":false, + "launchDate":1172073600000, + "maxISO":6400, + "name":"Canon EOS 1D Mark III", + "pixelDepth":10, + "pixels":10446048, + "price":4050, + "resolution":[3984,2622], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark IV.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark IV.txt new file mode 100644 index 0000000..d732d35 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1D Mark IV.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,102400], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.1999999999999999, + "lowPrice":0.1999999999999999, + "newModel":0.4623645236971117, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.07402016607354676, + "travel":0.5369388594944149 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":10.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_IV/vignette3.png", + "isMetal":false, + "launchDate":1255968000000, + "maxISO":102400, + "name":"Canon EOS 1D Mark IV", + "pixelDepth":16, + "pixels":15980544, + "price":5840, + "resolution":[4896,3264], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":1180 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds Mark II.txt new file mode 100644 index 0000000..4a35fed --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.20771470038980863, + "portrait":0.5, + "scenery":0.5, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_II/vignette3.png", + "isMetal":false, + "launchDate":1095696000000, + "maxISO":3200, + "name":"Canon EOS 1Ds Mark II", + "pixelDepth":16, + "pixels":17101584, + "price":6950, + "resolution":[5108,3348], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds Mark III.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds Mark III.txt new file mode 100644 index 0000000..749499c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds Mark III.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,3200], + "assessment":{ + "astronomy":0.4883569096025662, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.22404805898254374, + "portrait":0.7600269270691173, + "scenery":0.9064384181476092, + "sports":0.2835686488710699, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_III/vignette3.png", + "isMetal":false, + "launchDate":1187539200000, + "maxISO":3200, + "name":"Canon EOS 1Ds Mark III", + "pixelDepth":21, + "pixels":21557088, + "price":7100, + "resolution":[5712,3774], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds.txt new file mode 100644 index 0000000..c69a47c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Ds.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1233], + "assessment":{ + "astronomy":0.07206054514320881, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.1999999999999999, + "lowPrice":0.1999999999999999, + "newModel":0.20107756449438624, + "portrait":0.2280106572609703, + "scenery":0.2280106572609703, + "sports":0.07875190169689873, + "travel":0.16167332382310975 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1Ds/vignette3.png", + "isMetal":false, + "launchDate":1032796800000, + "maxISO":1233, + "name":"Canon EOS 1Ds", + "pixelDepth":11, + "pixels":11094876, + "price":2700, + "resolution":[4082,2718], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":1265 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Dx.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Dx.txt new file mode 100644 index 0000000..838f7ed --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 1Dx.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,204800], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":61, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":14.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_1Dx/vignette3.png", + "isMetal":true, + "launchDate":1318867200000, + "maxISO":204800, + "name":"Canon EOS 1Dx", + "pixelDepth":18, + "pixels":18378666, + "price":6800, + "resolution":[5202,3533], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 200D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 200D.txt new file mode 100644 index 0000000..c2fa8d4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 200D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.7855811307617426, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.522251079660429, + "lowPrice":0.7804838709677436, + "newModel":0.799981870734887, + "portrait":0.7715852026174138, + "scenery":0.8332393753972969, + "sports":0.5279560357326973, + "travel":0.5211232696298297 + }, + "autoFocus":9, + "bluetooth":true, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_200D/vignette3.png", + "isMetal":false, + "launchDate":1498665600000, + "maxISO":51200, + "name":"Canon EOS 200D", + "pixelDepth":24, + "pixels":25504128, + "price":550, + "resolution":[6288,4056], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":453 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 20D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 20D.txt new file mode 100644 index 0000000..cd678a0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 20D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07535797072568724, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.2073144372356606, + "portrait":0.21666666666666654, + "scenery":0.21666666666666654, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_20D/vignette3.png", + "isMetal":false, + "launchDate":1092844800000, + "maxISO":1600, + "name":"Canon EOS 20D", + "pixelDepth":8, + "pixels":8486560, + "price":700, + "resolution":[3596,2360], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 300D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 300D.txt new file mode 100644 index 0000000..ba7a046 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 300D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.0737679018883037, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7920705751169291, + "newModel":0.20346839241623776, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_300D/vignette3.png", + "isMetal":false, + "launchDate":1061308800000, + "maxISO":1600, + "name":"Canon EOS 300D", + "pixelDepth":6, + "pixels":6518336, + "price":324, + "resolution":[3152,2068], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 30D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 30D.txt new file mode 100644 index 0000000..7f3254e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 30D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08088718423770246, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5540553740977198, + "newModel":0.2149295664334448, + "portrait":0.21666666666666654, + "scenery":0.21666666666666654, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_30D/vignette3.png", + "isMetal":false, + "launchDate":1140451200000, + "maxISO":3200, + "name":"Canon EOS 30D", + "pixelDepth":8, + "pixels":8486560, + "price":738, + "resolution":[3596,2360], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 350D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 350D.txt new file mode 100644 index 0000000..8c37e0c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 350D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07521263147419484, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7798974358974388, + "newModel":0.20961724884918687, + "portrait":0.21666666666666654, + "scenery":0.21666666666666654, + "sports":0.0784042080851938, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":2.8, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_350D/vignette3.png", + "isMetal":false, + "launchDate":1108569600000, + "maxISO":1600, + "name":"Canon EOS 350D", + "pixelDepth":8, + "pixels":8185248, + "price":560, + "resolution":[3516,2328], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 400D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 400D.txt new file mode 100644 index 0000000..1a8e9e7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 400D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07471614206027041, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7822105263157916, + "newModel":0.2178557811179551, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_400D/vignette3.png", + "isMetal":false, + "launchDate":1156348800000, + "maxISO":1600, + "name":"Canon EOS 400D", + "pixelDepth":10, + "pixels":10351656, + "price":520, + "resolution":[3948,2622], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 40D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 40D.txt new file mode 100644 index 0000000..57eee08 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 40D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08147334838865895, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5225276166212549, + "newModel":0.22404805898254374, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":6.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_40D/vignette3.png", + "isMetal":false, + "launchDate":1187539200000, + "maxISO":3200, + "name":"Canon EOS 40D", + "pixelDepth":10, + "pixels":10341168, + "price":899, + "resolution":[3944,2622], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 450D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 450D.txt new file mode 100644 index 0000000..3c9e36b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 450D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.06971978751660024, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7793057324840699, + "newModel":0.2470739519371539, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07829684601113168, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_450D/vignette3.png", + "isMetal":false, + "launchDate":1201104000000, + "maxISO":1600, + "name":"Canon EOS 450D", + "pixelDepth":12, + "pixels":12401312, + "price":570, + "resolution":[4312,2876], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 500D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 500D.txt new file mode 100644 index 0000000..0c1b03b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 500D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.4385583965455643, + "portrait":0.2453703030803535, + "scenery":0.2453703030803535, + "sports":0.0785942026656306, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.4, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_500D/vignette3.png", + "isMetal":false, + "launchDate":1237910400000, + "maxISO":12800, + "name":"Canon EOS 500D", + "pixelDepth":15, + "pixels":15039810, + "price":1040, + "resolution":[4770,3153], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 50D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 50D.txt new file mode 100644 index 0000000..cfb09c0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 50D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.3936722085160627, + "portrait":0.2453703030803535, + "scenery":0.2453703030803535, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_50D/vignette3.png", + "isMetal":false, + "launchDate":1219680000000, + "maxISO":12800, + "name":"Canon EOS 50D", + "pixelDepth":15, + "pixels":15154290, + "price":1300, + "resolution":[4770,3177], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 550D pre production.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 550D pre production.txt new file mode 100644 index 0000000..8efc609 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 550D pre production.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5223287671232876, + "newModel":0.47174036842704004, + "portrait":0.5, + "scenery":0.5, + "sports":0.07724829122938497, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.7, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_550D_pre_production/vignette3.png", + "isMetal":false, + "launchDate":1265558400000, + "maxISO":12800, + "name":"Canon EOS 550D pre production", + "pixelDepth":18, + "pixels":18789504, + "price":900, + "resolution":[5344,3516], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 550D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 550D.txt new file mode 100644 index 0000000..82f0602 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 550D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.47313961212919964, + "portrait":0.5, + "scenery":0.5, + "sports":0.08410422601060216, + "travel":0.4999999999999997 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.7, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_550D/vignette3.png", + "isMetal":false, + "launchDate":1267113600000, + "maxISO":12800, + "name":"Canon EOS 550D", + "pixelDepth":18, + "pixels":17915904, + "price":1000, + "resolution":[5184,3456], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark II.txt new file mode 100644 index 0000000..0c6a18a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,25600], + "assessment":{ + "astronomy":0.7676254200178484, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.4864719601124947, + "lowPrice":0.1999999999999999, + "newModel":0.40030730231223327, + "portrait":0.7600174525443824, + "scenery":0.8039867908150126, + "sports":0.2751677762170413, + "travel":0.4922776224805059 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.9, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_II/vignette3.png", + "isMetal":false, + "launchDate":1221580800000, + "maxISO":25600, + "name":"Canon EOS 5D Mark II", + "pixelDepth":21, + "pixels":21144402, + "price":2199, + "resolution":[5634,3753], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":810 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark III.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark III.txt new file mode 100644 index 0000000..75f8823 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark III.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,102400], + "assessment":{ + "astronomy":0.7852640332162286, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.374491059147178, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.764356809725556, + "scenery":0.8239906226360154, + "sports":0.8582892526486077, + "travel":0.441462135252791 + }, + "autoFocus":61, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_III/vignette3.png", + "isMetal":false, + "launchDate":1330617600000, + "maxISO":102400, + "name":"Canon EOS 5D Mark III", + "pixelDepth":22, + "pixels":23384000, + "price":3499, + "resolution":[5920,3950], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":910 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark IV.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark IV.txt new file mode 100644 index 0000000..d9424f2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D Mark IV.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,102400], + "assessment":{ + "astronomy":0.7932706515974663, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000001, + "lowPrice":0.1999999999999999, + "newModel":0.7938960385640131, + "portrait":0.7893076140630775, + "scenery":0.8318405024316109, + "sports":0.8349469265766305, + "travel":0.6000000000000001 + }, + "autoFocus":61, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":7.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_IV/vignette3.png", + "isMetal":true, + "launchDate":1472054400000, + "maxISO":102400, + "name":"Canon EOS 5D Mark IV", + "pixelDepth":30, + "pixels":31262720, + "price":3500, + "resolution":[6880,4544], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":800 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D.txt new file mode 100644 index 0000000..e58dbf6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.21219561611464086, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_5D/vignette3.png", + "isMetal":false, + "launchDate":1124640000000, + "maxISO":3200, + "name":"Canon EOS 5D", + "pixelDepth":12, + "pixels":13222104, + "price":2000, + "resolution":[4476,2954], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5DS R.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5DS R.txt new file mode 100644 index 0000000..c461e3b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5DS R.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,12800], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.44498549799032006, + "lowPrice":0.1999999999999999, + "newModel":0.5815100981022692, + "portrait":0.8000000000000005, + "scenery":0.933, + "sports":0.8378640915593707, + "travel":0.46951837792796974 + }, + "autoFocus":61, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_5DS_R/vignette3.png", + "isMetal":true, + "launchDate":1423152000000, + "maxISO":12800, + "name":"Canon EOS 5DS R", + "pixelDepth":50, + "pixels":51158016, + "price":3900, + "resolution":[8736,5856], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":845 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5DS.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5DS.txt new file mode 100644 index 0000000..1525389 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 5DS.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,12800], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.44498549799032006, + "lowPrice":0.1999999999999999, + "newModel":0.5815100981022692, + "portrait":0.8000000000000005, + "scenery":0.933, + "sports":0.8378640915593707, + "travel":0.46951837792796974 + }, + "autoFocus":61, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_5DS/vignette3.png", + "isMetal":true, + "launchDate":1423152000000, + "maxISO":12800, + "name":"Canon EOS 5DS", + "pixelDepth":50, + "pixels":51158016, + "price":3700, + "resolution":[8736,5856], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":845 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 600D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 600D.txt new file mode 100644 index 0000000..4040b36 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 600D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5317947310647638, + "newModel":0.4975339668211982, + "portrait":0.5, + "scenery":0.5, + "sports":0.08410422601060216, + "travel":0.1999999999999999 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":3.7, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_600D/vignette3.png", + "isMetal":false, + "launchDate":1297008000000, + "maxISO":12800, + "name":"Canon EOS 600D", + "pixelDepth":18, + "pixels":18789504, + "price":850, + "resolution":[5344,3516], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":515 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 60D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 60D.txt new file mode 100644 index 0000000..1b784fb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 60D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.48616335099682817, + "portrait":0.5, + "scenery":0.5, + "sports":0.08141121495327112, + "travel":0.4999999999999997 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.3, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_60D/vignette3.png", + "isMetal":false, + "launchDate":1282752000000, + "maxISO":12800, + "name":"Canon EOS 60D", + "pixelDepth":18, + "pixels":17992016, + "price":1199, + "resolution":[5194,3464], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 650D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 650D.txt new file mode 100644 index 0000000..7297b24 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 650D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5225276166212549, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.08141121495327112, + "travel":0.4999999999999997 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_650D/vignette3.png", + "isMetal":false, + "launchDate":1339084800000, + "maxISO":25600, + "name":"Canon EOS 650D", + "pixelDepth":18, + "pixels":18627840, + "price":899, + "resolution":[5280,3528], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":575 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 6D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 6D Mark II.txt new file mode 100644 index 0000000..5d308be --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 6D Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,102400], + "assessment":{ + "astronomy":0.7874213959052214, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.799981870734887, + "portrait":0.777490682209416, + "scenery":0.8238056996089119, + "sports":0.8367909995994819, + "travel":0.6000000000000001 + }, + "autoFocus":45, + "bluetooth":true, + "brand":"Canon", + "flash":false, + "frameRate":6.5, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_6D_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1498665600000, + "maxISO":102400, + "name":"Canon EOS 6D Mark II", + "pixelDepth":26, + "pixels":26966016, + "price":2000, + "resolution":[6384,4224], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":685 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 6D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 6D.txt new file mode 100644 index 0000000..9697347 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 6D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,102400], + "assessment":{ + "astronomy":0.7907297221479909, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7568273106758033, + "scenery":0.8053950618745999, + "sports":0.2569497272503779, + "travel":0.6000000000000001 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.5, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_6D/vignette3.png", + "isMetal":false, + "launchDate":1347811200000, + "maxISO":102400, + "name":"Canon EOS 6D", + "pixelDepth":20, + "pixels":20646144, + "price":2099, + "resolution":[5568,3708], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 700D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 700D.txt new file mode 100644 index 0000000..b341ccf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 700D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5506756756756758, + "newModel":0.5000000000000004, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.08141121495327112, + "travel":0.4999999999999997 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_700D/vignette3.png", + "isMetal":true, + "launchDate":1363795200000, + "maxISO":25600, + "name":"Canon EOS 700D", + "pixelDepth":18, + "pixels":18103008, + "price":750, + "resolution":[5208,3476], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 70D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 70D.txt new file mode 100644 index 0000000..fa244c7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 70D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7687723241092553, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000012, + "portrait":0.7576045965370796, + "scenery":0.7917503569121463, + "sports":0.7506182928923596, + "travel":0.4999999999999997 + }, + "autoFocus":19, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_70D/vignette3.png", + "isMetal":false, + "launchDate":1372694400000, + "maxISO":25600, + "name":"Canon EOS 70D", + "pixelDepth":20, + "pixels":20170320, + "price":1199, + "resolution":[5496,3670], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 750D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 750D.txt new file mode 100644 index 0000000..bf4747a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 750D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7700512821846767, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5506756756756758, + "newModel":0.5815100981022692, + "portrait":0.7700512821846767, + "scenery":0.9131164182807887, + "sports":0.7652313700035975, + "travel":0.4999999999999997 + }, + "autoFocus":19, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_750D/vignette3.png", + "isMetal":true, + "launchDate":1423152000000, + "maxISO":12800, + "name":"Canon EOS 750D", + "pixelDepth":24, + "pixels":24228528, + "price":750, + "resolution":[6024,4022], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":510 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 760D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 760D.txt new file mode 100644 index 0000000..cc5a853 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 760D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7700512821846767, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5317947310647638, + "newModel":0.5815100981022692, + "portrait":0.7700512821846767, + "scenery":0.9131164182807887, + "sports":0.7652313700035975, + "travel":0.4999999999999997 + }, + "autoFocus":19, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_760D/vignette3.png", + "isMetal":true, + "launchDate":1423152000000, + "maxISO":12800, + "name":"Canon EOS 760D", + "pixelDepth":24, + "pixels":24228528, + "price":850, + "resolution":[6024,4022], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":510 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 7D Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 7D Mark II.txt new file mode 100644 index 0000000..bdba4c7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 7D Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.7921614914185363, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5356718768052593, + "portrait":0.7576045965370796, + "scenery":0.8045375741867704, + "sports":0.9255475967480529, + "travel":0.6000000000000001 + }, + "autoFocus":65, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":10.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_7D_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1410710400000, + "maxISO":51200, + "name":"Canon EOS 7D Mark II", + "pixelDepth":20, + "pixels":20170320, + "price":1800, + "resolution":[5496,3670], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 7D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 7D.txt new file mode 100644 index 0000000..d4de9b9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 7D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.4738502673796765, + "lowPrice":0.1999999999999999, + "newModel":0.4576839877747468, + "portrait":0.5, + "scenery":0.5, + "sports":0.07402016607354676, + "travel":0.19255398624790912 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_7D/vignette3.png", + "isMetal":false, + "launchDate":1251734400000, + "maxISO":12800, + "name":"Canon EOS 7D", + "pixelDepth":18, + "pixels":18840400, + "price":1974, + "resolution":[5360,3515], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":820 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 80D.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 80D.txt new file mode 100644 index 0000000..b169481 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS 80D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.772197190092996, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.7864120703458854, + "portrait":0.7715852026174138, + "scenery":0.8331957820239151, + "sports":0.8415008769890358, + "travel":0.4999999999999997 + }, + "autoFocus":45, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_80D/vignette3.png", + "isMetal":true, + "launchDate":1455724800000, + "maxISO":25600, + "name":"Canon EOS 80D", + "pixelDepth":24, + "pixels":25504128, + "price":1200, + "resolution":[6288,4056], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":650 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M.txt new file mode 100644 index 0000000..28f9860 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5405018411683207, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.9112032288698959, + "travel":0.4999999999999997 + }, + "autoFocus":31, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.3, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_M/vignette3.png", + "isMetal":true, + "launchDate":1342972800000, + "maxISO":25600, + "name":"Canon EOS M", + "pixelDepth":18, + "pixels":18627840, + "price":799, + "resolution":[5280,3528], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M10.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M10.txt new file mode 100644 index 0000000..f374745 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.715715321860331, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.9329098228663452, + "travel":0.4999999999999997 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.6, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_M10/vignette3.png", + "isMetal":true, + "launchDate":1444665600000, + "maxISO":25600, + "name":"Canon EOS M10", + "pixelDepth":18, + "pixels":18103008, + "price":600, + "resolution":[5208,3476], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M100.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M100.txt new file mode 100644 index 0000000..7b843cd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.772197190092996, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.7815251864786922, + "lowPrice":0.7774999999999945, + "newModel":0.8000000000000005, + "portrait":0.7715852026174138, + "scenery":0.8331957820239151, + "sports":0.8439917435445609, + "travel":0.5742906721158703 + }, + "autoFocus":49, + "bluetooth":true, + "brand":"Canon", + "flash":false, + "frameRate":6.1, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_M100/vignette3.png", + "isMetal":true, + "launchDate":1503936000000, + "maxISO":25600, + "name":"Canon EOS M100", + "pixelDepth":24, + "pixels":25504128, + "price":600, + "resolution":[6288,4056], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":266 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M2.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M2.txt new file mode 100644 index 0000000..dadd3b3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.5000000000000054, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.9112032288698959, + "travel":0.4999999999999997 + }, + "autoFocus":31, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.6, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_M2/vignette3.png", + "isMetal":true, + "launchDate":1386000000000, + "maxISO":25600, + "name":"Canon EOS M2", + "pixelDepth":18, + "pixels":18103008, + "price":650, + "resolution":[5208,3476], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M3.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M3.txt new file mode 100644 index 0000000..d7d23fe --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712751483066825, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.6673272877164017, + "lowPrice":0.5281263875886054, + "newModel":0.5815100981022692, + "portrait":0.7700512821846767, + "scenery":0.8294286039328348, + "sports":0.8511560152480457, + "travel":0.562683137739345 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_M3/vignette3.png", + "isMetal":true, + "launchDate":1423152000000, + "maxISO":25600, + "name":"Canon EOS M3", + "pixelDepth":24, + "pixels":24228528, + "price":870, + "resolution":[6024,4022], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":320 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M5.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M5.txt new file mode 100644 index 0000000..5f3a678 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.772197190092996, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5662932330827082, + "lowPrice":0.5048829182192582, + "newModel":0.7945859514570968, + "portrait":0.7715852026174138, + "scenery":0.8331957820239151, + "sports":0.8439917435445609, + "travel":0.5465891677675032 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_M5/vignette3.png", + "isMetal":true, + "launchDate":1473868800000, + "maxISO":25600, + "name":"Canon EOS M5", + "pixelDepth":24, + "pixels":25504128, + "price":980, + "resolution":[6288,4056], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":380 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M6.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M6.txt new file mode 100644 index 0000000..2262ac2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon EOS M6.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.772197190092996, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.611062516095502, + "lowPrice":0.5438923933209653, + "newModel":0.7985232099799165, + "portrait":0.7715852026174138, + "scenery":0.8331957820239151, + "sports":0.8439917435445609, + "travel":0.5569471811079159 + }, + "autoFocus":49, + "bluetooth":true, + "brand":"Canon", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EOS_M6/vignette3.png", + "isMetal":true, + "launchDate":1487088000000, + "maxISO":25600, + "name":"Canon EOS M6", + "pixelDepth":24, + "pixels":25504128, + "price":780, + "resolution":[6288,4056], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":343 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G1 X Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G1 X Mark II.txt new file mode 100644 index 0000000..16ba49a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G1 X Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.540338983050848, + "newModel":0.4999999999999988, + "portrait":0.23642481756120523, + "scenery":0.23642481756120523, + "sports":0.9112032288698959, + "travel":0.4999999999999997 + }, + "autoFocus":31, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G1_X_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1392134400000, + "maxISO":12800, + "name":"Canon PowerShot G1 X Mark II", + "pixelDepth":13, + "pixels":14740832, + "price":800, + "resolution":[4432,3326], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":516 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G12.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G12.txt new file mode 100644 index 0000000..d33777d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G12.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,3200], + "assessment":{ + "astronomy":0.08161559297498973, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.4874675526148574, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07567000940144156, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":2.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G12/vignette3.png", + "isMetal":false, + "launchDate":1284393600000, + "maxISO":3200, + "name":"Canon PowerShot G12", + "pixelDepth":10, + "pixels":9980928, + "price":499, + "resolution":[3648,2736], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G16.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G16.txt new file mode 100644 index 0000000..15d323c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G16.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.780541944127943, + "newModel":0.49999999999999895, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5990232131948705, + "travel":0.4999999999999997 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":12.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G16/vignette3.png", + "isMetal":true, + "launchDate":1377100800000, + "maxISO":12800, + "name":"Canon PowerShot G16", + "pixelDepth":12, + "pixels":12835904, + "price":549, + "resolution":[4192,3062], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G1X.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G1X.txt new file mode 100644 index 0000000..88c72f3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G1X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5039297217996406, + "lowPrice":0.5405018411683207, + "newModel":0.5000000000000002, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07402016607354676, + "travel":0.5039235324633394 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G1X/vignette3.png", + "isMetal":true, + "launchDate":1326038400000, + "maxISO":12800, + "name":"Canon PowerShot G1X", + "pixelDepth":14, + "pixels":15133536, + "price":799, + "resolution":[4496,3366], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":492 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G3 X.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G3 X.txt new file mode 100644 index 0000000..bcd2da0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G3 X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,25600], + "assessment":{ + "astronomy":0.7682225986960214, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.637258068873028, + "portrait":0.7570392348728391, + "scenery":0.7935462995979276, + "sports":0.8781934932810521, + "travel":0.4999999999999997 + }, + "autoFocus":31, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.9, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G3_X/vignette3.png", + "isMetal":true, + "launchDate":1434556800000, + "maxISO":25600, + "name":"Canon PowerShot G3 X", + "pixelDepth":20, + "pixels":20444448, + "price":1000, + "resolution":[5536,3693], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":690 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G5 X.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G5 X.txt new file mode 100644 index 0000000..b5b77d7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G5 X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,12800], + "assessment":{ + "astronomy":0.7570392348728391, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.540338983050848, + "newModel":0.715715321860331, + "portrait":0.7570392348728391, + "scenery":0.9044489399606346, + "sports":0.8781934932810521, + "travel":0.4999999999999997 + }, + "autoFocus":31, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.9, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G5_X/vignette3.png", + "isMetal":true, + "launchDate":1444665600000, + "maxISO":12800, + "name":"Canon PowerShot G5 X", + "pixelDepth":20, + "pixels":20444448, + "price":800, + "resolution":[5536,3693], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G7 X.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G7 X.txt new file mode 100644 index 0000000..5704a9b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G7 X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,12800], + "assessment":{ + "astronomy":0.7567417726514891, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.780014451840753, + "lowPrice":0.5688059701492514, + "newModel":0.5356718768052593, + "portrait":0.7567417726514891, + "scenery":0.9042489076836084, + "sports":0.8572481358355573, + "travel":0.5717193397980831 + }, + "autoFocus":31, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":6.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G7_X/vignette3.png", + "isMetal":true, + "launchDate":1410710400000, + "maxISO":12800, + "name":"Canon PowerShot G7 X", + "pixelDepth":20, + "pixels":20894720, + "price":700, + "resolution":[5632,3710], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":279 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G9 X Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G9 X Mark II.txt new file mode 100644 index 0000000..b7219c3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G9 X Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,12800], + "assessment":{ + "astronomy":0.7570392348728391, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.7902854577186353, + "lowPrice":0.7816405228758168, + "newModel":0.7976517087388207, + "portrait":0.7570392348728391, + "scenery":0.9044489399606346, + "sports":0.8781934932810521, + "travel":0.5878194349220124 + }, + "autoFocus":31, + "bluetooth":true, + "brand":"Canon", + "flash":false, + "frameRate":8.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1483459200000, + "maxISO":12800, + "name":"Canon PowerShot G9 X Mark II", + "pixelDepth":20, + "pixels":20444448, + "price":530, + "resolution":[5536,3693], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":182 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G9 X.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G9 X.txt new file mode 100644 index 0000000..d3c119e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot G9 X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,12800], + "assessment":{ + "astronomy":0.7570392348728391, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833333333333332, + "newModel":0.7166083253096587, + "portrait":0.7570392348728391, + "scenery":0.9044489399606346, + "sports":0.8781934932810521, + "travel":0.4999999999999997 + }, + "autoFocus":31, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X/vignette3.png", + "isMetal":true, + "launchDate":1444752000000, + "maxISO":12800, + "name":"Canon PowerShot G9 X", + "pixelDepth":20, + "pixels":20444448, + "price":500, + "resolution":[5536,3693], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S100.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S100.txt new file mode 100644 index 0000000..f4bb800 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7871207369024819, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.6271739130434784, + "sports":0.07402016607354676, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_S100/vignette3.png", + "isMetal":false, + "launchDate":1316016000000, + "maxISO":6400, + "name":"Canon PowerShot S100", + "pixelDepth":12, + "pixels":12995840, + "price":429, + "resolution":[4160,3124], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S120.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S120.txt new file mode 100644 index 0000000..c2aa6a6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S120.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.789249147471554, + "lowPrice":0.7860866286905286, + "newModel":0.49999999999999895, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08141121495327112, + "travel":0.5863383439763902 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":5.6, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_S120/vignette3.png", + "isMetal":true, + "launchDate":1377100800000, + "maxISO":12800, + "name":"Canon PowerShot S120", + "pixelDepth":12, + "pixels":12835904, + "price":449, + "resolution":[4192,3062], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":193 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S90.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S90.txt new file mode 100644 index 0000000..cf04af2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S90.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,3200], + "assessment":{ + "astronomy":0.0814163743518294, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7875774647887285, + "newModel":0.45637117003652616, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.0714293666624468, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":0.9, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_S90/vignette3.png", + "isMetal":false, + "launchDate":1250611200000, + "maxISO":3200, + "name":"Canon PowerShot S90", + "pixelDepth":10, + "pixels":10423296, + "price":420, + "resolution":[3744,2784], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S95.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S95.txt new file mode 100644 index 0000000..467ef65 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot S95.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,3200], + "assessment":{ + "astronomy":0.0814163743518294, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7913731343283599, + "lowPrice":0.7885714285714326, + "newModel":0.4856808727756244, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07438183832188398, + "travel":0.47754744215665035 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":0.98, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_S95/vignette3.png", + "isMetal":false, + "launchDate":1282147200000, + "maxISO":3200, + "name":"Canon PowerShot S95", + "pixelDepth":10, + "pixels":10423296, + "price":400, + "resolution":[3744,2784], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":170 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot SX50 HS.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot SX50 HS.txt new file mode 100644 index 0000000..c51ce6f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot SX50 HS.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7844324324324303, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08141121495327112, + "travel":0.4999999999999997 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_SX50_HS/vignette3.png", + "isMetal":false, + "launchDate":1347811200000, + "maxISO":12800, + "name":"Canon PowerShot SX50 HS", + "pixelDepth":12, + "pixels":12786912, + "price":480, + "resolution":[4176,3062], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":551 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot SX60 HS.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot SX60 HS.txt new file mode 100644 index 0000000..cc96298 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon PowerShot SX60 HS.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7804838709677436, + "newModel":0.5356718768052593, + "portrait":0.5, + "scenery":0.5, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":6.4, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PowerShot_SX60_HS/vignette3.png", + "isMetal":true, + "launchDate":1410710400000, + "maxISO":6400, + "name":"Canon PowerShot SX60 HS", + "pixelDepth":16, + "pixels":16764288, + "price":550, + "resolution":[4768,3516], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G10.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G10.txt new file mode 100644 index 0000000..12dce80 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,1600], + "assessment":{ + "astronomy":0.06971978751660024, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7851328804229709, + "newModel":0.40030730231223327, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07282837839071495, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":1.3, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Powershot_G10/vignette3.png", + "isMetal":false, + "launchDate":1221580800000, + "maxISO":1600, + "name":"Canon Powershot G10", + "pixelDepth":14, + "pixels":14999040, + "price":467, + "resolution":[4480,3348], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G11.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G11.txt new file mode 100644 index 0000000..b86077d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G11.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,3200], + "assessment":{ + "astronomy":0.0814163743518294, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7820392337700567, + "newModel":0.45637117003652616, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07209373243864912, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":1.1, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Powershot_G11/vignette3.png", + "isMetal":false, + "launchDate":1250611200000, + "maxISO":3200, + "name":"Canon Powershot G11", + "pixelDepth":10, + "pixels":10423296, + "price":523, + "resolution":[3744,2784], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G15.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G15.txt new file mode 100644 index 0000000..362434a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G15.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7098110041944159, + "lowPrice":0.7775606210893378, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08141121495327112, + "travel":0.5650224805016064 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Powershot_G15/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":12800, + "name":"Canon Powershot G15", + "pixelDepth":12, + "pixels":12338304, + "price":599, + "resolution":[4048,3048], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":310 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G9.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G9.txt new file mode 100644 index 0000000..04bbd2d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot G9.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,1600], + "assessment":{ + "astronomy":0.06971978751660024, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7335119966762389, + "newModel":0.22404805898254374, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07361418938727647, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":1.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Powershot_G9/vignette3.png", + "isMetal":false, + "launchDate":1187539200000, + "maxISO":1600, + "name":"Canon Powershot G9", + "pixelDepth":12, + "pixels":12192768, + "price":606, + "resolution":[4032,3024], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot S110.txt b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot S110.txt new file mode 100644 index 0000000..a4b395d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Canon Powershot S110.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.78876597112353, + "lowPrice":0.7833885932814528, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08141121495327112, + "travel":0.5856369576579451 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Canon", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Powershot_S110/vignette3.png", + "isMetal":false, + "launchDate":1347811200000, + "maxISO":12800, + "name":"Canon Powershot S110", + "pixelDepth":12, + "pixels":12338304, + "price":499, + "resolution":[4048,3048], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":198 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/DJI Phantom 4.txt b/scr/模糊专家系统/fuzzy-expert/result/DJI Phantom 4.txt new file mode 100644 index 0000000..d639902 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/DJI Phantom 4.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.7875628742338098, + "portrait":0.23214285714285718, + "scenery":0.6271739130434784, + "sports":0.07402016607354676, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"DJI", + "flash":false, + "frameRate":7.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Phantom_4/vignette3.png", + "isMetal":true, + "launchDate":1457971200000, + "maxISO":3200, + "name":"DJI Phantom 4", + "pixelDepth":12, + "pixels":12000000, + "price":1200, + "resolution":[4000,3000], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/DJI Phantom4 Pro.txt b/scr/模糊专家系统/fuzzy-expert/result/DJI Phantom4 Pro.txt new file mode 100644 index 0000000..3c87abe --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/DJI Phantom4 Pro.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7581690225850446, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.7963990497347746, + "portrait":0.7581690225850446, + "scenery":0.8081274183527211, + "sports":0.5390282916213289, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"DJI", + "flash":false, + "frameRate":14.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Phantom4_Pro/vignette3.png", + "isMetal":true, + "launchDate":1479139200000, + "maxISO":12800, + "name":"DJI Phantom4 Pro", + "pixelDepth":20, + "pixels":19961856, + "price":1500, + "resolution":[5472,3648], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X4S.txt b/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X4S.txt new file mode 100644 index 0000000..84f040a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X4S.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7581690225850446, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.7829979945104432, + "lowPrice":0.7775606210893378, + "newModel":0.7963990497347746, + "portrait":0.7581690225850446, + "scenery":0.8081274183527211, + "sports":0.5390282916213289, + "travel":0.6363633411485914 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"DJI", + "flash":false, + "frameRate":20.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Zenmuse_X4S/vignette3.png", + "isMetal":true, + "launchDate":1479139200000, + "maxISO":12800, + "name":"DJI Zenmuse X4S", + "pixelDepth":20, + "pixels":19961856, + "price":599, + "resolution":[5472,3648], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":253 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X5S.txt b/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X5S.txt new file mode 100644 index 0000000..5f37bb2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X5S.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7675569954152581, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5184884919907811, + "lowPrice":0.5000000000000002, + "newModel":0.7963990497347746, + "portrait":0.7567423211439139, + "scenery":0.7985203381594502, + "sports":0.5616519303453117, + "travel":0.6074133321819782 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"DJI", + "flash":false, + "frameRate":20.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Zenmuse_X5S/vignette3.png", + "isMetal":true, + "launchDate":1479139200000, + "maxISO":25600, + "name":"DJI Zenmuse X5S", + "pixelDepth":20, + "pixels":20887680, + "price":1400, + "resolution":[5280,3956], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":461 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X7.txt b/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X7.txt new file mode 100644 index 0000000..af8b4e5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/DJI Zenmuse X7.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712125017751787, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5241584267811638, + "lowPrice":0.1999999999999999, + "newModel":0.8000000000000005, + "portrait":0.769938790213497, + "scenery":0.8139611448003187, + "sports":0.6144769578229766, + "travel":0.6095480825352767 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"DJI", + "flash":false, + "frameRate":20.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Zenmuse_X7/vignette3.png", + "isMetal":true, + "launchDate":1507651200000, + "maxISO":25600, + "name":"DJI Zenmuse X7", + "pixelDepth":24, + "pixels":24112128, + "price":2700, + "resolution":[6016,4008], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":449 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F550EXR.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F550EXR.txt new file mode 100644 index 0000000..3edc11d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F550EXR.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.7890575539568294, + "lowPrice":0.7860344827586178, + "newModel":0.4952260258402374, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.07402016607354676, + "travel":0.6416595805504298 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_F550EXR/vignette3.png", + "isMetal":false, + "launchDate":1294156800000, + "maxISO":12800, + "name":"Fujifilm FinePix F550EXR", + "pixelDepth":16, + "pixels":16076305, + "price":450, + "resolution":[4613,3485], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":195 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F600EXR.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F600EXR.txt new file mode 100644 index 0000000..a3086e3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F600EXR.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.0843245758851411, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833333333333332, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.933, + "travel":0.6000000000000001 + }, + "autoFocus":256, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_F600EXR/vignette3.png", + "isMetal":false, + "launchDate":1312992000000, + "maxISO":12800, + "name":"Fujifilm FinePix F600EXR", + "pixelDepth":16, + "pixels":8037568, + "price":500, + "resolution":[3262,2464], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F800EXR.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F800EXR.txt new file mode 100644 index 0000000..f79cbbc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix F800EXR.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7877777173137505, + "lowPrice":0.7909707627909911, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.5, + "sports":0.07402016607354676, + "travel":0.5841809512624617 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_F800EXR/vignette3.png", + "isMetal":false, + "launchDate":1343145600000, + "maxISO":12800, + "name":"Fujifilm FinePix F800EXR", + "pixelDepth":16, + "pixels":16076305, + "price":349, + "resolution":[4613,3485], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":208 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S100fs.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S100fs.txt new file mode 100644 index 0000000..8e294cb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S100fs.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08058766629036895, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5628897752859012, + "newModel":0.2470739519371539, + "portrait":0.2280106572609703, + "scenery":0.2280106572609703, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_S100fs/vignette3.png", + "isMetal":false, + "launchDate":1201104000000, + "maxISO":3200, + "name":"Fujifilm FinePix S100fs", + "pixelDepth":11, + "pixels":11059200, + "price":713, + "resolution":[3840,2880], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S3 Pro.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S3 Pro.txt new file mode 100644 index 0000000..bef48bc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S3 Pro.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07329558152854765, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.20511031132658228, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_S3_Pro/vignette3.png", + "isMetal":false, + "launchDate":1075910400000, + "maxISO":1600, + "name":"Fujifilm FinePix S3 Pro", + "pixelDepth":6, + "pixels":6096384, + "price":1190, + "resolution":[3024,2016], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S5 Pro.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S5 Pro.txt new file mode 100644 index 0000000..70c8aed --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix S5 Pro.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07766693392882804, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.21838126173299063, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_S5_Pro/vignette3.png", + "isMetal":false, + "launchDate":1159113600000, + "maxISO":3200, + "name":"Fujifilm FinePix S5 Pro", + "pixelDepth":6, + "pixels":6096384, + "price":1200, + "resolution":[3024,2016], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X S1.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X S1.txt new file mode 100644 index 0000000..713517c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X S1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.40750000000000486, + "lowPrice":0.5693093341274658, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.9329098228663452, + "travel":0.45236901807869573 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_X_S1/vignette3.png", + "isMetal":true, + "launchDate":1322064000000, + "maxISO":12800, + "name":"Fujifilm FinePix X S1", + "pixelDepth":12, + "pixels":12000000, + "price":699, + "resolution":[4000,3000], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":880 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X10.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X10.txt new file mode 100644 index 0000000..c6f9869 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.6380289440771788, + "lowPrice":0.7774999999999945, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.9329098228663452, + "travel":0.5602517547964436 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_X10/vignette3.png", + "isMetal":false, + "launchDate":1314806400000, + "maxISO":12800, + "name":"Fujifilm FinePix X10", + "pixelDepth":12, + "pixels":12212896, + "price":600, + "resolution":[4028,3032], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":330 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X100.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X100.txt new file mode 100644 index 0000000..2ac4423 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm FinePix X100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5479244423685782, + "lowPrice":0.5002492512472553, + "newModel":0.48780963542990663, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.9329098228663452, + "travel":0.5386979393318829 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/FinePix_X100/vignette3.png", + "isMetal":true, + "launchDate":1284825600000, + "maxISO":12800, + "name":"Fujifilm FinePix X100", + "pixelDepth":12, + "pixels":12369700, + "price":999, + "resolution":[4310,2870], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":405 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Fujifilm XF1.txt b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm XF1.txt new file mode 100644 index 0000000..03634a5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Fujifilm XF1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Fujifilm", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/XF1/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":12800, + "name":"Fujifilm XF1", + "pixelDepth":12, + "pixels":12000000, + "price":499, + "resolution":[4000,3000], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/GoPro HERO5 Black.txt b/scr/模糊专家系统/fuzzy-expert/result/GoPro HERO5 Black.txt new file mode 100644 index 0000000..8294101 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/GoPro HERO5 Black.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.06971978751660024, + "durableBuild":0.1999999999999999, + "event":0.6500000000000002, + "lightBuild":0.5000000000000002, + "lowPrice":0.7885714285714326, + "newModel":0.7947135702942201, + "portrait":0.23214285714285718, + "scenery":0.6271739130434784, + "sports":0.5390282916213289, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":true, + "brand":"GoPro", + "flash":false, + "frameRate":30.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/HERO5_Black/vignette3.png", + "isMetal":false, + "launchDate":1474214400000, + "maxISO":1600, + "name":"GoPro HERO5 Black", + "pixelDepth":12, + "pixels":12000000, + "price":400, + "resolution":[4000,3000], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Hasselblad H3DII 39.txt b/scr/模糊专家系统/fuzzy-expert/result/Hasselblad H3DII 39.txt new file mode 100644 index 0000000..1ee661d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Hasselblad H3DII 39.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,400], + "assessment":{ + "astronomy":0.6776196269734426, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.22581977891147426, + "portrait":0.7999640340898365, + "scenery":0.9329802944742082, + "sports":0.49298276197015695, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Hasselblad", + "flash":false, + "frameRate":0.7, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/H3DII_39/vignette3.png", + "isMetal":false, + "launchDate":1196006400000, + "maxISO":400, + "name":"Hasselblad H3DII 39", + "pixelDepth":39, + "pixels":39458112, + "price":22000, + "resolution":[7248,5444], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Hasselblad H3DII 50.txt b/scr/模糊专家系统/fuzzy-expert/result/Hasselblad H3DII 50.txt new file mode 100644 index 0000000..09f10cf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Hasselblad H3DII 50.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,400], + "assessment":{ + "astronomy":0.6776872570626299, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.22581977891147426, + "portrait":0.8000000000000005, + "scenery":0.933, + "sports":0.495386674129829, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Hasselblad", + "flash":false, + "frameRate":0.9, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/H3DII_50/vignette3.png", + "isMetal":false, + "launchDate":1196006400000, + "maxISO":400, + "name":"Hasselblad H3DII 50", + "pixelDepth":50, + "pixels":51679680, + "price":20000, + "resolution":[8282,6240], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Hasselblad X1D-50c.txt b/scr/模糊专家系统/fuzzy-expert/result/Hasselblad X1D-50c.txt new file mode 100644 index 0000000..27f5c40 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Hasselblad X1D-50c.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7942026687014537, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.791603730875711, + "portrait":0.8000000000000005, + "scenery":0.8387202611043807, + "sports":0.5271866966133213, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Hasselblad", + "flash":false, + "frameRate":2.3, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/X1D-50c/vignette3.png", + "isMetal":true, + "launchDate":1466524800000, + "maxISO":25600, + "name":"Hasselblad X1D-50c", + "pixelDepth":50, + "pixels":51402240, + "price":8995, + "resolution":[8280,6208], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Konica Minolta DYNAX 5D.txt b/scr/模糊专家系统/fuzzy-expert/result/Konica Minolta DYNAX 5D.txt new file mode 100644 index 0000000..87bca08 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Konica Minolta DYNAX 5D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07760492265724778, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833333333333332, + "newModel":0.21165168791248107, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Konica Minolta", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/DYNAX_5D/vignette3.png", + "isMetal":false, + "launchDate":1121356800000, + "maxISO":3200, + "name":"Konica Minolta DYNAX 5D", + "pixelDepth":6, + "pixels":6056128, + "price":500, + "resolution":[3016,2008], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Konica Minolta DYNAX 7D.txt b/scr/模糊专家系统/fuzzy-expert/result/Konica Minolta DYNAX 7D.txt new file mode 100644 index 0000000..1e76c80 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Konica Minolta DYNAX 7D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07760492265724778, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7793648548731495, + "newModel":0.20764170756612468, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Konica Minolta", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/DYNAX_7D/vignette3.png", + "isMetal":false, + "launchDate":1095177600000, + "maxISO":3200, + "name":"Konica Minolta DYNAX 7D", + "pixelDepth":6, + "pixels":6056128, + "price":569, + "resolution":[3016,2008], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leaf Aptus75S.txt b/scr/模糊专家系统/fuzzy-expert/result/Leaf Aptus75S.txt new file mode 100644 index 0000000..9cd3d7e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leaf Aptus75S.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,800], + "assessment":{ + "astronomy":0.6671204945348616, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.21839784666838566, + "portrait":0.7947193502035401, + "scenery":0.9295308230908899, + "sports":0.4684191934677148, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leaf", + "flash":false, + "frameRate":0.83, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Aptus75S/vignette3.png", + "isMetal":false, + "launchDate":1159200000000, + "maxISO":800, + "name":"Leaf Aptus75S", + "pixelDepth":33, + "pixels":33276672, + "price":32995, + "resolution":[6666,4992], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica C.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica C.txt new file mode 100644 index 0000000..9f8e0cf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica C.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5411682295905136, + "newModel":0.49999999999999667, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/C/vignette3.png", + "isMetal":true, + "launchDate":1378742400000, + "maxISO":12800, + "name":"Leica C", + "pixelDepth":12, + "pixels":12112256, + "price":795, + "resolution":[4016,3016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica M Typ 240.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica M Typ 240.txt new file mode 100644 index 0000000..96ec996 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica M Typ 240.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.7697806897606136, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7697806897606136, + "scenery":0.9129364224889734, + "sports":0.35913287221098766, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/M_Typ_240/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":6400, + "name":"Leica M Typ 240", + "pixelDepth":24, + "pixels":23936000, + "price":6950, + "resolution":[5984,4000], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica M-E Typ 220.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica M-E Typ 220.txt new file mode 100644 index 0000000..ce4aa98 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica M-E Typ 220.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,2500], + "assessment":{ + "astronomy":0.0737154836007143, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.5, + "sports":0.07567000940144156, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":2.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/M-E_Typ_220/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":2500, + "name":"Leica M-E Typ 220", + "pixelDepth":18, + "pixels":18109952, + "price":5450, + "resolution":[5216,3472], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica M10.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica M10.txt new file mode 100644 index 0000000..4c23bd4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica M10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,50000], + "assessment":{ + "astronomy":0.7855542352311429, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7979614152856618, + "portrait":0.769739927706708, + "scenery":0.8299353152852595, + "sports":0.42596223587001725, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/M10/vignette3.png", + "isMetal":true, + "launchDate":1484668800000, + "maxISO":50000, + "name":"Leica M10", + "pixelDepth":24, + "pixels":23888128, + "price":6895, + "resolution":[5984,3992], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":590 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica M8.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica M8.txt new file mode 100644 index 0000000..275cbd6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica M8.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,2500], + "assessment":{ + "astronomy":0.07820651804692716, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.2182008037681383, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07567000940144156, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":2.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/M8/vignette3.png", + "isMetal":false, + "launchDate":1158163200000, + "maxISO":2500, + "name":"Leica M8", + "pixelDepth":10, + "pixels":10340960, + "price":5495, + "resolution":[3920,2638], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica M9 P.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica M9 P.txt new file mode 100644 index 0000000..5de216d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica M9 P.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,2500], + "assessment":{ + "astronomy":0.0737154836007143, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.49634183016529004, + "portrait":0.5, + "scenery":0.5, + "sports":0.07567000940144156, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":2.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/M9_P/vignette3.png", + "isMetal":true, + "launchDate":1295539200000, + "maxISO":2500, + "name":"Leica M9 P", + "pixelDepth":18, + "pixels":18109952, + "price":6950, + "resolution":[5216,3472], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica M9.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica M9.txt new file mode 100644 index 0000000..b14c2c8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica M9.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,2500], + "assessment":{ + "astronomy":0.0737154836007143, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.4584766374272051, + "portrait":0.5, + "scenery":0.5, + "sports":0.07567000940144156, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":2.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/M9/vignette3.png", + "isMetal":false, + "launchDate":1252425600000, + "maxISO":2500, + "name":"Leica M9", + "pixelDepth":18, + "pixels":18109952, + "price":5500, + "resolution":[5216,3472], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":545 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica Q Typ 116.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica Q Typ 116.txt new file mode 100644 index 0000000..8ca7349 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica Q Typ 116.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,50000], + "assessment":{ + "astronomy":0.7854937716172566, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.6332034374702056, + "portrait":0.7699847368302629, + "scenery":0.8305046044889461, + "sports":0.851644003957937, + "travel":0.4999999999999997 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Q_Typ_116/vignette3.png", + "isMetal":true, + "launchDate":1433865600000, + "maxISO":50000, + "name":"Leica Q Typ 116", + "pixelDepth":24, + "pixels":24160256, + "price":4250, + "resolution":[6016,4016], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":590 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica S.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica S.txt new file mode 100644 index 0000000..e2d8e28 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica S.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.6830626561110877, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7993618049959713, + "scenery":0.8585373754523935, + "sports":0.5021179997601634, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":1.5, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/S/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":1600, + "name":"Leica S", + "pixelDepth":37, + "pixels":37600000, + "price":21950, + "resolution":[7520,5000], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica SL (Typ 601).txt b/scr/模糊专家系统/fuzzy-expert/result/Leica SL (Typ 601).txt new file mode 100644 index 0000000..816ad3f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica SL (Typ 601).txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,50000], + "assessment":{ + "astronomy":0.7854937716172566, + "durableBuild":0.8000000000000005, + "event":0.5772727272727275, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7220794214614688, + "portrait":0.7699847368302629, + "scenery":0.8176294292573827, + "sports":0.8713087951318573, + "travel":0.6000000000000001 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":11.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/SL_(Typ_601)/vignette3.png", + "isMetal":true, + "launchDate":1445270400000, + "maxISO":50000, + "name":"Leica SL (Typ 601)", + "pixelDepth":24, + "pixels":24160256, + "price":7450, + "resolution":[6016,4016], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica T.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica T.txt new file mode 100644 index 0000000..b977a39 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica T.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12500], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.6183766865446153, + "lowPrice":0.1999999999999999, + "newModel":0.4999999999999977, + "portrait":0.5, + "scenery":0.5, + "sports":0.07402016607354676, + "travel":0.5579816085583185 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/T/vignette3.png", + "isMetal":true, + "launchDate":1398268800000, + "maxISO":12500, + "name":"Leica T", + "pixelDepth":16, + "pixels":16206432, + "price":1850, + "resolution":[4944,3278], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":339 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Leica X Vario.txt b/scr/模糊专家系统/fuzzy-expert/result/Leica X Vario.txt new file mode 100644 index 0000000..5d9c4a1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Leica X Vario.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12500], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.4999999999999997, + "portrait":0.5, + "scenery":0.5, + "sports":0.08709750835940046, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Leica", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/X_Vario/vignette3.png", + "isMetal":true, + "launchDate":1370880000000, + "maxISO":12500, + "name":"Leica X Vario", + "pixelDepth":16, + "pixels":16186656, + "price":2850, + "resolution":[4944,3274], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Mamiya ZD Back.txt b/scr/模糊专家系统/fuzzy-expert/result/Mamiya ZD Back.txt new file mode 100644 index 0000000..3e477f7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Mamiya ZD Back.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,400], + "assessment":{ + "astronomy":0.43215420965778045, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.395551069068901, + "portrait":0.7600010199731728, + "scenery":0.9064214010591755, + "sports":0.18647131663635308, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Mamiya", + "flash":false, + "frameRate":1.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/ZD_Back/vignette3.png", + "isMetal":false, + "launchDate":1220198400000, + "maxISO":400, + "name":"Mamiya ZD Back", + "pixelDepth":21, + "pixels":21461504, + "price":6999, + "resolution":[5344,4016], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 AW1.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 AW1.txt new file mode 100644 index 0000000..a2b498b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 AW1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.6951672370432288, + "lowPrice":0.540338983050848, + "newModel":0.500000000000002, + "portrait":0.24083820454836385, + "scenery":0.6938318737493623, + "sports":0.933, + "travel":0.6296461584682099 + }, + "autoFocus":135, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/1_AW1/vignette3.png", + "isMetal":true, + "launchDate":1379520000000, + "maxISO":6400, + "name":"Nikon 1 AW1", + "pixelDepth":14, + "pixels":14238840, + "price":800, + "resolution":[4620,3082], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":313 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J1.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J1.txt new file mode 100644 index 0000000..c30942b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.09234734927674859, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.7850795214168989, + "lowPrice":0.5688059701492514, + "newModel":0.5000000000000002, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.5390282916213289, + "travel":0.5800580243166777 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":13.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_J1/vignette3.png", + "isMetal":false, + "launchDate":1316534400000, + "maxISO":6400, + "name":"Nikon 1 J1", + "pixelDepth":10, + "pixels":10173824, + "price":700, + "resolution":[3904,2606], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":234 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J2.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J2.txt new file mode 100644 index 0000000..1454cfc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.09231668411852569, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.5000000000000002, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_J2/vignette3.png", + "isMetal":false, + "launchDate":1344441600000, + "maxISO":6400, + "name":"Nikon 1 J2", + "pixelDepth":10, + "pixels":10166016, + "price":700, + "resolution":[3904,2604], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J3.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J3.txt new file mode 100644 index 0000000..b87446e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.49999999999999933, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":135, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":60.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_J3/vignette3.png", + "isMetal":true, + "launchDate":1357574400000, + "maxISO":6400, + "name":"Nikon 1 J3", + "pixelDepth":14, + "pixels":14238840, + "price":600, + "resolution":[4620,3082], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J4.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J4.txt new file mode 100644 index 0000000..d3e058f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J4.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7775606210893378, + "newModel":0.5000000000000048, + "portrait":0.5, + "scenery":0.5, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":171, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":60.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_J4/vignette3.png", + "isMetal":true, + "launchDate":1397059200000, + "maxISO":12800, + "name":"Nikon 1 J4", + "pixelDepth":18, + "pixels":18378496, + "price":599, + "resolution":[5248,3502], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J5.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J5.txt new file mode 100644 index 0000000..643d483 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 J5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,12800], + "assessment":{ + "astronomy":0.7567589967123857, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833333333333332, + "newModel":0.6023053491129261, + "portrait":0.7567589967123857, + "scenery":0.9042580508537008, + "sports":0.9035289101291036, + "travel":0.4999999999999997 + }, + "autoFocus":171, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_J5/vignette3.png", + "isMetal":false, + "launchDate":1427904000000, + "maxISO":12800, + "name":"Nikon 1 J5", + "pixelDepth":20, + "pixels":20794816, + "price":500, + "resolution":[5584,3724], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 S1.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 S1.txt new file mode 100644 index 0000000..1833e2b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 S1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.09273700262475541, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.49999999999999933, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":135, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":60.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_S1/vignette3.png", + "isMetal":true, + "launchDate":1357574400000, + "maxISO":6400, + "name":"Nikon 1 S1", + "pixelDepth":10, + "pixels":10272696, + "price":499, + "resolution":[3948,2602], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V1.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V1.txt new file mode 100644 index 0000000..d8ea201 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.09234734927674859, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.7783471865585969, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000002, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.933, + "travel":0.5687955821693761 + }, + "autoFocus":135, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":34.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_V1/vignette3.png", + "isMetal":false, + "launchDate":1316534400000, + "maxISO":6400, + "name":"Nikon 1 V1", + "pixelDepth":10, + "pixels":10173824, + "price":1000, + "resolution":[3904,2606], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":293 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V2.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V2.txt new file mode 100644 index 0000000..29840b7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.6000000000000001, + "lightBuild":0.780131607363599, + "lowPrice":0.5225276166212549, + "newModel":0.5000000000000001, + "portrait":0.24083820454836385, + "scenery":0.6938318737493623, + "sports":0.933, + "travel":0.6337171904202219 + }, + "autoFocus":135, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":15.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/1_V2/vignette3.png", + "isMetal":false, + "launchDate":1351008000000, + "maxISO":6400, + "name":"Nikon 1 V2", + "pixelDepth":14, + "pixels":14238840, + "price":899, + "resolution":[4620,3082], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":278 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V3.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V3.txt new file mode 100644 index 0000000..5ea3052 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon 1 V3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.6544146371735617, + "lowPrice":0.5002492512472553, + "newModel":0.5000000000000007, + "portrait":0.5, + "scenery":0.5, + "sports":0.5390282916213289, + "travel":0.5617212797063059 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":30.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/1_V3/vignette3.png", + "isMetal":true, + "launchDate":1394640000000, + "maxISO":12800, + "name":"Nikon 1 V3", + "pixelDepth":18, + "pixels":18378496, + "price":999, + "resolution":[5248,3502], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":324 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix A.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix A.txt new file mode 100644 index 0000000..0b38ee0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix A.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.500000000000001, + "portrait":0.5, + "scenery":0.7904757995564279, + "sports":0.07402016607354676, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_A/vignette3.png", + "isMetal":true, + "launchDate":1362326400000, + "maxISO":25600, + "name":"Nikon Coolpix A", + "pixelDepth":16, + "pixels":16373760, + "price":1100, + "resolution":[4992,3280], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P330.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P330.txt new file mode 100644 index 0000000..66318ca --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P330.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.7885714285714326, + "lowPrice":0.7895362318840548, + "newModel":0.500000000000001, + "portrait":0.23214285714285718, + "scenery":0.6271739130434784, + "sports":0.07402016607354676, + "travel":0.6412499999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":10.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_P330/vignette3.png", + "isMetal":true, + "launchDate":1362326400000, + "maxISO":12800, + "name":"Nikon Coolpix P330", + "pixelDepth":12, + "pixels":12192768, + "price":380, + "resolution":[4032,3024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":200 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P340.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P340.txt new file mode 100644 index 0000000..9fc2dfc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P340.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7895362318840548, + "newModel":0.49999999999999706, + "portrait":0.23214285714285718, + "scenery":0.6679145681242322, + "sports":0.07402016607354676, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":10.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_P340/vignette3.png", + "isMetal":false, + "launchDate":1391616000000, + "maxISO":25600, + "name":"Nikon Coolpix P340", + "pixelDepth":12, + "pixels":12192768, + "price":380, + "resolution":[4032,3024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P6000.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P6000.txt new file mode 100644 index 0000000..98ba38d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P6000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[64,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7866070389804667, + "newModel":0.38734740903433185, + "portrait":0.23642481756120523, + "scenery":0.23642481756120523, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_P6000/vignette3.png", + "isMetal":false, + "launchDate":1218038400000, + "maxISO":6400, + "name":"Nikon Coolpix P6000", + "pixelDepth":13, + "pixels":13457760, + "price":439, + "resolution":[4240,3174], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7000.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7000.txt new file mode 100644 index 0000000..b1501ed --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.09184912717672215, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833333333333332, + "newModel":0.4870564677819162, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.5244813082467101, + "travel":0.4999999999999997 + }, + "autoFocus":99, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":1.3, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_P7000/vignette3.png", + "isMetal":false, + "launchDate":1283875200000, + "maxISO":6400, + "name":"Nikon Coolpix P7000", + "pixelDepth":10, + "pixels":10046688, + "price":500, + "resolution":[3664,2742], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7100.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7100.txt new file mode 100644 index 0000000..e6c33a1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.09187779000886613, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.554620891262316, + "lowPrice":0.5620724384000517, + "newModel":0.5000000000000002, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.5244813082467101, + "travel":0.5419478513405445 + }, + "autoFocus":99, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":1.3, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_P7100/vignette3.png", + "isMetal":false, + "launchDate":1314115200000, + "maxISO":6400, + "name":"Nikon Coolpix P7100", + "pixelDepth":10, + "pixels":10054016, + "price":715, + "resolution":[3664,2744], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":395 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7700.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7700.txt new file mode 100644 index 0000000..c3158d1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7700.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":99, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_P7700/vignette3.png", + "isMetal":false, + "launchDate":1345564800000, + "maxISO":6400, + "name":"Nikon Coolpix P7700", + "pixelDepth":12, + "pixels":12192768, + "price":499, + "resolution":[4032,3024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7800.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7800.txt new file mode 100644 index 0000000..e750cb0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Coolpix P7800.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7774999999999945, + "lowPrice":0.7804838709677436, + "newModel":0.49999999999999967, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.933, + "travel":0.5672727272727268 + }, + "autoFocus":99, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Coolpix_P7800/vignette3.png", + "isMetal":true, + "launchDate":1378310400000, + "maxISO":6400, + "name":"Nikon Coolpix P7800", + "pixelDepth":12, + "pixels":12192768, + "price":550, + "resolution":[4032,3024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":300 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D200.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D200.txt new file mode 100644 index 0000000..4c2fe00 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D200.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.081543452567325, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.2132343357512345, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D200/vignette3.png", + "isMetal":false, + "launchDate":1130774400000, + "maxISO":3200, + "name":"Nikon D200", + "pixelDepth":10, + "pixels":10212864, + "price":1000, + "resolution":[3904,2616], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D2H.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D2H.txt new file mode 100644 index 0000000..4cfd74e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D2H.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,6400], + "assessment":{ + "astronomy":0.07223018887419151, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5223287671232876, + "newModel":0.20321300426865188, + "portrait":0.20499999999999993, + "scenery":0.20499999999999993, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D2H/vignette3.png", + "isMetal":false, + "launchDate":1058803200000, + "maxISO":6400, + "name":"Nikon D2H", + "pixelDepth":4, + "pixels":4113408, + "price":900, + "resolution":[2496,1648], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D2X.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D2X.txt new file mode 100644 index 0000000..f43a5af --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D2X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.2076538779647219, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D2X/vignette3.png", + "isMetal":false, + "launchDate":1095264000000, + "maxISO":3200, + "name":"Nikon D2X", + "pixelDepth":12, + "pixels":12389760, + "price":2000, + "resolution":[4320,2868], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D2Xs.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D2Xs.txt new file mode 100644 index 0000000..d1201ff --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D2Xs.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.2164994832188621, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D2Xs/vignette3.png", + "isMetal":false, + "launchDate":1149091200000, + "maxISO":3200, + "name":"Nikon D2Xs", + "pixelDepth":12, + "pixels":12212224, + "price":4250, + "resolution":[4288,2848], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3.txt new file mode 100644 index 0000000..b671d7c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.22410150826352104, + "portrait":0.23214285714285718, + "scenery":0.5349047177886246, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3/vignette3.png", + "isMetal":false, + "launchDate":1187798400000, + "maxISO":25600, + "name":"Nikon D3", + "pixelDepth":12, + "pixels":12195072, + "price":4300, + "resolution":[4288,2844], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D300.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D300.txt new file mode 100644 index 0000000..eced6b4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D300.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.4582456140350867, + "newModel":0.22410150826352104, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D300/vignette3.png", + "isMetal":false, + "launchDate":1187798400000, + "maxISO":6400, + "name":"Nikon D300", + "pixelDepth":12, + "pixels":12481536, + "price":1540, + "resolution":[4352,2868], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3000.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3000.txt new file mode 100644 index 0000000..bf31b62 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5565868772782485, + "newModel":0.4413803643790505, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08746015737559586, + "travel":0.1999999999999999 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3000/vignette3.png", + "isMetal":true, + "launchDate":1239638400000, + "maxISO":3200, + "name":"Nikon D3000", + "pixelDepth":12, + "pixels":12361080, + "price":730, + "resolution":[4310,2868], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D300s.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D300s.txt new file mode 100644 index 0000000..fd15b99 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D300s.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.45428220718412077, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D300s/vignette3.png", + "isMetal":false, + "launchDate":1248883200000, + "maxISO":6400, + "name":"Nikon D300s", + "pixelDepth":12, + "pixels":12481536, + "price":1815, + "resolution":[4352,2868], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3100.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3100.txt new file mode 100644 index 0000000..ff8e689 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5693093341274658, + "newModel":0.4886318118458703, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3100/vignette3.png", + "isMetal":false, + "launchDate":1285862400000, + "maxISO":12800, + "name":"Nikon D3100", + "pixelDepth":14, + "pixels":14408448, + "price":699, + "resolution":[4672,3084], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3200.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3200.txt new file mode 100644 index 0000000..1e82f70 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3200.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7702188603967507, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.521305939010396, + "lowPrice":0.5693093341274658, + "newModel":0.5000000000000002, + "portrait":0.7702188603967507, + "scenery":0.9132276873879216, + "sports":0.5474943113310172, + "travel":0.5203126755375478 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3200/vignette3.png", + "isMetal":true, + "launchDate":1334764800000, + "maxISO":12800, + "name":"Nikon D3200", + "pixelDepth":24, + "pixels":24392960, + "price":699, + "resolution":[6080,4012], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":455 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3300.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3300.txt new file mode 100644 index 0000000..2bbfebc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3300.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712379676841797, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.5000000000000031, + "portrait":0.7699847368302629, + "scenery":0.829216454512239, + "sports":0.5398039036618845, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3300/vignette3.png", + "isMetal":false, + "launchDate":1389024000000, + "maxISO":25600, + "name":"Nikon D3300", + "pixelDepth":24, + "pixels":24160256, + "price":650, + "resolution":[6016,4016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3400.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3400.txt new file mode 100644 index 0000000..7e1ae76 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3400.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712379676841797, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.7936242789291871, + "portrait":0.7699847368302629, + "scenery":0.829216454512239, + "sports":0.5398039036618845, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":true, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3400/vignette3.png", + "isMetal":true, + "launchDate":1471363200000, + "maxISO":25600, + "name":"Nikon D3400", + "pixelDepth":24, + "pixels":24160256, + "price":650, + "resolution":[6016,4016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3X.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3X.txt new file mode 100644 index 0000000..4bb1d4b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,6400], + "assessment":{ + "astronomy":0.770429932071499, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.41869788491367926, + "portrait":0.770429932071499, + "scenery":0.9133684927801615, + "sports":0.4523483629078768, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3X/vignette3.png", + "isMetal":false, + "launchDate":1228060800000, + "maxISO":6400, + "name":"Nikon D3X", + "pixelDepth":24, + "pixels":24587520, + "price":9172, + "resolution":[6080,4044], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D3s.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3s.txt new file mode 100644 index 0000000..f7ff444 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D3s.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,102400], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.1999999999999999, + "lowPrice":0.1999999999999999, + "newModel":0.4618121843030409, + "portrait":0.23214285714285718, + "scenery":0.6271739130434784, + "sports":0.07402016607354676, + "travel":0.16167332382310975 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D3s/vignette3.png", + "isMetal":true, + "launchDate":1255449600000, + "maxISO":102400, + "name":"Nikon D3s", + "pixelDepth":12, + "pixels":12195072, + "price":5510, + "resolution":[4288,2844], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":1240 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D4.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D4.txt new file mode 100644 index 0000000..39d1254 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D4.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,204800], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.1999999999999999, + "event":0.5772727272727275, + "lightBuild":0.1999999999999999, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.928265423242468, + "travel":0.5369388594944149 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":11.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/D4/vignette3.png", + "isMetal":false, + "launchDate":1325779200000, + "maxISO":204800, + "name":"Nikon D4", + "pixelDepth":16, + "pixels":16433664, + "price":5999, + "resolution":[4992,3292], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":1340 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D40.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D40.txt new file mode 100644 index 0000000..5cabaec --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D40.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,3200], + "assessment":{ + "astronomy":0.07770734086566078, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7885714285714326, + "newModel":0.21924667551736418, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D40/vignette3.png", + "isMetal":false, + "launchDate":1163606400000, + "maxISO":3200, + "name":"Nikon D40", + "pixelDepth":6, + "pixels":6122560, + "price":400, + "resolution":[3040,2014], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D40X.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D40X.txt new file mode 100644 index 0000000..4c505e8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D40X.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.081543452567325, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5004980059800642, + "newModel":0.22111460690387605, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D40X/vignette3.png", + "isMetal":false, + "launchDate":1173110400000, + "maxISO":3200, + "name":"Nikon D40X", + "pixelDepth":10, + "pixels":10212864, + "price":998, + "resolution":[3904,2616], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D4s.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D4s.txt new file mode 100644 index 0000000..74b9078 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D4s.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,409600], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.1999999999999999, + "event":0.4499999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000009, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.928265423242468, + "travel":0.4999999999999997 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":11.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D4s/vignette3.png", + "isMetal":false, + "launchDate":1393257600000, + "maxISO":409600, + "name":"Nikon D4s", + "pixelDepth":16, + "pixels":16229568, + "price":6500, + "resolution":[4936,3288], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D5.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5.txt new file mode 100644 index 0000000..83567e6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,3280000], + "assessment":{ + "astronomy":0.7902800639992472, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.1999999999999999, + "lowPrice":0.1999999999999999, + "newModel":0.7844376273133042, + "portrait":0.7567533893511361, + "scenery":0.8056995693022159, + "sports":0.9165573859433006, + "travel":0.5369388594944149 + }, + "autoFocus":153, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":14.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/D5/vignette3.png", + "isMetal":true, + "launchDate":1452009600000, + "maxISO":3280000, + "name":"Nikon D5", + "pixelDepth":20, + "pixels":20817152, + "price":6500, + "resolution":[5584,3728], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":1225 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D50.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D50.txt new file mode 100644 index 0000000..de7b32c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D50.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,1600], + "assessment":{ + "astronomy":0.07332567456337055, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.2104521810624988, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D50/vignette3.png", + "isMetal":false, + "launchDate":1113926400000, + "maxISO":1600, + "name":"Nikon D50", + "pixelDepth":6, + "pixels":6122560, + "price":1000, + "resolution":[3040,2014], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D500.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D500.txt new file mode 100644 index 0000000..6e72de5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D500.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,1640000], + "assessment":{ + "astronomy":0.7901392577736084, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7844376273133042, + "portrait":0.7567434672427742, + "scenery":0.8057987212862777, + "sports":0.9012439591036879, + "travel":0.6000000000000001 + }, + "autoFocus":153, + "bluetooth":true, + "brand":"Nikon", + "flash":false, + "frameRate":10.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/D500/vignette3.png", + "isMetal":true, + "launchDate":1452009600000, + "maxISO":1640000, + "name":"Nikon D500", + "pixelDepth":20, + "pixels":20873072, + "price":2000, + "resolution":[5599,3728], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":670 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D5000.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5000.txt new file mode 100644 index 0000000..97bc3fb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5565868772782485, + "newModel":0.4413803643790505, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D5000/vignette3.png", + "isMetal":false, + "launchDate":1239638400000, + "maxISO":6400, + "name":"Nikon D5000", + "pixelDepth":12, + "pixels":12361080, + "price":730, + "resolution":[4310,2868], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D5100.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5100.txt new file mode 100644 index 0000000..9332414 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5405018411683207, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D5100/vignette3.png", + "isMetal":false, + "launchDate":1301932800000, + "maxISO":25600, + "name":"Nikon D5100", + "pixelDepth":16, + "pixels":16373760, + "price":799, + "resolution":[4992,3280], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D5200.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5200.txt new file mode 100644 index 0000000..5357202 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5200.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712950591780232, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5229243231030903, + "newModel":0.5000000000000002, + "portrait":0.7700867269925482, + "scenery":0.8295406124478762, + "sports":0.8380012220996484, + "travel":0.4999999999999997 + }, + "autoFocus":39, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D5200/vignette3.png", + "isMetal":false, + "launchDate":1352131200000, + "maxISO":25600, + "name":"Nikon D5200", + "pixelDepth":24, + "pixels":24264720, + "price":897, + "resolution":[6036,4020], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D5300.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5300.txt new file mode 100644 index 0000000..6c319eb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5300.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712379676841797, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.540338983050848, + "newModel":0.4999999999999982, + "portrait":0.7699847368302629, + "scenery":0.8140452813264997, + "sports":0.8386714371044622, + "travel":0.6000000000000001 + }, + "autoFocus":39, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/D5300/vignette3.png", + "isMetal":false, + "launchDate":1381939200000, + "maxISO":25600, + "name":"Nikon D5300", + "pixelDepth":24, + "pixels":24160256, + "price":800, + "resolution":[6016,4016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D5500.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5500.txt new file mode 100644 index 0000000..341df46 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5500.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712379676841797, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5223287671232876, + "newModel":0.5708140819591409, + "portrait":0.7699847368302629, + "scenery":0.8140452813264997, + "sports":0.8386714371044622, + "travel":0.6000000000000001 + }, + "autoFocus":39, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/D5500/vignette3.png", + "isMetal":true, + "launchDate":1420473600000, + "maxISO":25600, + "name":"Nikon D5500", + "pixelDepth":24, + "pixels":24160256, + "price":900, + "resolution":[6016,4016], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D5600.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5600.txt new file mode 100644 index 0000000..6dc3843 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D5600.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712379676841797, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.7962615188493051, + "portrait":0.7699847368302629, + "scenery":0.829216454512239, + "sports":0.8386714371044622, + "travel":0.4999999999999997 + }, + "autoFocus":39, + "bluetooth":true, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D5600/vignette3.png", + "isMetal":false, + "launchDate":1478707200000, + "maxISO":25600, + "name":"Nikon D5600", + "pixelDepth":24, + "pixels":24160256, + "price":700, + "resolution":[6016,4016], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D60.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D60.txt new file mode 100644 index 0000000..d40e5f6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D60.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.081543452567325, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7849727891156452, + "newModel":0.25429606889763623, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D60/vignette3.png", + "isMetal":false, + "launchDate":1201536000000, + "maxISO":3200, + "name":"Nikon D60", + "pixelDepth":10, + "pixels":10212864, + "price":470, + "resolution":[3904,2616], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D600.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D600.txt new file mode 100644 index 0000000..a997e2b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D600.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,25600], + "assessment":{ + "astronomy":0.771429533932277, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7703218061746175, + "scenery":0.8302316500739159, + "sports":0.8366512471788445, + "travel":0.4999999999999997 + }, + "autoFocus":39, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D600/vignette3.png", + "isMetal":false, + "launchDate":1347465600000, + "maxISO":25600, + "name":"Nikon D600", + "pixelDepth":24, + "pixels":24490240, + "price":2100, + "resolution":[6080,4028], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D610.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D610.txt new file mode 100644 index 0000000..010f544 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D610.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,25600], + "assessment":{ + "astronomy":0.771429533932277, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.4999999999999989, + "portrait":0.7703218061746175, + "scenery":0.8302316500739159, + "sports":0.8366512471788445, + "travel":0.4999999999999997 + }, + "autoFocus":39, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D610/vignette3.png", + "isMetal":true, + "launchDate":1381161600000, + "maxISO":25600, + "name":"Nikon D610", + "pixelDepth":24, + "pixels":24490240, + "price":1999, + "resolution":[6080,4028], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D70.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D70.txt new file mode 100644 index 0000000..5b4e692 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D70.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,1600], + "assessment":{ + "astronomy":0.07332567456337055, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7885714285714326, + "newModel":0.20502652485113151, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D70/vignette3.png", + "isMetal":false, + "launchDate":1075219200000, + "maxISO":1600, + "name":"Nikon D70", + "pixelDepth":6, + "pixels":6122560, + "price":400, + "resolution":[3040,2014], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D700.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D700.txt new file mode 100644 index 0000000..d5c536d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D700.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.37308067882861895, + "portrait":0.23214285714285718, + "scenery":0.5349047177886246, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D700/vignette3.png", + "isMetal":false, + "launchDate":1214841600000, + "maxISO":25600, + "name":"Nikon D700", + "pixelDepth":12, + "pixels":12195072, + "price":2699, + "resolution":[4288,2844], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D7000.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7000.txt new file mode 100644 index 0000000..d271bc1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.48753599416625626, + "portrait":0.5, + "scenery":0.7904757995564279, + "sports":0.9241080139372799, + "travel":0.6000000000000001 + }, + "autoFocus":39, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":6.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/D7000/vignette3.png", + "isMetal":true, + "launchDate":1284480000000, + "maxISO":25600, + "name":"Nikon D7000", + "pixelDepth":16, + "pixels":16370480, + "price":1200, + "resolution":[4991,3280], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":690 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D70s.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D70s.txt new file mode 100644 index 0000000..baeaf2e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D70s.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,1600], + "assessment":{ + "astronomy":0.07332567456337055, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.2104521810624988, + "portrait":0.2102281322364056, + "scenery":0.2102281322364056, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D70s/vignette3.png", + "isMetal":false, + "launchDate":1113926400000, + "maxISO":1600, + "name":"Nikon D70s", + "pixelDepth":6, + "pixels":6122560, + "price":700, + "resolution":[3040,2014], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D7100.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7100.txt new file mode 100644 index 0000000..158b2b5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712950591780232, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000018, + "portrait":0.7700867269925482, + "scenery":0.8295406124478762, + "sports":0.8510068518262013, + "travel":0.4999999999999997 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D7100/vignette3.png", + "isMetal":true, + "launchDate":1361376000000, + "maxISO":25600, + "name":"Nikon D7100", + "pixelDepth":24, + "pixels":24264720, + "price":1200, + "resolution":[6036,4020], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":675 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D7200.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7200.txt new file mode 100644 index 0000000..2d6aabb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7200.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,102400], + "assessment":{ + "astronomy":0.7855503789786742, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5902590904447592, + "portrait":0.7699847368302629, + "scenery":0.8305520747203903, + "sports":0.8517496142303977, + "travel":0.4999999999999997 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D7200/vignette3.png", + "isMetal":true, + "launchDate":1425225600000, + "maxISO":102400, + "name":"Nikon D7200", + "pixelDepth":24, + "pixels":24160256, + "price":1200, + "resolution":[6016,4016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":675 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D750.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D750.txt new file mode 100644 index 0000000..e1a2003 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D750.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,51200], + "assessment":{ + "astronomy":0.7855258093631292, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5347916168006315, + "portrait":0.7701435792498484, + "scenery":0.8308840995595104, + "sports":0.8506184576022527, + "travel":0.4999999999999997 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":6.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D750/vignette3.png", + "isMetal":true, + "launchDate":1410451200000, + "maxISO":51200, + "name":"Nikon D750", + "pixelDepth":24, + "pixels":24321024, + "price":2300, + "resolution":[6032,4032], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D7500.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7500.txt new file mode 100644 index 0000000..214ce9e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D7500.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1640000], + "assessment":{ + "astronomy":0.7901300043862469, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.7993966437404254, + "portrait":0.7567431737262453, + "scenery":0.8109981987829713, + "sports":0.9011373212493489, + "travel":0.4999999999999997 + }, + "autoFocus":51, + "bluetooth":true, + "brand":"Nikon", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D7500/vignette3.png", + "isMetal":true, + "launchDate":1491926400000, + "maxISO":1640000, + "name":"Nikon D7500", + "pixelDepth":20, + "pixels":20876800, + "price":1250, + "resolution":[5600,3728], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D80.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D80.txt new file mode 100644 index 0000000..67ccae1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D80.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08155336618002212, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5565868772782485, + "newModel":0.21761156202610107, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D80/vignette3.png", + "isMetal":false, + "launchDate":1155052800000, + "maxISO":3200, + "name":"Nikon D80", + "pixelDepth":10, + "pixels":10190700, + "price":730, + "resolution":[3900,2613], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D800.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D800.txt new file mode 100644 index 0000000..b386515 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D800.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,25600], + "assessment":{ + "astronomy":0.7931625117890672, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.4738502673796765, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7987538346442257, + "scenery":0.8663303776677606, + "sports":0.8368904332610863, + "travel":0.4851298526153548 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D800/vignette3.png", + "isMetal":true, + "launchDate":1328544000000, + "maxISO":25600, + "name":"Nikon D800", + "pixelDepth":36, + "pixels":36555776, + "price":2999, + "resolution":[7424,4924], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":820 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D800E.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D800E.txt new file mode 100644 index 0000000..b55b21a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D800E.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,25600], + "assessment":{ + "astronomy":0.7931625117890672, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7987538346442257, + "scenery":0.8663303776677606, + "sports":0.8368904332610863, + "travel":0.4999999999999997 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D800E/vignette3.png", + "isMetal":true, + "launchDate":1328544000000, + "maxISO":25600, + "name":"Nikon D800E", + "pixelDepth":36, + "pixels":36555776, + "price":3300, + "resolution":[7424,4924], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D810.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D810.txt new file mode 100644 index 0000000..bc592d5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D810.txt @@ -0,0 +1,34 @@ +{ + "ISO":[64,51200], + "assessment":{ + "astronomy":0.7990905162469095, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.40750000000000486, + "lowPrice":0.1999999999999999, + "newModel":0.5123106810826351, + "portrait":0.7986281521239487, + "scenery":0.8580214867890246, + "sports":0.8368018012636756, + "travel":0.45236901807869573 + }, + "autoFocus":51, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D810/vignette3.png", + "isMetal":true, + "launchDate":1403712000000, + "maxISO":51200, + "name":"Nikon D810", + "pixelDepth":36, + "pixels":36368640, + "price":3300, + "resolution":[7380,4928], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":880 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D850.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D850.txt new file mode 100644 index 0000000..b431a6f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D850.txt @@ -0,0 +1,34 @@ +{ + "ISO":[32,102400], + "assessment":{ + "astronomy":0.8, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.36863550737495104, + "lowPrice":0.1999999999999999, + "newModel":0.8000000000000005, + "portrait":0.8000000000000005, + "scenery":0.8589465478841881, + "sports":0.8378640915593707, + "travel":0.4399584353128087 + }, + "autoFocus":153, + "bluetooth":true, + "brand":"Nikon", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D850/vignette3.png", + "isMetal":true, + "launchDate":1503417600000, + "maxISO":102400, + "name":"Nikon D850", + "pixelDepth":45, + "pixels":45749760, + "price":3300, + "resolution":[8288,5520], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":915 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon D90.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon D90.txt new file mode 100644 index 0000000..4d1b33b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon D90.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.3939891906060031, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":4.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/D90/vignette3.png", + "isMetal":false, + "launchDate":1219766400000, + "maxISO":6400, + "name":"Nikon D90", + "pixelDepth":12, + "pixels":12361080, + "price":1235, + "resolution":[4310,2868], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nikon Df.txt b/scr/模糊专家系统/fuzzy-expert/result/Nikon Df.txt new file mode 100644 index 0000000..a9d28e6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nikon Df.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,204800], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000004, + "lowPrice":0.1999999999999999, + "newModel":0.49999999999999567, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.9241080139372799, + "travel":0.1999999999999999 + }, + "autoFocus":39, + "bluetooth":false, + "brand":"Nikon", + "flash":false, + "frameRate":5.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Df/vignette3.png", + "isMetal":true, + "launchDate":1383580800000, + "maxISO":204800, + "name":"Nikon Df", + "pixelDepth":16, + "pixels":16433664, + "price":2749, + "resolution":[4992,3292], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":710 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nokia Lumia 1020.txt b/scr/模糊专家系统/fuzzy-expert/result/Nokia Lumia 1020.txt new file mode 100644 index 0000000..1361b0c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nokia Lumia 1020.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,4000], + "assessment":{ + "astronomy":0.7213071465729739, + "durableBuild":0.1999999999999999, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.7112748815165891, + "newModel":0.5000000000000002, + "portrait":0.7996808373686597, + "scenery":0.8587499269852524, + "sports":0.6154975668365649, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":true, + "brand":"Nokia", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Lumia_1020/vignette3.png", + "isMetal":false, + "launchDate":1373472000000, + "maxISO":4000, + "name":"Nokia Lumia 1020", + "pixelDepth":41, + "pixels":38334720, + "price":610, + "resolution":[7152,5360], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Nokia Lumia 1520.txt b/scr/模糊专家系统/fuzzy-expert/result/Nokia Lumia 1520.txt new file mode 100644 index 0000000..0555799 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Nokia Lumia 1520.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,4000], + "assessment":{ + "astronomy":0.39455541698456, + "durableBuild":0.1999999999999999, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.5000000000000006, + "portrait":0.7581690225850446, + "scenery":0.8081274183527211, + "sports":0.07402016607354676, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":true, + "brand":"Nokia", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Lumia_1520/vignette3.png", + "isMetal":false, + "launchDate":1384444800000, + "maxISO":4000, + "name":"Nokia Lumia 1520", + "pixelDepth":20, + "pixels":18690048, + "price":600, + "resolution":[4992,3744], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E3.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E3.txt new file mode 100644 index 0000000..cff12ff --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08142175387354594, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.22507340354602132, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E3/vignette3.png", + "isMetal":false, + "launchDate":1192464000000, + "maxISO":3200, + "name":"Olympus E3", + "pixelDepth":10, + "pixels":10416000, + "price":1300, + "resolution":[3720,2800], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E30.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E30.txt new file mode 100644 index 0000000..56251a9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E30.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.2532412516784761, + "newModel":0.41294944190141847, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E30/vignette3.png", + "isMetal":false, + "launchDate":1225814400000, + "maxISO":3200, + "name":"Olympus E30", + "pixelDepth":12, + "pixels":12644400, + "price":1689, + "resolution":[4100,3084], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E410.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E410.txt new file mode 100644 index 0000000..98879c8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E410.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07462558898761443, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7844324324324303, + "newModel":0.22109739830133673, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E410/vignette3.png", + "isMetal":false, + "launchDate":1173024000000, + "maxISO":1600, + "name":"Olympus E410", + "pixelDepth":10, + "pixels":10416000, + "price":480, + "resolution":[3720,2800], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E420.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E420.txt new file mode 100644 index 0000000..1e60c91 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E420.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07462558898761443, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7822105263157916, + "newModel":0.29669389128462814, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07829684601113168, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E420/vignette3.png", + "isMetal":false, + "launchDate":1204646400000, + "maxISO":1600, + "name":"Olympus E420", + "pixelDepth":10, + "pixels":10416000, + "price":520, + "resolution":[3720,2800], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E450.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E450.txt new file mode 100644 index 0000000..1cc555e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E450.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07462558898761443, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7863991683939994, + "newModel":0.43942185715960336, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07829684601113168, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E450/vignette3.png", + "isMetal":false, + "launchDate":1238428800000, + "maxISO":1600, + "name":"Olympus E450", + "pixelDepth":10, + "pixels":10416000, + "price":443, + "resolution":[3720,2800], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E5.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E5.txt new file mode 100644 index 0000000..565f473 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000001, + "lowPrice":0.20587046213519297, + "newModel":0.4874675526148574, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08709750835940046, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E5/vignette3.png", + "isMetal":false, + "launchDate":1284393600000, + "maxISO":6400, + "name":"Olympus E5", + "pixelDepth":12, + "pixels":12632064, + "price":1699, + "resolution":[4096,3084], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":800 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E510.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E510.txt new file mode 100644 index 0000000..de4d67c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E510.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07462558898761443, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7779243274424468, + "newModel":0.22109739830133673, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E510/vignette3.png", + "isMetal":false, + "launchDate":1173024000000, + "maxISO":1600, + "name":"Olympus E510", + "pixelDepth":10, + "pixels":10416000, + "price":593, + "resolution":[3720,2800], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E520.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E520.txt new file mode 100644 index 0000000..b35002d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E520.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07462558898761443, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7860344827586178, + "newModel":0.3487729526151192, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07829684601113168, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E520/vignette3.png", + "isMetal":false, + "launchDate":1210608000000, + "maxISO":1600, + "name":"Olympus E520", + "pixelDepth":10, + "pixels":10416000, + "price":450, + "resolution":[3720,2800], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E600.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E600.txt new file mode 100644 index 0000000..796ec42 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E600.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7838859060402698, + "newModel":0.4574842364369934, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E600/vignette3.png", + "isMetal":false, + "launchDate":1251561600000, + "maxISO":3200, + "name":"Olympus E600", + "pixelDepth":12, + "pixels":12632064, + "price":490, + "resolution":[4096,3084], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus E620.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus E620.txt new file mode 100644 index 0000000..421f9dd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus E620.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.6776033651047088, + "newModel":0.43416924282280067, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/E620/vignette3.png", + "isMetal":false, + "launchDate":1235404800000, + "maxISO":3200, + "name":"Olympus E620", + "pixelDepth":12, + "pixels":12644400, + "price":618, + "resolution":[4100,3084], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M1 Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M1 Mark II.txt new file mode 100644 index 0000000..bded084 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M1 Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[64,25600], + "assessment":{ + "astronomy":0.7681262391569119, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7947135702942201, + "portrait":0.7569656133868935, + "scenery":0.7938956988929231, + "sports":0.922442146520365, + "travel":0.4999999999999997 + }, + "autoFocus":121, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":60.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/OM-D_E-M1_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1474214400000, + "maxISO":25600, + "name":"Olympus OM-D E-M1 Mark II", + "pixelDepth":20, + "pixels":20498880, + "price":2000, + "resolution":[5240,3912], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M1.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M1.txt new file mode 100644 index 0000000..623c93e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.49999999999999667, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":800, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/OM-D_E-M1/vignette3.png", + "isMetal":true, + "launchDate":1378742400000, + "maxISO":25600, + "name":"Olympus OM-D E-M1", + "pixelDepth":16, + "pixels":16110080, + "price":1399, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M10 Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M10 Mark II.txt new file mode 100644 index 0000000..552d788 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M10 Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.6128220755207755, + "lowPrice":0.609096385542166, + "newModel":0.6775019875015178, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.5572072098756068 + }, + "autoFocus":81, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":8.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/OM-D_E-M10_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1440432000000, + "maxISO":25600, + "name":"Olympus OM-D E-M10 Mark II", + "pixelDepth":16, + "pixels":16110080, + "price":650, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":342 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M10.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M10.txt new file mode 100644 index 0000000..90289e8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.4999999999999973, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":81, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/OM-D_E-M10/vignette3.png", + "isMetal":true, + "launchDate":1390924800000, + "maxISO":25600, + "name":"Olympus OM-D E-M10", + "pixelDepth":16, + "pixels":16110080, + "price":700, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M5 Mark II.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M5 Mark II.txt new file mode 100644 index 0000000..da2f015 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M5 Mark II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5407067040274806, + "lowPrice":0.5000000000000002, + "newModel":0.5811554917614258, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.5346221378053997 + }, + "autoFocus":81, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/OM-D_E-M5_Mark_II/vignette3.png", + "isMetal":true, + "launchDate":1423065600000, + "maxISO":25600, + "name":"Olympus OM-D E-M5 Mark II", + "pixelDepth":16, + "pixels":16110080, + "price":1100, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":417 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M5.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M5.txt new file mode 100644 index 0000000..b9b8945 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus OM-D E-M5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5362743005879058, + "lowPrice":0.5002492512472553, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.918078369905959, + "travel":0.5317947310647645 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/OM-D_E-M5/vignette3.png", + "isMetal":false, + "launchDate":1328630400000, + "maxISO":25600, + "name":"Olympus OM-D E-M5", + "pixelDepth":16, + "pixels":16110080, + "price":999, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":425 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-P5.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-P5.txt new file mode 100644 index 0000000..e5086a2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-P5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.4999999999999999, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.918078369905959, + "travel":0.4999999999999997 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_E-P5/vignette3.png", + "isMetal":true, + "launchDate":1368115200000, + "maxISO":25600, + "name":"Olympus PEN E-P5", + "pixelDepth":16, + "pixels":16110080, + "price":1000, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PL5.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PL5.txt new file mode 100644 index 0000000..600f413 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PL5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.780014451840753, + "lowPrice":0.5693093341274658, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.918078369905959, + "travel":0.5717193397980831 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_E-PL5/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":25600, + "name":"Olympus PEN E-PL5", + "pixelDepth":16, + "pixels":16110080, + "price":699, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":279 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PL7.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PL7.txt new file mode 100644 index 0000000..db00562 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PL7.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7151478602554087, + "lowPrice":0.7774999999999945, + "newModel":0.5304164978937393, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.5652509571929268 + }, + "autoFocus":81, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_E-PL7/vignette3.png", + "isMetal":true, + "launchDate":1409155200000, + "maxISO":25600, + "name":"Olympus PEN E-PL7", + "pixelDepth":16, + "pixels":16110080, + "price":600, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":309 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PM2.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PM2.txt new file mode 100644 index 0000000..c5c300b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN E-PM2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7862428552525458, + "lowPrice":0.7775606210893378, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.918078369905959, + "travel":0.5818623594201947 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_E-PM2/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":25600, + "name":"Olympus PEN E-PM2", + "pixelDepth":16, + "pixels":16110080, + "price":599, + "resolution":[4640,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":223 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP1.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP1.txt new file mode 100644 index 0000000..81bbe99 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.4493673838990525, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_EP1/vignette3.png", + "isMetal":false, + "launchDate":1245081600000, + "maxISO":6400, + "name":"Olympus PEN EP1", + "pixelDepth":12, + "pixels":12644400, + "price":1098, + "resolution":[4100,3084], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP2.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP2.txt new file mode 100644 index 0000000..41928ac --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.4638099462065186, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_EP2/vignette3.png", + "isMetal":false, + "launchDate":1257350400000, + "maxISO":6400, + "name":"Olympus PEN EP2", + "pixelDepth":12, + "pixels":12644400, + "price":1100, + "resolution":[4100,3084], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP3.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP3.txt new file mode 100644 index 0000000..3f529bc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EP3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5797773392152289, + "travel":0.4999999999999997 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_EP3/vignette3.png", + "isMetal":true, + "launchDate":1309363200000, + "maxISO":12800, + "name":"Olympus PEN EP3", + "pixelDepth":12, + "pixels":12403200, + "price":1000, + "resolution":[4080,3040], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL1.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL1.txt new file mode 100644 index 0000000..2fb346e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7779851770197644, + "lowPrice":0.7775606210893378, + "newModel":0.4713464098737795, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07875190169689873, + "travel":0.5681479853800597 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_EPL1/vignette3.png", + "isMetal":true, + "launchDate":1265126400000, + "maxISO":3200, + "name":"Olympus PEN EPL1", + "pixelDepth":12, + "pixels":12632064, + "price":599, + "resolution":[4096,3084], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":296 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL2.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL2.txt new file mode 100644 index 0000000..ebcf4e6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7775606210893378, + "newModel":0.49529561480541173, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08746015737559586, + "travel":0.1999999999999999 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_EPL2/vignette3.png", + "isMetal":false, + "launchDate":1294243200000, + "maxISO":6400, + "name":"Olympus PEN EPL2", + "pixelDepth":12, + "pixels":12632064, + "price":599, + "resolution":[4096,3084], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL3.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL3.txt new file mode 100644 index 0000000..c1c7585 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPL3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7855068493150691, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.918078369905959, + "travel":0.4999999999999997 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":5.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_EPL3/vignette3.png", + "isMetal":true, + "launchDate":1309363200000, + "maxISO":12800, + "name":"Olympus PEN EPL3", + "pixelDepth":12, + "pixels":12403200, + "price":460, + "resolution":[4080,3040], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPM1.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPM1.txt new file mode 100644 index 0000000..e9b1edc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN EPM1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.918078369905959, + "travel":0.4999999999999997 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":5.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN_EPM1/vignette3.png", + "isMetal":true, + "launchDate":1309363200000, + "maxISO":12800, + "name":"Olympus PEN EPM1", + "pixelDepth":12, + "pixels":12403200, + "price":499, + "resolution":[4080,3040], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN-F.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN-F.txt new file mode 100644 index 0000000..8767ece --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus PEN-F.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,25600], + "assessment":{ + "astronomy":0.7684955031908199, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5726361670492659, + "lowPrice":0.5000000000000002, + "newModel":0.785412816207799, + "portrait":0.7572868840213457, + "scenery":0.7926129370273821, + "sports":0.9203087175298793, + "travel":0.5486631326330748 + }, + "autoFocus":81, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/PEN-F/vignette3.png", + "isMetal":true, + "launchDate":1453824000000, + "maxISO":25600, + "name":"Olympus PEN-F", + "pixelDepth":20, + "pixels":20300800, + "price":1200, + "resolution":[5200,3904], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":373 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus SP 565 UZ.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus SP 565 UZ.txt new file mode 100644 index 0000000..90728b6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus SP 565 UZ.txt @@ -0,0 +1,34 @@ +{ + "ISO":[64,1600], + "assessment":{ + "astronomy":0.07506642524478498, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7869155797003347, + "newModel":0.3933539059946349, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07245345875816203, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":1.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SP_565_UZ/vignette3.png", + "isMetal":false, + "launchDate":1219593600000, + "maxISO":1600, + "name":"Olympus SP 565 UZ", + "pixelDepth":10, + "pixels":10046688, + "price":433, + "resolution":[3664,2742], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus SP 570 UZ.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus SP 570 UZ.txt new file mode 100644 index 0000000..e6d2ac9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus SP 570 UZ.txt @@ -0,0 +1,34 @@ +{ + "ISO":[64,6400], + "assessment":{ + "astronomy":0.09184912717672215, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7822105263157916, + "newModel":0.24407239113139745, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07245345875816203, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":1.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SP_570_UZ/vignette3.png", + "isMetal":false, + "launchDate":1200931200000, + "maxISO":6400, + "name":"Olympus SP 570 UZ", + "pixelDepth":10, + "pixels":10046688, + "price":520, + "resolution":[3664,2742], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus Stylus1.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus Stylus1.txt new file mode 100644 index 0000000..1a48e94 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus Stylus1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.09950000000000005, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5693093341274658, + "newModel":0.5000000000000016, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Stylus1/vignette3.png", + "isMetal":false, + "launchDate":1382976000000, + "maxISO":12800, + "name":"Olympus Stylus1", + "pixelDepth":12, + "pixels":11968000, + "price":699, + "resolution":[4000,2992], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus XZ-2 iHS.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus XZ-2 iHS.txt new file mode 100644 index 0000000..d459207 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus XZ-2 iHS.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.0992896951943043, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.6060336964889568, + "lowPrice":0.780541944127943, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.46319057892844184, + "travel":0.5561613545026597 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":2.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/XZ-2_iHS/vignette3.png", + "isMetal":false, + "launchDate":1347811200000, + "maxISO":12800, + "name":"Olympus XZ-2 iHS", + "pixelDepth":12, + "pixels":11896224, + "price":549, + "resolution":[3984,2986], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":346 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Olympus XZ1.txt b/scr/模糊专家系统/fuzzy-expert/result/Olympus XZ1.txt new file mode 100644 index 0000000..e264a57 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Olympus XZ1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.09228079614586604, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7804838709677436, + "lowPrice":0.7836646718468486, + "newModel":0.49529561480541173, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.08116981209654213, + "travel":0.4385198821796793 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Olympus", + "flash":false, + "frameRate":2.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/XZ1/vignette3.png", + "isMetal":false, + "launchDate":1294243200000, + "maxISO":6400, + "name":"Olympus XZ1", + "pixelDepth":10, + "pixels":10156800, + "price":494, + "resolution":[3680,2760], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":275 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic DMC FZ28.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic DMC FZ28.txt new file mode 100644 index 0000000..2940545 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic DMC FZ28.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07501242967942229, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7872729469602328, + "newModel":0.38114424349938836, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/DMC_FZ28/vignette3.png", + "isMetal":false, + "launchDate":1216569600000, + "maxISO":1600, + "name":"Panasonic DMC FZ28", + "pixelDepth":10, + "pixels":10101672, + "price":426, + "resolution":[3668,2754], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-FZ150.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-FZ150.txt new file mode 100644 index 0000000..0c564f9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-FZ150.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5077518978895429, + "lowPrice":0.6435495207667674, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.933, + "travel":0.5077038001485237 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ150/vignette3.png", + "isMetal":false, + "launchDate":1314288000000, + "maxISO":6400, + "name":"Panasonic LUMIX DMC-FZ150", + "pixelDepth":12, + "pixels":12112256, + "price":630, + "resolution":[4016,3016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":484 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-FZ200.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-FZ200.txt new file mode 100644 index 0000000..7d28d0a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-FZ200.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ200/vignette3.png", + "isMetal":false, + "launchDate":1342540800000, + "maxISO":6400, + "name":"Panasonic LUMIX DMC-FZ200", + "pixelDepth":12, + "pixels":12112256, + "price":600, + "resolution":[4016,3016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":537 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-G6.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-G6.txt new file mode 100644 index 0000000..72c96f5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-G6.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5506756756756758, + "newModel":0.4999999999999999, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-G6/vignette3.png", + "isMetal":true, + "launchDate":1366732800000, + "maxISO":25600, + "name":"Panasonic LUMIX DMC-G6", + "pixelDepth":16, + "pixels":16054528, + "price":750, + "resolution":[4624,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-LF1.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-LF1.txt new file mode 100644 index 0000000..f873187 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic LUMIX DMC-LF1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833333333333332, + "newModel":0.4999999999999999, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-LF1/vignette3.png", + "isMetal":true, + "launchDate":1366732800000, + "maxISO":12800, + "name":"Panasonic LUMIX DMC-LF1", + "pixelDepth":12, + "pixels":12112256, + "price":500, + "resolution":[4016,3016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DC-GH5.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DC-GH5.txt new file mode 100644 index 0000000..9ccf70f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DC-GH5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7684339285286038, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7976517087388207, + "portrait":0.7572262931000363, + "scenery":0.7928172707242244, + "sports":0.9257801806104143, + "travel":0.4999999999999997 + }, + "autoFocus":225, + "bluetooth":true, + "brand":"Panasonic", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DC-GH5/vignette3.png", + "isMetal":true, + "launchDate":1483459200000, + "maxISO":25600, + "name":"Panasonic Lumix DC-GH5", + "pixelDepth":20, + "pixels":20332032, + "price":2000, + "resolution":[5208,3904], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":645 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC FX150.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC FX150.txt new file mode 100644 index 0000000..8f748a1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC FX150.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.06971978751660024, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7890575539568294, + "newModel":0.38114424349938836, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_FX150/vignette3.png", + "isMetal":false, + "launchDate":1216569600000, + "maxISO":1600, + "name":"Panasonic Lumix DMC FX150", + "pixelDepth":14, + "pixels":14721996, + "price":390, + "resolution":[4429,3324], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G1.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G1.txt new file mode 100644 index 0000000..5d9739e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5420363153232955, + "newModel":0.3988588623602434, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G1/vignette3.png", + "isMetal":false, + "launchDate":1221148800000, + "maxISO":3200, + "name":"Panasonic Lumix DMC G1", + "pixelDepth":12, + "pixels":12118288, + "price":790, + "resolution":[4018,3016], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G10.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G10.txt new file mode 100644 index 0000000..7d5823b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.4738306857015196, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.09011911411139363, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":3.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G10/vignette3.png", + "isMetal":false, + "launchDate":1267891200000, + "maxISO":6400, + "name":"Panasonic Lumix DMC G10", + "pixelDepth":12, + "pixels":12000000, + "price":600, + "resolution":[4000,3000], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G2.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G2.txt new file mode 100644 index 0000000..cbba4e4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7775606210893378, + "newModel":0.4738306857015196, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.09011911411139363, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":3.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G2/vignette3.png", + "isMetal":false, + "launchDate":1267891200000, + "maxISO":6400, + "name":"Panasonic Lumix DMC G2", + "pixelDepth":12, + "pixels":12000000, + "price":599, + "resolution":[4000,3000], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G3.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G3.txt new file mode 100644 index 0000000..eee3ff0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.6243849712365716, + "lowPrice":0.7775606210893378, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.5, + "sports":0.07402016607354676, + "travel":0.5587468760938182 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G3/vignette3.png", + "isMetal":false, + "launchDate":1305129600000, + "maxISO":6400, + "name":"Panasonic Lumix DMC G3", + "pixelDepth":16, + "pixels":15962112, + "price":599, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":336 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G5.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G5.txt new file mode 100644 index 0000000..1e9ec03 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC G5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.5, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":20.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G5/vignette3.png", + "isMetal":false, + "launchDate":1342540800000, + "maxISO":12800, + "name":"Panasonic Lumix DMC G5", + "pixelDepth":16, + "pixels":16054528, + "price":650, + "resolution":[4624,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF1.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF1.txt new file mode 100644 index 0000000..fd93697 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7793057324840699, + "newModel":0.4577835952643776, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF1/vignette3.png", + "isMetal":false, + "launchDate":1251820800000, + "maxISO":3200, + "name":"Panasonic Lumix DMC GF1", + "pixelDepth":12, + "pixels":12118288, + "price":570, + "resolution":[4018,3016], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF2.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF2.txt new file mode 100644 index 0000000..98574ca --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7816405228758168, + "lowPrice":0.7775606210893378, + "newModel":0.49095776088763216, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08784330484330488, + "travel":0.4433003897388093 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF2/vignette3.png", + "isMetal":false, + "launchDate":1288800000000, + "maxISO":6400, + "name":"Panasonic Lumix DMC GF2", + "pixelDepth":12, + "pixels":12329408, + "price":599, + "resolution":[4088,3016], + "touchScreen":true, + "video":false, + "waterproof":false, + "weight":265 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF3.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF3.txt new file mode 100644 index 0000000..6b7fdc4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5693093341274658, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07643608866238999, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":3.8, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF3/vignette3.png", + "isMetal":false, + "launchDate":1307894400000, + "maxISO":6400, + "name":"Panasonic Lumix DMC GF3", + "pixelDepth":12, + "pixels":12112256, + "price":699, + "resolution":[4016,3016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF5.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF5.txt new file mode 100644 index 0000000..28ca4b7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7775606210893378, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF5/vignette3.png", + "isMetal":false, + "launchDate":1333555200000, + "maxISO":12800, + "name":"Panasonic Lumix DMC GF5", + "pixelDepth":12, + "pixels":12112256, + "price":599, + "resolution":[4016,3016], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF6.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF6.txt new file mode 100644 index 0000000..21acccc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GF6.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5805915492957675, + "newModel":0.4999999999999993, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":20.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF6/vignette3.png", + "isMetal":true, + "launchDate":1365436800000, + "maxISO":25600, + "name":"Panasonic Lumix DMC GF6", + "pixelDepth":16, + "pixels":15962112, + "price":680, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GH1.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GH1.txt new file mode 100644 index 0000000..ad3caa5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GH1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5262343637670737, + "newModel":0.435263218452224, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH1/vignette3.png", + "isMetal":false, + "launchDate":1236009600000, + "maxISO":3200, + "name":"Panasonic Lumix DMC GH1", + "pixelDepth":12, + "pixels":12118288, + "price":880, + "resolution":[4018,3016], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GH2.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GH2.txt new file mode 100644 index 0000000..c16cd75 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GH2.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.4879463588599421, + "portrait":0.5, + "scenery":0.5, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":4.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH2/vignette3.png", + "isMetal":false, + "launchDate":1284998400000, + "maxISO":12800, + "name":"Panasonic Lumix DMC GH2", + "pixelDepth":16, + "pixels":16526720, + "price":1100, + "resolution":[4760,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GX1.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GX1.txt new file mode 100644 index 0000000..14beb33 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC GX1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5693093341274658, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.5, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":4.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GX1/vignette3.png", + "isMetal":true, + "launchDate":1320595200000, + "maxISO":12800, + "name":"Panasonic Lumix DMC GX1", + "pixelDepth":16, + "pixels":15962112, + "price":699, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC L10.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC L10.txt new file mode 100644 index 0000000..5d98d14 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC L10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07498410914110726, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5086267210380269, + "newModel":0.22422653820654423, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_L10/vignette3.png", + "isMetal":false, + "launchDate":1188403200000, + "maxISO":1600, + "name":"Panasonic Lumix DMC L10", + "pixelDepth":10, + "pixels":10129182, + "price":964, + "resolution":[3682,2751], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX10.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX10.txt new file mode 100644 index 0000000..bc55ad6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,25600], + "assessment":{ + "astronomy":0.7689126965844876, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5693093341274658, + "newModel":0.7947135702942201, + "portrait":0.7577852385599273, + "scenery":0.7966064796863366, + "sports":0.9280927874100128, + "travel":0.6000000000000001 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":10.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX10/vignette3.png", + "isMetal":true, + "launchDate":1474214400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC LX10", + "pixelDepth":20, + "pixels":20108032, + "price":699, + "resolution":[5488,3664], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX3.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX3.txt new file mode 100644 index 0000000..50999e7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,3200], + "assessment":{ + "astronomy":0.08158626796976341, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7860344827586178, + "newModel":0.3920642881983111, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX3/vignette3.png", + "isMetal":false, + "launchDate":1219248000000, + "maxISO":3200, + "name":"Panasonic Lumix DMC LX3", + "pixelDepth":10, + "pixels":10101672, + "price":450, + "resolution":[3668,2754], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX5.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX5.txt new file mode 100644 index 0000000..e891275 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.09159248417473735, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7849727891156452, + "newModel":0.48367497900914785, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX5/vignette3.png", + "isMetal":false, + "launchDate":1279641600000, + "maxISO":12800, + "name":"Panasonic Lumix DMC LX5", + "pixelDepth":10, + "pixels":9980928, + "price":470, + "resolution":[3648,2736], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX7.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX7.txt new file mode 100644 index 0000000..d26a8d9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC LX7.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.0901815952879145, + "durableBuild":0.8000000000000005, + "event":0.4499999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7860344827586178, + "newModel":0.5000000000000002, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.9219632107023416, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":11.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX7/vignette3.png", + "isMetal":true, + "launchDate":1342540800000, + "maxISO":12800, + "name":"Panasonic Lumix DMC LX7", + "pixelDepth":10, + "pixels":9616512, + "price":450, + "resolution":[3792,2536], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ1000.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ1000.txt new file mode 100644 index 0000000..617f7ea --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ1000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,25600], + "assessment":{ + "astronomy":0.7689126965844876, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000013, + "lowPrice":0.5223287671232876, + "newModel":0.5083073264676934, + "portrait":0.7577852385599273, + "scenery":0.7913335562244795, + "sports":0.9305153256238644, + "travel":0.4999999999999997 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ1000/vignette3.png", + "isMetal":true, + "launchDate":1402502400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-FZ1000", + "pixelDepth":20, + "pixels":20108032, + "price":900, + "resolution":[5488,3664], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":780 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ2000.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ2000.txt new file mode 100644 index 0000000..6007ae6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ2000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,25600], + "assessment":{ + "astronomy":0.7689126965844876, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.7947135702942201, + "portrait":0.7577852385599273, + "scenery":0.7913335562244795, + "sports":0.9305153256238644, + "travel":0.4999999999999997 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ2000/vignette3.png", + "isMetal":true, + "launchDate":1474214400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-FZ2000", + "pixelDepth":20, + "pixels":20108032, + "price":1200, + "resolution":[5488,3664], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ330.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ330.txt new file mode 100644 index 0000000..9841680 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ330.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.652456703667635, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.9329549431761037, + "travel":0.4999999999999997 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ330/vignette3.png", + "isMetal":false, + "launchDate":1436976000000, + "maxISO":6400, + "name":"Panasonic Lumix DMC-FZ330", + "pixelDepth":12, + "pixels":12112256, + "price":600, + "resolution":[4016,3016], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":691 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ70.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ70.txt new file mode 100644 index 0000000..8803fb1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-FZ70.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.788620117127104, + "newModel":0.5000000000000014, + "portrait":0.5, + "scenery":0.5, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ70/vignette3.png", + "isMetal":false, + "launchDate":1374076800000, + "maxISO":6400, + "name":"Panasonic Lumix DMC-FZ70", + "pixelDepth":16, + "pixels":16054528, + "price":399, + "resolution":[4624,3472], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":562 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-G80.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-G80.txt new file mode 100644 index 0000000..9576905 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-G80.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5223287671232876, + "newModel":0.7947135702942201, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.9329098228663452, + "travel":0.4999999999999997 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-G80/vignette3.png", + "isMetal":true, + "launchDate":1474214400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-G80", + "pixelDepth":16, + "pixels":15962112, + "price":900, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GH3.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GH3.txt new file mode 100644 index 0000000..8509cfb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GH3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5142987351549673, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.5, + "travel":0.5139947079947079 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH3/vignette3.png", + "isMetal":true, + "launchDate":1347811200000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-GH3", + "pixelDepth":16, + "pixels":16054528, + "price":1300, + "resolution":[4624,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":470 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GH4.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GH4.txt new file mode 100644 index 0000000..32ec3b5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GH4.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5166240245186735, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000037, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.9329549431761037, + "travel":0.5161471125474214 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH4/vignette3.png", + "isMetal":true, + "launchDate":1391702400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-GH4", + "pixelDepth":16, + "pixels":16054528, + "price":1700, + "resolution":[4624,3472], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":465 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GM1.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GM1.txt new file mode 100644 index 0000000..3310fd6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GM1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.791105053176385, + "lowPrice":0.7774999999999945, + "newModel":0.4999999999999982, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.5, + "travel":0.5889682780620483 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM1/vignette3.png", + "isMetal":false, + "launchDate":1381939200000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-GM1", + "pixelDepth":16, + "pixels":15962112, + "price":600, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":173 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GM5.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GM5.txt new file mode 100644 index 0000000..6edee30 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GM5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.5356718768052593, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":5.8, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM5/vignette3.png", + "isMetal":false, + "launchDate":1410710400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-GM5", + "pixelDepth":16, + "pixels":15962112, + "price":650, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX7.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX7.txt new file mode 100644 index 0000000..a657ee2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX7.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5002492512472553, + "newModel":0.49999999999999734, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX7/vignette3.png", + "isMetal":true, + "launchDate":1375286400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-GX7", + "pixelDepth":16, + "pixels":15962112, + "price":999, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX8.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX8.txt new file mode 100644 index 0000000..bc35495 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX8.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7684955031908199, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5310506986743073, + "lowPrice":0.5000000000000002, + "newModel":0.652456703667635, + "portrait":0.7572868840213457, + "scenery":0.7926129370273821, + "sports":0.9202082067600574, + "travel":0.5281263875886049 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX8/vignette3.png", + "isMetal":true, + "launchDate":1436976000000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-GX8", + "pixelDepth":20, + "pixels":20300800, + "price":1200, + "resolution":[5200,3904], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":435 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX80.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX80.txt new file mode 100644 index 0000000..8fdafd9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-GX80.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5637677017282634, + "lowPrice":0.540338983050848, + "newModel":0.7884656742453423, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.5390282916213289, + "travel":0.5456816567615795 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":40.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX80/vignette3.png", + "isMetal":true, + "launchDate":1459785600000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-GX80", + "pixelDepth":16, + "pixels":15962112, + "price":800, + "resolution":[4608,3464], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":383 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-LX100.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-LX100.txt new file mode 100644 index 0000000..4706031 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-LX100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4499999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5225276166212549, + "newModel":0.5356718768052593, + "portrait":0.23214285714285718, + "scenery":0.5349047177886246, + "sports":0.9282101545000288, + "travel":0.4999999999999997 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":11.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-LX100/vignette3.png", + "isMetal":true, + "launchDate":1410710400000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-LX100", + "pixelDepth":12, + "pixels":12813312, + "price":899, + "resolution":[4128,3104], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS100.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS100.txt new file mode 100644 index 0000000..05e01a6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,25600], + "assessment":{ + "astronomy":0.7689126965844876, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.7810649350649359, + "lowPrice":0.5688059701492514, + "newModel":0.7843904802557701, + "portrait":0.7577852385599273, + "scenery":0.7913335562244795, + "sports":0.9305153256238644, + "travel":0.5735143996455466 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":50.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS100/vignette3.png", + "isMetal":true, + "launchDate":1451923200000, + "maxISO":25600, + "name":"Panasonic Lumix DMC-ZS100", + "pixelDepth":20, + "pixels":20108032, + "price":700, + "resolution":[5488,3664], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":270 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS50.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS50.txt new file mode 100644 index 0000000..a257067 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS50.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7868641561878553, + "lowPrice":0.7885714285714326, + "newModel":0.5704789664781744, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5, + "travel":0.5828093268052286 + }, + "autoFocus":23, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS50/vignette3.png", + "isMetal":true, + "launchDate":1420387200000, + "maxISO":6400, + "name":"Panasonic Lumix DMC-ZS50", + "pixelDepth":12, + "pixels":12112256, + "price":400, + "resolution":[4016,3016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":217 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS60.txt b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS60.txt new file mode 100644 index 0000000..810cfc2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Panasonic Lumix DMC-ZS60.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.7844324324324303, + "lowPrice":0.7860344827586178, + "newModel":0.7843904802557701, + "portrait":0.5, + "scenery":0.5, + "sports":0.9329549431761037, + "travel":0.579036395147314 + }, + "autoFocus":49, + "bluetooth":false, + "brand":"Panasonic", + "flash":false, + "frameRate":40.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS60/vignette3.png", + "isMetal":true, + "launchDate":1451923200000, + "maxISO":6400, + "name":"Panasonic Lumix DMC-ZS60", + "pixelDepth":18, + "pixels":18115456, + "price":450, + "resolution":[4912,3688], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":240 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax 645D.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax 645D.txt new file mode 100644 index 0000000..0ca43af --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax 645D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.6843044393014942, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.4733707601890019, + "portrait":0.8000000000000005, + "scenery":0.933, + "sports":0.4981685791550049, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":1.1, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/645D/vignette3.png", + "isMetal":false, + "launchDate":1267372800000, + "maxISO":1600, + "name":"Pentax 645D", + "pixelDepth":40, + "pixels":41218048, + "price":9400, + "resolution":[7424,5552], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax 645Z.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax 645Z.txt new file mode 100644 index 0000000..06a2c7e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax 645Z.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,204800], + "assessment":{ + "astronomy":0.8, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.1999999999999999, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.8000000000000005, + "scenery":0.8589465478841881, + "sports":0.7040822943449921, + "travel":0.4274213155703581 + }, + "autoFocus":27, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/645Z/vignette3.png", + "isMetal":true, + "launchDate":1397491200000, + "maxISO":204800, + "name":"Pentax 645Z", + "pixelDepth":51, + "pixels":51261600, + "price":8499, + "resolution":[8268,6200], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":1470 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K 01.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K 01.txt new file mode 100644 index 0000000..2ef30c6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K 01.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5225276166212549, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K_01/vignette3.png", + "isMetal":false, + "launchDate":1328112000000, + "maxISO":25600, + "name":"Pentax K 01", + "pixelDepth":16, + "pixels":16150592, + "price":899, + "resolution":[4936,3272], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":561 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-1.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-1.txt new file mode 100644 index 0000000..ae48fa3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,204800], + "assessment":{ + "astronomy":0.7991884704521022, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7863670909985402, + "portrait":0.7987767219178751, + "scenery":0.8372544396217364, + "sports":0.8187182533260141, + "travel":0.6000000000000001 + }, + "autoFocus":33, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":4.4, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/K-1/vignette3.png", + "isMetal":true, + "launchDate":1455638400000, + "maxISO":204800, + "name":"Pentax K-1", + "pixelDepth":36, + "pixels":36590400, + "price":1800, + "resolution":[7392,4950], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-3 II.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-3 II.txt new file mode 100644 index 0000000..647323c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-3 II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.7855073257873711, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.6110358267573983, + "portrait":0.7703483691026713, + "scenery":0.8181443144048468, + "sports":0.7844544401853034, + "travel":0.6000000000000001 + }, + "autoFocus":27, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":8.3, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/K-3_II/vignette3.png", + "isMetal":true, + "launchDate":1429718400000, + "maxISO":51200, + "name":"Pentax K-3 II", + "pixelDepth":24, + "pixels":24514560, + "price":1100, + "resolution":[6080,4032], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-3.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-3.txt new file mode 100644 index 0000000..746bde3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.7855073257873711, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.4999999999999989, + "portrait":0.7703483691026713, + "scenery":0.8312799771905217, + "sports":0.7844544401853034, + "travel":0.4999999999999997 + }, + "autoFocus":27, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":8.3, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K-3/vignette3.png", + "isMetal":true, + "launchDate":1381161600000, + "maxISO":51200, + "name":"Pentax K-3", + "pixelDepth":24, + "pixels":24514560, + "price":1300, + "resolution":[6080,4032], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-30.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-30.txt new file mode 100644 index 0000000..d07a9c1 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-30.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.7849727891156452, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7904757995564279, + "sports":0.08709750835940046, + "travel":0.6000000000000001 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":6.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/K-30/vignette3.png", + "isMetal":true, + "launchDate":1337616000000, + "maxISO":25600, + "name":"Pentax K-30", + "pixelDepth":16, + "pixels":16150592, + "price":470, + "resolution":[4936,3272], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-5 II.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-5 II.txt new file mode 100644 index 0000000..fe44cb3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-5 II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,51200], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5002492512472553, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.08709750835940046, + "travel":0.6000000000000001 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":7.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/K-5_II/vignette3.png", + "isMetal":false, + "launchDate":1347292800000, + "maxISO":51200, + "name":"Pentax K-5 II", + "pixelDepth":16, + "pixels":16084992, + "price":999, + "resolution":[4928,3264], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":680 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-5 IIs.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-5 IIs.txt new file mode 100644 index 0000000..f17bde7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-5 IIs.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,51200], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.08709750835940046, + "travel":0.6000000000000001 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":7.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/K-5_IIs/vignette3.png", + "isMetal":false, + "launchDate":1347292800000, + "maxISO":51200, + "name":"Pentax K-5 IIs", + "pixelDepth":16, + "pixels":16393728, + "price":1199, + "resolution":[4992,3284], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":680 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-50.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-50.txt new file mode 100644 index 0000000..10c0fea --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-50.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51600], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7775606210893378, + "newModel":0.4999999999999988, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.08709750835940046, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K-50/vignette3.png", + "isMetal":true, + "launchDate":1370966400000, + "maxISO":51600, + "name":"Pentax K-50", + "pixelDepth":16, + "pixels":16150592, + "price":599, + "resolution":[4936,3272], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":590 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-500.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-500.txt new file mode 100644 index 0000000..3cfb519 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-500.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51600], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.4999999999999988, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.08709750835940046, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K-500/vignette3.png", + "isMetal":true, + "launchDate":1370966400000, + "maxISO":51600, + "name":"Pentax K-500", + "pixelDepth":16, + "pixels":16150592, + "price":600, + "resolution":[4936,3272], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":586 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K-S1.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-S1.txt new file mode 100644 index 0000000..dd030e6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K-S1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.7921735416410526, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5509399968123966, + "newModel":0.5301265009296511, + "portrait":0.7576143941853541, + "scenery":0.8086863944353474, + "sports":0.14159419166227288, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K-S1/vignette3.png", + "isMetal":true, + "launchDate":1409068800000, + "maxISO":51200, + "name":"Pentax K-S1", + "pixelDepth":20, + "pixels":20166656, + "price":749, + "resolution":[5504,3664], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K10D.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K10D.txt new file mode 100644 index 0000000..725fad4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K10D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07474809247089696, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5223287671232876, + "newModel":0.2181843616746698, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K10D/vignette3.png", + "isMetal":false, + "launchDate":1158076800000, + "maxISO":1600, + "name":"Pentax K10D", + "pixelDepth":10, + "pixels":10328064, + "price":900, + "resolution":[3936,2624], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K200D.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K200D.txt new file mode 100644 index 0000000..8fe3ff7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K200D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07491549761011086, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.597519313304726, + "newModel":0.24558198458970612, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.0784042080851938, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":2.8, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K200D/vignette3.png", + "isMetal":false, + "launchDate":1201017600000, + "maxISO":1600, + "name":"Pentax K200D", + "pixelDepth":10, + "pixels":10191936, + "price":660, + "resolution":[3896,2616], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K20D.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K20D.txt new file mode 100644 index 0000000..f43db96 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K20D.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5459308666017538, + "newModel":0.24558198458970612, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K20D/vignette3.png", + "isMetal":false, + "launchDate":1201017600000, + "maxISO":6400, + "name":"Pentax K20D", + "pixelDepth":14, + "pixels":14645312, + "price":770, + "resolution":[4688,3124], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K5.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K5.txt new file mode 100644 index 0000000..aff8220 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,51200], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.4999999999999993, + "lowPrice":0.4055555555555558, + "newModel":0.4878779963391795, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.08709750835940046, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K5/vignette3.png", + "isMetal":false, + "launchDate":1284912000000, + "maxISO":51200, + "name":"Pentax K5", + "pixelDepth":16, + "pixels":16084992, + "price":1600, + "resolution":[4928,3264], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":740 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax K7.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax K7.txt new file mode 100644 index 0000000..a7ad81e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax K7.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.4460967507986353, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":5.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/K7/vignette3.png", + "isMetal":false, + "launchDate":1242748800000, + "maxISO":6400, + "name":"Pentax K7", + "pixelDepth":14, + "pixels":14852096, + "price":1900, + "resolution":[4736,3136], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax KM.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax KM.txt new file mode 100644 index 0000000..906dc8d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax KM.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08155286617093023, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7804838709677436, + "newModel":0.40172294729228947, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07829684601113168, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":3.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/KM/vignette3.png", + "isMetal":false, + "launchDate":1222012800000, + "maxISO":3200, + "name":"Pentax KM", + "pixelDepth":10, + "pixels":10191936, + "price":550, + "resolution":[3896,2616], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax Kr.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax Kr.txt new file mode 100644 index 0000000..1c3cc5a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax Kr.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.4891793045993771, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.08709750835940046, + "travel":0.4999999999999997 + }, + "autoFocus":11, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Kr/vignette3.png", + "isMetal":false, + "launchDate":1286553600000, + "maxISO":12800, + "name":"Pentax Kr", + "pixelDepth":12, + "pixels":12212224, + "price":700, + "resolution":[4288,2848], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":544 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax Kx.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax Kx.txt new file mode 100644 index 0000000..68b79e3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax Kx.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.6239120879120843, + "newModel":0.45925794491957994, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":4.7, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Kx/vignette3.png", + "isMetal":false, + "launchDate":1253116800000, + "maxISO":12800, + "name":"Pentax Kx", + "pixelDepth":12, + "pixels":12358212, + "price":640, + "resolution":[4309,2868], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax MX-1.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax MX-1.txt new file mode 100644 index 0000000..3dea0bf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax MX-1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.5000000000000009, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/MX-1/vignette3.png", + "isMetal":true, + "launchDate":1357488000000, + "maxISO":12800, + "name":"Pentax MX-1", + "pixelDepth":12, + "pixels":12088160, + "price":499, + "resolution":[4016,3010], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax Q.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax Q.txt new file mode 100644 index 0000000..883fbbc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax Q.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5405018411683207, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Q/vignette3.png", + "isMetal":false, + "launchDate":1308672000000, + "maxISO":6400, + "name":"Pentax Q", + "pixelDepth":12, + "pixels":12000000, + "price":799, + "resolution":[4000,3000], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Pentax Q10.txt b/scr/模糊专家系统/fuzzy-expert/result/Pentax Q10.txt new file mode 100644 index 0000000..9fde3f3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Pentax Q10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7885714285714326, + "lowPrice":0.7833885932814528, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.5, + "travel":0.5853521126760562 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Pentax", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Q10/vignette3.png", + "isMetal":false, + "launchDate":1347292800000, + "maxISO":6400, + "name":"Pentax Q10", + "pixelDepth":12, + "pixels":12000000, + "price":499, + "resolution":[4000,3000], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":200 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Phase One IQ180 Digital Back.txt b/scr/模糊专家系统/fuzzy-expert/result/Phase One IQ180 Digital Back.txt new file mode 100644 index 0000000..63d6fc5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Phase One IQ180 Digital Back.txt @@ -0,0 +1,34 @@ +{ + "ISO":[35,3200], + "assessment":{ + "astronomy":0.7054902216427643, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.4965516706809994, + "portrait":0.8000000000000005, + "scenery":0.933, + "sports":0.49315579740607685, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Phase One", + "flash":false, + "frameRate":0.7, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/IQ180_Digital_Back/vignette3.png", + "isMetal":false, + "launchDate":1295798400000, + "maxISO":3200, + "name":"Phase One IQ180 Digital Back", + "pixelDepth":80, + "pixels":81130080, + "price":42490, + "resolution":[10380,7816], + "touchScreen":true, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Phase One P40 Plus.txt b/scr/模糊专家系统/fuzzy-expert/result/Phase One P40 Plus.txt new file mode 100644 index 0000000..3336092 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Phase One P40 Plus.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,3200], + "assessment":{ + "astronomy":0.7054902216427643, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.4433996683780272, + "portrait":0.8000000000000005, + "scenery":0.933, + "sports":0.499768472551638, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Phase One", + "flash":false, + "frameRate":1.2, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/P40_Plus/vignette3.png", + "isMetal":false, + "launchDate":1240934400000, + "maxISO":3200, + "name":"Phase One P40 Plus", + "pixelDepth":40, + "pixels":40811392, + "price":19500, + "resolution":[7372,5536], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Phase One P45 Plus.txt b/scr/模糊专家系统/fuzzy-expert/result/Phase One P45 Plus.txt new file mode 100644 index 0000000..b98d29e --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Phase One P45 Plus.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,800], + "assessment":{ + "astronomy":0.6789590464394789, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.2200207290364855, + "portrait":0.7999626495104558, + "scenery":0.9329794185094133, + "sports":0.4926892715782085, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Phase One", + "flash":false, + "frameRate":0.67, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/P45_Plus/vignette3.png", + "isMetal":false, + "launchDate":1167580800000, + "maxISO":800, + "name":"Phase One P45 Plus", + "pixelDepth":39, + "pixels":39447224, + "price":32990, + "resolution":[7246,5444], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Phase One P65 Plus.txt b/scr/模糊专家系统/fuzzy-expert/result/Phase One P65 Plus.txt new file mode 100644 index 0000000..eaab94d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Phase One P65 Plus.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,3200], + "assessment":{ + "astronomy":0.7054902216427643, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.3784216378941073, + "portrait":0.8000000000000005, + "scenery":0.933, + "sports":0.49670835035303734, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Phase One", + "flash":false, + "frameRate":1.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/P65_Plus/vignette3.png", + "isMetal":false, + "launchDate":1215964800000, + "maxISO":3200, + "name":"Phase One P65 Plus", + "pixelDepth":60, + "pixels":60480288, + "price":39900, + "resolution":[8984,6732], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Ricoh GR II.txt b/scr/模糊专家系统/fuzzy-expert/result/Ricoh GR II.txt new file mode 100644 index 0000000..798f3f5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Ricoh GR II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7864513069328588, + "lowPrice":0.540338983050848, + "newModel":0.6367447328611162, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.08141121495327112, + "travel":0.5821811517518162 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Ricoh", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/GR_II/vignette3.png", + "isMetal":true, + "launchDate":1434470400000, + "maxISO":25600, + "name":"Ricoh GR II", + "pixelDepth":16, + "pixels":16216320, + "price":800, + "resolution":[4944,3280], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":221 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Ricoh GR.txt b/scr/模糊专家系统/fuzzy-expert/result/Ricoh GR.txt new file mode 100644 index 0000000..5713443 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Ricoh GR.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5405018411683207, + "newModel":0.4999999999999992, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Ricoh", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/GR/vignette3.png", + "isMetal":true, + "launchDate":1366128000000, + "maxISO":25600, + "name":"Ricoh GR", + "pixelDepth":16, + "pixels":16216320, + "price":799, + "resolution":[4944,3280], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung EX1.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung EX1.txt new file mode 100644 index 0000000..cb2d6f0 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung EX1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,3200], + "assessment":{ + "astronomy":0.08152527351808017, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7860344827586178, + "newModel":0.47267626401982743, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EX1/vignette3.png", + "isMetal":false, + "launchDate":1266595200000, + "maxISO":3200, + "name":"Samsung EX1", + "pixelDepth":10, + "pixels":10250640, + "price":450, + "resolution":[3714,2760], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung EX2F.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung EX2F.txt new file mode 100644 index 0000000..4eeaeef --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung EX2F.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.780541944127943, + "newModel":0.5000000000000002, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/EX2F/vignette3.png", + "isMetal":true, + "launchDate":1341244800000, + "maxISO":3200, + "name":"Samsung EX2F", + "pixelDepth":12, + "pixels":12393150, + "price":549, + "resolution":[4070,3045], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung GALAXY NX.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung GALAXY NX.txt new file mode 100644 index 0000000..6864eff --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung GALAXY NX.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.767963968942561, + "durableBuild":0.1999999999999999, + "event":0.6000000000000001, + "lightBuild":0.5448230521169204, + "lowPrice":0.5000000000000002, + "newModel":0.4999999999999987, + "portrait":0.7568678042605349, + "scenery":0.7978176549765145, + "sports":0.17485598775152725, + "travel":0.6160526505589617 + }, + "autoFocus":6, + "bluetooth":true, + "brand":"Samsung", + "flash":false, + "frameRate":8.6, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/GALAXY_NX/vignette3.png", + "isMetal":false, + "launchDate":1371657600000, + "maxISO":25600, + "name":"Samsung GALAXY NX", + "pixelDepth":20, + "pixels":20597844, + "price":1300, + "resolution":[5546,3714], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":410 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung GX 20.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung GX 20.txt new file mode 100644 index 0000000..c372eda --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung GX 20.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.2470739519371539, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/GX_20/vignette3.png", + "isMetal":false, + "launchDate":1201104000000, + "maxISO":6400, + "name":"Samsung GX 20", + "pixelDepth":14, + "pixels":14645312, + "price":1060, + "resolution":[4688,3124], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung Galaxy S6 Edge.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung Galaxy S6 Edge.txt new file mode 100644 index 0000000..28f5c6c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung Galaxy S6 Edge.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,1600], + "assessment":{ + "astronomy":0.06971978751660024, + "durableBuild":0.1999999999999999, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.5898856238849349, + "portrait":0.5, + "scenery":0.8000000000000005, + "sports":0.07402016607354676, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":true, + "brand":"Samsung", + "flash":false, + "frameRate":4.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/Galaxy_S6_Edge/vignette3.png", + "isMetal":false, + "launchDate":1425139200000, + "maxISO":1600, + "name":"Samsung Galaxy S6 Edge", + "pixelDepth":16, + "pixels":15984000, + "price":600, + "resolution":[5328,3000], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 10.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 10.txt new file mode 100644 index 0000000..d9b7fe8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7112748815165891, + "newModel":0.4689337662499292, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.5797773392152289, + "travel":0.4999999999999997 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_10/vignette3.png", + "isMetal":true, + "launchDate":1262534400000, + "maxISO":3200, + "name":"Samsung NX 10", + "pixelDepth":14, + "pixels":14033152, + "price":610, + "resolution":[4592,3056], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 100.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 100.txt new file mode 100644 index 0000000..6fc4f2d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.4874675526148574, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_100/vignette3.png", + "isMetal":false, + "launchDate":1284393600000, + "maxISO":6400, + "name":"Samsung NX 100", + "pixelDepth":14, + "pixels":14695296, + "price":499, + "resolution":[4704,3124], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 1000.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 1000.txt new file mode 100644 index 0000000..c84ee24 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 1000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7570652809909236, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5509399968123966, + "newModel":0.5000000000000002, + "portrait":0.7570652809909236, + "scenery":0.9044647245941736, + "sports":0.7515917089083104, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_1000/vignette3.png", + "isMetal":false, + "launchDate":1334764800000, + "maxISO":12800, + "name":"Samsung NX 1000", + "pixelDepth":20, + "pixels":20427820, + "price":749, + "resolution":[5530,3694], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 11.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 11.txt new file mode 100644 index 0000000..4832102 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 11.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.6104119565398675, + "newModel":0.49467166549249286, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.5797773392152289, + "travel":0.4999999999999997 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_11/vignette3.png", + "isMetal":false, + "launchDate":1293465600000, + "maxISO":3200, + "name":"Samsung NX 11", + "pixelDepth":14, + "pixels":14033152, + "price":649, + "resolution":[4592,3056], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 20.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 20.txt new file mode 100644 index 0000000..eb24a63 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 20.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7570652809909236, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5605035174275096, + "newModel":0.5000000000000002, + "portrait":0.7570652809909236, + "scenery":0.9044647245941736, + "sports":0.7515917089083104, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_20/vignette3.png", + "isMetal":true, + "launchDate":1334764800000, + "maxISO":12800, + "name":"Samsung NX 20", + "pixelDepth":20, + "pixels":20427820, + "price":719, + "resolution":[5530,3694], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 200.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 200.txt new file mode 100644 index 0000000..3664bc2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 200.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7574156331648266, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5225276166212549, + "newModel":0.5000000000000002, + "portrait":0.7574156331648266, + "scenery":0.9047003568345681, + "sports":0.9035960760058871, + "travel":0.4999999999999997 + }, + "autoFocus":35, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_200/vignette3.png", + "isMetal":true, + "launchDate":1314806400000, + "maxISO":12800, + "name":"Samsung NX 200", + "pixelDepth":20, + "pixels":20243536, + "price":899, + "resolution":[5528,3662], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 210.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 210.txt new file mode 100644 index 0000000..8721da9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 210.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7570652809909236, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5225276166212549, + "newModel":0.5000000000000002, + "portrait":0.7570652809909236, + "scenery":0.9044647245941736, + "sports":0.7515917089083104, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_210/vignette3.png", + "isMetal":true, + "launchDate":1334764800000, + "maxISO":12800, + "name":"Samsung NX 210", + "pixelDepth":20, + "pixels":20427820, + "price":899, + "resolution":[5530,3694], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 30.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 30.txt new file mode 100644 index 0000000..4147f13 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 30.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.767963968942561, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.49999999999999994, + "portrait":0.7568678042605349, + "scenery":0.7945249062106045, + "sports":0.9096998997760598, + "travel":0.4999999999999997 + }, + "autoFocus":247, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_30/vignette3.png", + "isMetal":true, + "launchDate":1388592000000, + "maxISO":25600, + "name":"Samsung NX 30", + "pixelDepth":20, + "pixels":20597844, + "price":1000, + "resolution":[5546,3714], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 300.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 300.txt new file mode 100644 index 0000000..63fe147 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX 300.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.767963968942561, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5506756756756758, + "newModel":0.5000000000000002, + "portrait":0.7568678042605349, + "scenery":0.7945249062106045, + "sports":0.9096998997760598, + "travel":0.4999999999999997 + }, + "autoFocus":105, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX_300/vignette3.png", + "isMetal":true, + "launchDate":1357142400000, + "maxISO":25600, + "name":"Samsung NX 300", + "pixelDepth":20, + "pixels":20597844, + "price":750, + "resolution":[5546,3714], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX1.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX1.txt new file mode 100644 index 0000000..c0bf032 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.789696014730465, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5356718768052593, + "portrait":0.78260150860643, + "scenery":0.8445449976008005, + "sports":0.863331869802134, + "travel":0.4999999999999997 + }, + "autoFocus":205, + "bluetooth":true, + "brand":"Samsung", + "flash":false, + "frameRate":15.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX1/vignette3.png", + "isMetal":true, + "launchDate":1410710400000, + "maxISO":51200, + "name":"Samsung NX1", + "pixelDepth":28, + "pixels":28166656, + "price":1500, + "resolution":[6496,4336], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":550 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX1100.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX1100.txt new file mode 100644 index 0000000..074835b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX1100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.7570652809909236, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7863470725831935, + "lowPrice":0.7774999999999945, + "newModel":0.49999999999999895, + "portrait":0.7570652809909236, + "scenery":0.9044647245941736, + "sports":0.7515917089083104, + "travel":0.5820220068230356 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX1100/vignette3.png", + "isMetal":false, + "launchDate":1365609600000, + "maxISO":12800, + "name":"Samsung NX1100", + "pixelDepth":20, + "pixels":20427820, + "price":600, + "resolution":[5530,3694], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":222 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX2000.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX2000.txt new file mode 100644 index 0000000..3dc37df --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX2000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7680231925477633, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7857178161195241, + "lowPrice":0.6104119565398675, + "newModel":0.5000000000000007, + "portrait":0.7569000413755361, + "scenery":0.794289630177359, + "sports":0.16952446197897722, + "travel":0.5810531450277894 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Samsung", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX2000/vignette3.png", + "isMetal":false, + "launchDate":1367337600000, + "maxISO":25600, + "name":"Samsung NX2000", + "pixelDepth":20, + "pixels":20560704, + "price":649, + "resolution":[5536,3714], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":228 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Samsung NX500.txt b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX500.txt new file mode 100644 index 0000000..aadc954 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Samsung NX500.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.789696014730465, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.7791860490003187, + "lowPrice":0.540338983050848, + "newModel":0.5811554917614258, + "portrait":0.78260150860643, + "scenery":0.8445449976008005, + "sports":0.836872067404478, + "travel":0.570277940985 + }, + "autoFocus":209, + "bluetooth":true, + "brand":"Samsung", + "flash":false, + "frameRate":9.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NX500/vignette3.png", + "isMetal":true, + "launchDate":1423065600000, + "maxISO":51200, + "name":"Samsung NX500", + "pixelDepth":28, + "pixels":28166656, + "price":800, + "resolution":[6496,4336], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":286 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A3000.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A3000.txt new file mode 100644 index 0000000..db6e497 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A3000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,16000], + "assessment":{ + "astronomy":0.757124786697767, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7885714285714326, + "newModel":0.500000000000001, + "portrait":0.7578318827615904, + "scenery":0.8088067209032789, + "sports":0.15281007824415999, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":3.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A3000/vignette3.png", + "isMetal":true, + "launchDate":1377532800000, + "maxISO":16000, + "name":"Sony A3000", + "pixelDepth":20, + "pixels":20093376, + "price":400, + "resolution":[5496,3656], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A5000.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A5000.txt new file mode 100644 index 0000000..3e4041d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A5000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,16000], + "assessment":{ + "astronomy":0.757124786697767, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7873744565469238, + "lowPrice":0.7833333333333332, + "newModel":0.5000000000000031, + "portrait":0.7578318827615904, + "scenery":0.8088067209032789, + "sports":0.15281007824415999, + "travel":0.5835785396731737 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":3.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A5000/vignette3.png", + "isMetal":false, + "launchDate":1389024000000, + "maxISO":16000, + "name":"Sony A5000", + "pixelDepth":20, + "pixels":20093376, + "price":500, + "resolution":[5496,3656], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":212 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A5100.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A5100.txt new file mode 100644 index 0000000..ba32baa --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A5100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712816624063041, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7861386577120755, + "lowPrice":0.7804838709677436, + "newModel":0.5275181400190596, + "portrait":0.7700629113951525, + "scenery":0.8294659210376442, + "sports":0.851176015876996, + "travel":0.5817022089871295 + }, + "autoFocus":179, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A5100/vignette3.png", + "isMetal":false, + "launchDate":1408291200000, + "maxISO":25600, + "name":"Sony A5100", + "pixelDepth":24, + "pixels":24240576, + "price":550, + "resolution":[6024,4024], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":224 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A6000.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A6000.txt new file mode 100644 index 0000000..e85be47 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A6000.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712816624063041, + "durableBuild":0.8000000000000005, + "event":0.4499999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5405018411683207, + "newModel":0.4999999999999988, + "portrait":0.7700629113951525, + "scenery":0.8294659210376442, + "sports":0.8708446550476395, + "travel":0.4999999999999997 + }, + "autoFocus":179, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":11.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A6000/vignette3.png", + "isMetal":true, + "launchDate":1392134400000, + "maxISO":25600, + "name":"Sony A6000", + "pixelDepth":24, + "pixels":24240576, + "price":799, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A6300.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A6300.txt new file mode 100644 index 0000000..de6a222 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A6300.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.785537094844888, + "durableBuild":0.8000000000000005, + "event":0.4499999999999999, + "lightBuild":0.5853605595441081, + "lowPrice":0.5000000000000002, + "newModel":0.7857329930118643, + "portrait":0.7700629113951525, + "scenery":0.8307183119161758, + "sports":0.8708446550476395, + "travel":0.5520921769047799 + }, + "autoFocus":425, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":11.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A6300/vignette3.png", + "isMetal":true, + "launchDate":1454428800000, + "maxISO":51200, + "name":"Sony A6300", + "pixelDepth":24, + "pixels":24240576, + "price":1000, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":361 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A6500.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A6500.txt new file mode 100644 index 0000000..3c4338f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A6500.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,51200], + "assessment":{ + "astronomy":0.785537094844888, + "durableBuild":0.8000000000000005, + "event":0.5772727272727275, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.7952429470062747, + "portrait":0.7700629113951525, + "scenery":0.8307183119161758, + "sports":0.8708446550476395, + "travel":0.4999999999999997 + }, + "autoFocus":425, + "bluetooth":true, + "brand":"Sony", + "flash":false, + "frameRate":11.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A6500/vignette3.png", + "isMetal":true, + "launchDate":1475683200000, + "maxISO":51200, + "name":"Sony A6500", + "pixelDepth":24, + "pixels":24240576, + "price":1400, + "resolution":[6024,4024], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A7 II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A7 II.txt new file mode 100644 index 0000000..c657704 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A7 II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,51200], + "assessment":{ + "astronomy":0.785537094844888, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.4055555555555558, + "newModel":0.5556135791067395, + "portrait":0.7700629113951525, + "scenery":0.8307183119161758, + "sports":0.851176015876996, + "travel":0.4999999999999997 + }, + "autoFocus":117, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A7_II/vignette3.png", + "isMetal":true, + "launchDate":1416412800000, + "maxISO":51200, + "name":"Sony A7 II", + "pixelDepth":24, + "pixels":24240576, + "price":1600, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A7.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A7.txt new file mode 100644 index 0000000..dede168 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A7.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712816624063041, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5407067040274806, + "lowPrice":0.1999999999999999, + "newModel":0.49999999999999956, + "portrait":0.7700629113951525, + "scenery":0.8294659210376442, + "sports":0.851176015876996, + "travel":0.5346221378053997 + }, + "autoFocus":117, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A7/vignette3.png", + "isMetal":true, + "launchDate":1381852800000, + "maxISO":25600, + "name":"Sony A7", + "pixelDepth":24, + "pixels":24240576, + "price":1700, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":417 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A7R II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A7R II.txt new file mode 100644 index 0000000..9741997 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A7R II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,102400], + "assessment":{ + "astronomy":0.8, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.6332034374702056, + "portrait":0.8000000000000005, + "scenery":0.8589465478841881, + "sports":0.8378640915593707, + "travel":0.4999999999999997 + }, + "autoFocus":399, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A7R_II/vignette3.png", + "isMetal":true, + "launchDate":1433865600000, + "maxISO":102400, + "name":"Sony A7R II", + "pixelDepth":42, + "pixels":42560000, + "price":3198, + "resolution":[8000,5320], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A7R III.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A7R III.txt new file mode 100644 index 0000000..3a71ee6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A7R III.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,32000], + "assessment":{ + "astronomy":0.7954545454545446, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.8000000000000005, + "portrait":0.8000000000000005, + "scenery":0.8603932729624846, + "sports":0.8378640915593707, + "travel":0.4999999999999997 + }, + "autoFocus":425, + "bluetooth":true, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A7R_III/vignette3.png", + "isMetal":true, + "launchDate":1508860800000, + "maxISO":32000, + "name":"Sony A7R III", + "pixelDepth":42, + "pixels":42560000, + "price":3200, + "resolution":[8000,5320], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A7R.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A7R.txt new file mode 100644 index 0000000..ad62ff7 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A7R.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,25600], + "assessment":{ + "astronomy":0.7930571715794911, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5460449527928192, + "lowPrice":0.1999999999999999, + "newModel":0.49999999999999956, + "portrait":0.7986281521239487, + "scenery":0.8662175586444613, + "sports":0.7972095312509098, + "travel":0.5376965929178139 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A7R/vignette3.png", + "isMetal":true, + "launchDate":1381852800000, + "maxISO":25600, + "name":"Sony A7R", + "pixelDepth":36, + "pixels":36368640, + "price":2300, + "resolution":[7392,4920], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":408 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A7S II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A7S II.txt new file mode 100644 index 0000000..f213fa8 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A7S II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,409600], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.6896551095281694, + "portrait":0.23214285714285718, + "scenery":0.6271739130434784, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":169, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A7S_II/vignette3.png", + "isMetal":true, + "launchDate":1441900800000, + "maxISO":409600, + "name":"Sony A7S II", + "pixelDepth":12, + "pixels":12121088, + "price":3000, + "resolution":[4256,2848], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony A7S.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony A7S.txt new file mode 100644 index 0000000..3ea358b --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony A7S.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,409600], + "assessment":{ + "astronomy":0.8000000000000005, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000004, + "portrait":0.23214285714285718, + "scenery":0.6271739130434784, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/A7S/vignette3.png", + "isMetal":true, + "launchDate":1396713600000, + "maxISO":409600, + "name":"Sony A7S", + "pixelDepth":12, + "pixels":12212224, + "price":2499, + "resolution":[4288,2848], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 100.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 100.txt new file mode 100644 index 0000000..b6ed7fd --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,1600], + "assessment":{ + "astronomy":0.07499457070566203, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7872221738460448, + "newModel":0.21656304589236866, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_100/vignette3.png", + "isMetal":false, + "launchDate":1149436800000, + "maxISO":1600, + "name":"Sony Alpha 100", + "pixelDepth":10, + "pixels":10119040, + "price":427, + "resolution":[3880,2608], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 200.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 200.txt new file mode 100644 index 0000000..5e9dd5f --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 200.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08158060306678926, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7063710957574427, + "newModel":0.2265904080586503, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_200/vignette3.png", + "isMetal":false, + "launchDate":1199635200000, + "maxISO":3200, + "name":"Sony Alpha 200", + "pixelDepth":10, + "pixels":10119040, + "price":611, + "resolution":[3880,2608], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 230.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 230.txt new file mode 100644 index 0000000..4e0babf --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 230.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08158060306678926, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5223287671232876, + "newModel":0.44584616997006904, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_230/vignette3.png", + "isMetal":false, + "launchDate":1242576000000, + "maxISO":3200, + "name":"Sony Alpha 230", + "pixelDepth":10, + "pixels":10119040, + "price":900, + "resolution":[3880,2608], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 290.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 290.txt new file mode 100644 index 0000000..6a3d127 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 290.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7833885932814528, + "newModel":0.480158319890666, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_290/vignette3.png", + "isMetal":false, + "launchDate":1275321600000, + "maxISO":3200, + "name":"Sony Alpha 290", + "pixelDepth":14, + "pixels":14131200, + "price":499, + "resolution":[4600,3072], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 300.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 300.txt new file mode 100644 index 0000000..c55c530 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 300.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08158060306678926, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5742148626817465, + "newModel":0.2556945110907585, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07875190169689873, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_300/vignette3.png", + "isMetal":false, + "launchDate":1201622400000, + "maxISO":3200, + "name":"Sony Alpha 300", + "pixelDepth":10, + "pixels":10119040, + "price":690, + "resolution":[3880,2608], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 330.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 330.txt new file mode 100644 index 0000000..9d7ef0a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 330.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.08158060306678926, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5438923933209653, + "newModel":0.44584616997006904, + "portrait":0.2240399921230124, + "scenery":0.2240399921230124, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_330/vignette3.png", + "isMetal":false, + "launchDate":1242576000000, + "maxISO":3200, + "name":"Sony Alpha 330", + "pixelDepth":10, + "pixels":10119040, + "price":780, + "resolution":[3880,2608], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 350.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 350.txt new file mode 100644 index 0000000..0f41047 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 350.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.2556945110907585, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_350/vignette3.png", + "isMetal":false, + "launchDate":1201622400000, + "maxISO":3200, + "name":"Sony Alpha 350", + "pixelDepth":14, + "pixels":14131200, + "price":700, + "resolution":[4600,3072], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 380.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 380.txt new file mode 100644 index 0000000..080f0e3 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 380.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5150757466706188, + "newModel":0.44584616997006904, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_380/vignette3.png", + "isMetal":false, + "launchDate":1242576000000, + "maxISO":3200, + "name":"Sony Alpha 380", + "pixelDepth":14, + "pixels":14131200, + "price":935, + "resolution":[4600,3072], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 390.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 390.txt new file mode 100644 index 0000000..0044d09 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 390.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,3200], + "assessment":{ + "astronomy":0.07751827242524914, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.6708244274809205, + "newModel":0.4807263812493066, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07755819150764996, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_390/vignette3.png", + "isMetal":false, + "launchDate":1276012800000, + "maxISO":3200, + "name":"Sony Alpha 390", + "pixelDepth":14, + "pixels":14131200, + "price":620, + "resolution":[4600,3072], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 450.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 450.txt new file mode 100644 index 0000000..052825a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 450.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5805915492957675, + "newModel":0.4690156471488247, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.08141121495327112, + "travel":0.1999999999999999 + }, + "autoFocus":9, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_450/vignette3.png", + "isMetal":false, + "launchDate":1262620800000, + "maxISO":12800, + "name":"Sony Alpha 450", + "pixelDepth":14, + "pixels":14033152, + "price":680, + "resolution":[4592,3056], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 500.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 500.txt new file mode 100644 index 0000000..038d560 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 500.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5693093341274658, + "newModel":0.45718307173781214, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_500/vignette3.png", + "isMetal":false, + "launchDate":1251302400000, + "maxISO":12800, + "name":"Sony Alpha 500", + "pixelDepth":12, + "pixels":12166656, + "price":699, + "resolution":[4272,2848], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 550.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 550.txt new file mode 100644 index 0000000..a7ecb92 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 550.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5225276166212549, + "newModel":0.45718307173781214, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_550/vignette3.png", + "isMetal":false, + "launchDate":1251302400000, + "maxISO":12800, + "name":"Sony Alpha 550", + "pixelDepth":14, + "pixels":14033152, + "price":899, + "resolution":[4592,3056], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 560.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 560.txt new file mode 100644 index 0000000..e6c8254 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 560.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.48602562819374145, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_560/vignette3.png", + "isMetal":false, + "launchDate":1282579200000, + "maxISO":12800, + "name":"Sony Alpha 560", + "pixelDepth":14, + "pixels":14033152, + "price":650, + "resolution":[4592,3056], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 580.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 580.txt new file mode 100644 index 0000000..6d3f128 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 580.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.540338983050848, + "newModel":0.48602562819374145, + "portrait":0.5, + "scenery":0.5, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_580/vignette3.png", + "isMetal":false, + "launchDate":1282579200000, + "maxISO":12800, + "name":"Sony Alpha 580", + "pixelDepth":16, + "pixels":16032768, + "price":800, + "resolution":[4912,3264], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 700.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 700.txt new file mode 100644 index 0000000..14fcdd6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 700.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.2243513616148157, + "portrait":0.23214285714285718, + "scenery":0.23214285714285718, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_700/vignette3.png", + "isMetal":false, + "launchDate":1189008000000, + "maxISO":6400, + "name":"Sony Alpha 700", + "pixelDepth":12, + "pixels":12246528, + "price":1300, + "resolution":[4288,2856], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 850.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 850.txt new file mode 100644 index 0000000..b002e86 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 850.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.7704572785696823, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.45718307173781214, + "portrait":0.7704572785696823, + "scenery":0.9133867067232389, + "sports":0.38354424209842136, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":3.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_850/vignette3.png", + "isMetal":false, + "launchDate":1251302400000, + "maxISO":6400, + "name":"Sony Alpha 850", + "pixelDepth":24, + "pixels":24611840, + "price":2000, + "resolution":[6080,4048], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 900.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 900.txt new file mode 100644 index 0000000..69c1b20 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Alpha 900.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,6400], + "assessment":{ + "astronomy":0.7704572785696823, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.3979735610767237, + "portrait":0.7704572785696823, + "scenery":0.9133867067232389, + "sports":0.45318308537722457, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Alpha_900/vignette3.png", + "isMetal":false, + "launchDate":1220889600000, + "maxISO":6400, + "name":"Sony Alpha 900", + "pixelDepth":24, + "pixels":24611840, + "price":3000, + "resolution":[6080,4048], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC RX100 III.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC RX100 III.txt new file mode 100644 index 0000000..b58b6f9 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC RX100 III.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,25600], + "assessment":{ + "astronomy":0.7687482850711789, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.781868221169668, + "lowPrice":0.540338983050848, + "newModel":0.5005642077701145, + "portrait":0.7575753910868758, + "scenery":0.7918235798115387, + "sports":0.7506715684692546, + "travel":0.5748646900582306 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC_RX100_III/vignette3.png", + "isMetal":true, + "launchDate":1400169600000, + "maxISO":25600, + "name":"Sony Cyber-shot DSC RX100 III", + "pixelDepth":20, + "pixels":20181312, + "price":800, + "resolution":[5496,3672], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":263 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1.txt new file mode 100644 index 0000000..7271b97 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712816624063041, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.522251079660429, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7700629113951525, + "scenery":0.8294659210376442, + "sports":0.765272111911738, + "travel":0.5211232696298297 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1/vignette3.png", + "isMetal":false, + "launchDate":1347379200000, + "maxISO":25600, + "name":"Sony Cyber-shot DSC-RX1", + "pixelDepth":24, + "pixels":24240576, + "price":2800, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":453 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX10 II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX10 II.txt new file mode 100644 index 0000000..5607d7a --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX10 II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[64,25600], + "assessment":{ + "astronomy":0.7687482850711789, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.4999999999999999, + "lowPrice":0.5000000000000002, + "newModel":0.6332034374702056, + "portrait":0.7575753910868758, + "scenery":0.7918235798115387, + "sports":0.9250914391481908, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":14.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10_II/vignette3.png", + "isMetal":true, + "launchDate":1433865600000, + "maxISO":25600, + "name":"Sony Cyber-shot DSC-RX10 II", + "pixelDepth":20, + "pixels":20181312, + "price":1298, + "resolution":[5496,3672], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":770 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX10.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX10.txt new file mode 100644 index 0000000..46bc769 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX10.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.7575753910868758, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000011, + "lowPrice":0.5000000000000002, + "newModel":0.49999999999999956, + "portrait":0.7575753910868758, + "scenery":0.904804349946865, + "sports":0.7506715684692546, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10/vignette3.png", + "isMetal":true, + "launchDate":1381852800000, + "maxISO":12800, + "name":"Sony Cyber-shot DSC-RX10", + "pixelDepth":20, + "pixels":20181312, + "price":1300, + "resolution":[5496,3672], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":756 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 II.txt new file mode 100644 index 0000000..7a172d4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[160,25600], + "assessment":{ + "astronomy":0.7687482850711789, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5506756756756758, + "newModel":0.49999999999999967, + "portrait":0.7575753910868758, + "scenery":0.7918235798115387, + "sports":0.7506715684692546, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_II/vignette3.png", + "isMetal":true, + "launchDate":1372262400000, + "maxISO":25600, + "name":"Sony Cyber-shot DSC-RX100 II", + "pixelDepth":20, + "pixels":20181312, + "price":750, + "resolution":[5496,3672], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 IV.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 IV.txt new file mode 100644 index 0000000..0f67fd4 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 IV.txt @@ -0,0 +1,34 @@ +{ + "ISO":[125,25600], + "assessment":{ + "astronomy":0.7687482850711789, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5122372045389215, + "newModel":0.6332034374702056, + "portrait":0.7575753910868758, + "scenery":0.7918235798115387, + "sports":0.9250914391481908, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":16.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_IV/vignette3.png", + "isMetal":true, + "launchDate":1433865600000, + "maxISO":25600, + "name":"Sony Cyber-shot DSC-RX100 IV", + "pixelDepth":20, + "pixels":20181312, + "price":948, + "resolution":[5496,3672], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 V.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 V.txt new file mode 100644 index 0000000..3c1ff33 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100 V.txt @@ -0,0 +1,34 @@ +{ + "ISO":[80,12800], + "assessment":{ + "astronomy":0.7575753910868758, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.7808321445108233, + "lowPrice":0.5000000000000002, + "newModel":0.7952429470062747, + "portrait":0.7575753910868758, + "scenery":0.904804349946865, + "sports":0.9289580592623857, + "travel":0.5731205166457228 + }, + "autoFocus":315, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":24.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_V/vignette3.png", + "isMetal":true, + "launchDate":1475683200000, + "maxISO":12800, + "name":"Sony Cyber-shot DSC-RX100 V", + "pixelDepth":20, + "pixels":20181312, + "price":1000, + "resolution":[5496,3672], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":272 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100.txt new file mode 100644 index 0000000..96e6149 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX100.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7686844615786673, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7872729469602328, + "lowPrice":0.609096385542166, + "newModel":0.5000000000000002, + "portrait":0.7574988049767019, + "scenery":0.7920187512505069, + "sports":0.7507865996247792, + "travel":0.46433253781375516 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100/vignette3.png", + "isMetal":false, + "launchDate":1338912000000, + "maxISO":25600, + "name":"Sony Cyber-shot DSC-RX100", + "pixelDepth":20, + "pixels":20210688, + "price":650, + "resolution":[5504,3672], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":213 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1R II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1R II.txt new file mode 100644 index 0000000..d49e6de --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1R II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,102400], + "assessment":{ + "astronomy":0.8, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7166083253096587, + "portrait":0.8000000000000005, + "scenery":0.8589465478841881, + "sports":0.8378640915593707, + "travel":0.4999999999999997 + }, + "autoFocus":399, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R_II/vignette3.png", + "isMetal":true, + "launchDate":1444752000000, + "maxISO":102400, + "name":"Sony Cyber-shot DSC-RX1R II", + "pixelDepth":42, + "pixels":42560000, + "price":3300, + "resolution":[8000,5320], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1R.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1R.txt new file mode 100644 index 0000000..d3906dc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cyber-shot DSC-RX1R.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712816624063041, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.49999999999999967, + "portrait":0.7700629113951525, + "scenery":0.8294659210376442, + "sports":0.765272111911738, + "travel":0.4999999999999997 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R/vignette3.png", + "isMetal":true, + "launchDate":1372262400000, + "maxISO":25600, + "name":"Sony Cyber-shot DSC-RX1R", + "pixelDepth":24, + "pixels":24240576, + "price":2800, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony Cybershot DSC-RX10 III.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony Cybershot DSC-RX10 III.txt new file mode 100644 index 0000000..e597380 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony Cybershot DSC-RX10 III.txt @@ -0,0 +1,34 @@ +{ + "ISO":[64,128000], + "assessment":{ + "astronomy":0.7921253835539216, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.1999999999999999, + "lowPrice":0.5000000000000002, + "newModel":0.7881672764471431, + "portrait":0.7575753910868758, + "scenery":0.8087352396637774, + "sports":0.9250914391481908, + "travel":0.4274213155703581 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":14.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Cybershot_DSC-RX10_III/vignette3.png", + "isMetal":true, + "launchDate":1459180800000, + "maxISO":128000, + "name":"Sony Cybershot DSC-RX10 III", + "pixelDepth":20, + "pixels":20181312, + "price":1500, + "resolution":[5496,3672], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":1051 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-3N.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-3N.txt new file mode 100644 index 0000000..c782d07 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-3N.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,16000], + "assessment":{ + "astronomy":0.7561544192841484, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7875774647887285, + "lowPrice":0.5882224371373292, + "newModel":0.49999999999999967, + "portrait":0.5, + "scenery":0.7561544192841484, + "sports":0.5, + "travel":0.5838818529536767 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-3N/vignette3.png", + "isMetal":true, + "launchDate":1361289600000, + "maxISO":16000, + "name":"Sony NEX-3N", + "pixelDepth":16, + "pixels":16144128, + "price":670, + "resolution":[4928,3276], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":210 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5N.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5N.txt new file mode 100644 index 0000000..209a595 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5N.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7811798263884996, + "lowPrice":0.529979472659706, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.5, + "travel":0.5737092990652819 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-5N/vignette3.png", + "isMetal":true, + "launchDate":1314115200000, + "maxISO":25600, + "name":"Sony NEX-5N", + "pixelDepth":16, + "pixels":16144128, + "price":860, + "resolution":[4928,3276], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":269 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5R.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5R.txt new file mode 100644 index 0000000..bd5fc54 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5R.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":99, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-5R/vignette3.png", + "isMetal":true, + "launchDate":1346169600000, + "maxISO":25600, + "name":"Sony NEX-5R", + "pixelDepth":16, + "pixels":16144128, + "price":650, + "resolution":[4928,3276], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5T.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5T.txt new file mode 100644 index 0000000..697bf39 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-5T.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.780541944127943, + "newModel":0.500000000000001, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":99, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-5T/vignette3.png", + "isMetal":true, + "launchDate":1377532800000, + "maxISO":25600, + "name":"Sony NEX-5T", + "pixelDepth":16, + "pixels":16144128, + "price":549, + "resolution":[4928,3276], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-6.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-6.txt new file mode 100644 index 0000000..9b1acfe --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-6.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.7790665157385805, + "lowPrice":0.5321526928938327, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.5700684743559113 + }, + "autoFocus":99, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-6/vignette3.png", + "isMetal":false, + "launchDate":1347379200000, + "maxISO":25600, + "name":"Sony NEX-6", + "pixelDepth":16, + "pixels":16032768, + "price":848, + "resolution":[4912,3264], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":287 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-7.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-7.txt new file mode 100644 index 0000000..67e0269 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-7.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,16000], + "assessment":{ + "astronomy":0.768033040268409, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5511827956989267, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7700629113951525, + "scenery":0.8660418380302833, + "sports":0.765272111911738, + "travel":0.5403389830508478 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-7/vignette3.png", + "isMetal":true, + "launchDate":1314115200000, + "maxISO":16000, + "name":"Sony NEX-7", + "pixelDepth":24, + "pixels":24240576, + "price":1720, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":400 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-C3.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-C3.txt new file mode 100644 index 0000000..00f52cc --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-C3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7860344827586178, + "lowPrice":0.5459308666017538, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.5, + "sports":0.08243762781186093, + "travel":0.5815415549597859 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-C3/vignette3.png", + "isMetal":true, + "launchDate":1307462400000, + "maxISO":12800, + "name":"Sony NEX-C3", + "pixelDepth":16, + "pixels":16163840, + "price":770, + "resolution":[4928,3280], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":225 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-F3.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-F3.txt new file mode 100644 index 0000000..472d091 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX-F3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,16000], + "assessment":{ + "astronomy":0.7561544192841484, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.7827748344370856, + "lowPrice":0.7774999999999945, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7561544192841484, + "sports":0.5, + "travel":0.5763623124931568 + }, + "autoFocus":25, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":6.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX-F3/vignette3.png", + "isMetal":true, + "launchDate":1337184000000, + "maxISO":16000, + "name":"Sony NEX-F3", + "pixelDepth":16, + "pixels":16144128, + "price":600, + "resolution":[4928,3276], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":255 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX3.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX3.txt new file mode 100644 index 0000000..fefee26 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX3.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7804838709677436, + "newModel":0.4779259701994772, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":5.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX3/vignette3.png", + "isMetal":false, + "launchDate":1272643200000, + "maxISO":12800, + "name":"Sony NEX3", + "pixelDepth":14, + "pixels":14155776, + "price":550, + "resolution":[4608,3072], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony NEX5.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX5.txt new file mode 100644 index 0000000..b057889 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony NEX5.txt @@ -0,0 +1,34 @@ +{ + "ISO":[200,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.609096385542166, + "newModel":0.4779259701994772, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.07402016607354676, + "travel":0.1999999999999999 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/NEX5/vignette3.png", + "isMetal":false, + "launchDate":1272643200000, + "maxISO":12800, + "name":"Sony NEX5", + "pixelDepth":14, + "pixels":14155776, + "price":650, + "resolution":[4608,3072], + "touchScreen":false, + "video":false, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 33.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 33.txt new file mode 100644 index 0000000..a7619a5 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 33.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7775606210893378, + "newModel":0.48602562819374145, + "portrait":0.24083820454836385, + "scenery":0.24083820454836385, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_33/vignette3.png", + "isMetal":false, + "launchDate":1282579200000, + "maxISO":12800, + "name":"Sony SLT Alpha 33", + "pixelDepth":14, + "pixels":14033152, + "price":599, + "resolution":[4592,3056], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 35.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 35.txt new file mode 100644 index 0000000..da03947 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 35.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.5, + "sports":0.08243762781186093, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":2.5, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_35/vignette3.png", + "isMetal":false, + "launchDate":1307462400000, + "maxISO":12800, + "name":"Sony SLT Alpha 35", + "pixelDepth":16, + "pixels":16032768, + "price":600, + "resolution":[4912,3264], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 37.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 37.txt new file mode 100644 index 0000000..e11494c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 37.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,16000], + "assessment":{ + "astronomy":0.7561544192841484, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5246382425030723, + "lowPrice":0.7833333333333332, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7561544192841484, + "sports":0.5, + "travel":0.5231221657963078 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":7.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_37/vignette3.png", + "isMetal":false, + "launchDate":1337184000000, + "maxISO":16000, + "name":"Sony SLT Alpha 37", + "pixelDepth":16, + "pixels":16144128, + "price":500, + "resolution":[4928,3276], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":448 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 55.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 55.txt new file mode 100644 index 0000000..6f5df04 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 55.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.1999999999999999, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.5506756756756758, + "newModel":0.48602562819374145, + "portrait":0.5, + "scenery":0.5, + "sports":0.5, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_55/vignette3.png", + "isMetal":false, + "launchDate":1282579200000, + "maxISO":12800, + "name":"Sony SLT Alpha 55", + "pixelDepth":16, + "pixels":16032768, + "price":750, + "resolution":[4912,3264], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 57.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 57.txt new file mode 100644 index 0000000..b000ba6 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 57.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7733320673206766, + "durableBuild":0.1999999999999999, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5688059701492514, + "newModel":0.5000000000000002, + "portrait":0.5, + "scenery":0.7733320673206766, + "sports":0.933, + "travel":0.4999999999999997 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_57/vignette3.png", + "isMetal":false, + "launchDate":1331481600000, + "maxISO":25600, + "name":"Sony SLT Alpha 57", + "pixelDepth":16, + "pixels":16144128, + "price":700, + "resolution":[4928,3276], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":618 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 58.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 58.txt new file mode 100644 index 0000000..c7f1feb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 58.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,16000], + "assessment":{ + "astronomy":0.757124786697767, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5039297217996406, + "lowPrice":0.5549758418656195, + "newModel":0.49999999999999967, + "portrait":0.7578318827615904, + "scenery":0.8088067209032789, + "sports":0.7502320157775385, + "travel":0.5039235324633394 + }, + "autoFocus":15, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_58/vignette3.png", + "isMetal":true, + "launchDate":1361289600000, + "maxISO":16000, + "name":"Sony SLT Alpha 58", + "pixelDepth":20, + "pixels":20093376, + "price":735, + "resolution":[5496,3656], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":492 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 65.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 65.txt new file mode 100644 index 0000000..046bf28 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 65.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,16000], + "assessment":{ + "astronomy":0.768033040268409, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000002, + "portrait":0.7700629113951525, + "scenery":0.8229472058469092, + "sports":0.851176015876996, + "travel":0.6000000000000001 + }, + "autoFocus":19, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":12.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_65/vignette3.png", + "isMetal":true, + "launchDate":1314115200000, + "maxISO":16000, + "name":"Sony SLT Alpha 65", + "pixelDepth":24, + "pixels":24240576, + "price":1290, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":622 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 68.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 68.txt new file mode 100644 index 0000000..42a8264 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 68.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712555350839917, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7774999999999945, + "newModel":0.7376997222824313, + "portrait":0.7700162146413259, + "scenery":0.8293164489858248, + "sports":0.8515184574716526, + "travel":0.4999999999999997 + }, + "autoFocus":79, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":8.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_68/vignette3.png", + "isMetal":true, + "launchDate":1446652800000, + "maxISO":25600, + "name":"Sony SLT Alpha 68", + "pixelDepth":24, + "pixels":24192384, + "price":600, + "resolution":[6024,4016], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 77 II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 77 II.txt new file mode 100644 index 0000000..c88971c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 77 II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712816624063041, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.4999999999999995, + "portrait":0.7700629113951525, + "scenery":0.8294659210376442, + "sports":0.878889417328949, + "travel":0.4999999999999997 + }, + "autoFocus":79, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77_II/vignette3.png", + "isMetal":true, + "launchDate":1398873600000, + "maxISO":25600, + "name":"Sony SLT Alpha 77 II", + "pixelDepth":24, + "pixels":24240576, + "price":1200, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":647 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 77.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 77.txt new file mode 100644 index 0000000..e3eb03d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 77.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,16000], + "assessment":{ + "astronomy":0.7681301672554949, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.5000000000000002, + "newModel":0.5000000000000002, + "portrait":0.7701601610274225, + "scenery":0.8231407538735952, + "sports":0.8505086917392912, + "travel":0.6000000000000001 + }, + "autoFocus":19, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":12.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77/vignette3.png", + "isMetal":true, + "launchDate":1314115200000, + "maxISO":16000, + "name":"Sony SLT Alpha 77", + "pixelDepth":24, + "pixels":24337152, + "price":1399, + "resolution":[6048,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":653 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 99 II.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 99 II.txt new file mode 100644 index 0000000..5e079cb --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 99 II.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7942026687014537, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7947135702942201, + "portrait":0.8000000000000005, + "scenery":0.8673690429506864, + "sports":0.8589465478841881, + "travel":0.4999999999999997 + }, + "autoFocus":399, + "bluetooth":true, + "brand":"Sony", + "flash":false, + "frameRate":12.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99_II/vignette3.png", + "isMetal":true, + "launchDate":1474214400000, + "maxISO":25600, + "name":"Sony SLT Alpha 99 II", + "pixelDepth":42, + "pixels":42560000, + "price":3200, + "resolution":[8000,5320], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 99.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 99.txt new file mode 100644 index 0000000..b47221c --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony SLT Alpha 99.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,25600], + "assessment":{ + "astronomy":0.7712816624063041, + "durableBuild":0.8000000000000005, + "event":0.4999999999999997, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.5000000000000002, + "portrait":0.7700629113951525, + "scenery":0.8141852827277354, + "sports":0.43986235922907646, + "travel":0.6000000000000001 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"Sony", + "flash":false, + "frameRate":10.0, + "gps":true, + "image":"//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99/vignette3.png", + "isMetal":true, + "launchDate":1347379200000, + "maxISO":25600, + "name":"Sony SLT Alpha 99", + "pixelDepth":24, + "pixels":24240576, + "price":2800, + "resolution":[6024,4024], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/Sony a9.txt b/scr/模糊专家系统/fuzzy-expert/result/Sony a9.txt new file mode 100644 index 0000000..de3062d --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/Sony a9.txt @@ -0,0 +1,34 @@ +{ + "ISO":[50,204800], + "assessment":{ + "astronomy":0.785537094844888, + "durableBuild":0.8000000000000005, + "event":0.6000000000000001, + "lightBuild":0.5000000000000002, + "lowPrice":0.1999999999999999, + "newModel":0.7994803580749491, + "portrait":0.7700629113951525, + "scenery":0.8307183119161758, + "sports":0.878889417328949, + "travel":0.4999999999999997 + }, + "autoFocus":693, + "bluetooth":true, + "brand":"Sony", + "flash":false, + "frameRate":20.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/a9/vignette3.png", + "isMetal":true, + "launchDate":1492531200000, + "maxISO":204800, + "name":"Sony a9", + "pixelDepth":24, + "pixels":24240576, + "price":4500, + "resolution":[6024,4024], + "touchScreen":true, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/result/YUNEEC Breeze 4K.txt b/scr/模糊专家系统/fuzzy-expert/result/YUNEEC Breeze 4K.txt new file mode 100644 index 0000000..00396a2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/result/YUNEEC Breeze 4K.txt @@ -0,0 +1,34 @@ +{ + "ISO":[100,12800], + "assessment":{ + "astronomy":0.5, + "durableBuild":0.8000000000000005, + "event":0.1999999999999999, + "lightBuild":0.5000000000000002, + "lowPrice":0.7895362318840548, + "newModel":0.7940626724806624, + "portrait":0.23642481756120523, + "scenery":0.23642481756120523, + "sports":0.07402016607354676, + "travel":0.4999999999999997 + }, + "autoFocus":6, + "bluetooth":false, + "brand":"YUNEEC", + "flash":false, + "frameRate":4.0, + "gps":false, + "image":"//cdn.dxomark.com/dakdata/xml/Breeze_4K/vignette3.png", + "isMetal":true, + "launchDate":1472486400000, + "maxISO":12800, + "name":"YUNEEC Breeze 4K", + "pixelDepth":13, + "pixels":12979200, + "price":380, + "resolution":[4160,3120], + "touchScreen":false, + "video":true, + "waterproof":false, + "weight":500 +} \ No newline at end of file diff --git a/scr/模糊专家系统/fuzzy-expert/src/ai/fuzzy/Main.java b/scr/模糊专家系统/fuzzy-expert/src/ai/fuzzy/Main.java new file mode 100644 index 0000000..7409ed2 --- /dev/null +++ b/scr/模糊专家系统/fuzzy-expert/src/ai/fuzzy/Main.java @@ -0,0 +1,118 @@ +package ai.fuzzy; + +import com.alibaba.fastjson.JSON; +import net.sourceforge.jFuzzyLogic.FIS; +import net.sourceforge.jFuzzyLogic.JFuzzyLogic; +import net.sourceforge.jFuzzyLogic.plot.JFuzzyChart; + +import java.io.*; +import java.nio.file.Paths; + +class CameraData { + public CameraAssessment assessment; + public String name; + public String image; + public String brand; + public Integer price; + public Integer pixelDepth; + public Integer pixels; + public Integer maxISO; + public Integer weight; + public Integer autoFocus; + public Long launchDate; + public Float frameRate; + public Integer[] resolution; + public Integer[] ISO; + public boolean touchScreen; + public boolean video; + public boolean flash; + public boolean waterproof; + public boolean bluetooth; + public boolean gps; + public boolean isMetal; +} + +class CameraAssessment { + public double travel; + public double event; + public double sports; + public double scenery; + public double portrait; + public double astronomy; + public double newModel; + public double durableBuild; + public double lightBuild; + public double lowPrice; +} + +public class Main { + public static void main(String[] args) throws IOException { + File rootFolder = new File("input"); + for (final File fileEntry : rootFolder.listFiles()) { + if (fileEntry.isFile()) { + CameraData camera = JSON.parseObject(readFileContents(fileEntry), CameraData.class); + camera.assessment = assess(camera); + writeFile(fileEntry, JSON.toJSONString(camera, true)); + } + } + } + + private static void writeFile(File fileEntry, String jsonString) throws FileNotFoundException { + PrintWriter out = new PrintWriter(Paths.get("result", fileEntry.getName()).toString()); + out.print(jsonString); + out.close(); + } + + private static String readFileContents(File fileEntry) throws IOException { + BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(fileEntry.getAbsolutePath()), "UTF8")); + StringBuilder sb = new StringBuilder(); + String line = in.readLine(); + while (line != null) { + sb.append(line); + sb.append(System.lineSeparator()); + line = in.readLine(); + } + return sb.toString(); + } + + static CameraAssessment assess(CameraData cameraData) { + CameraAssessment cameraAssessment = new CameraAssessment(); + String fileName = "fcl/camera.fcl"; + FIS fis = FIS.load(fileName, true); + + + // Set inputs + fis.setVariable("price", cameraData.price); + fis.setVariable("pixelDepth", cameraData.pixelDepth); + fis.setVariable("pixels", cameraData.pixels); + fis.setVariable("maxISO", cameraData.maxISO); + fis.setVariable("weight", cameraData.weight); + fis.setVariable("autoFocus", cameraData.autoFocus); + fis.setVariable("launchDate", cameraData.launchDate); + fis.setVariable("frameRate", cameraData.frameRate); + fis.setVariable("touchScreen", cameraData.touchScreen ? 1 : 0); + fis.setVariable("video", cameraData.video ? 1 : 0); + fis.setVariable("flash", cameraData.flash ? 1 : 0); + fis.setVariable("waterproof", cameraData.waterproof ? 1 : 0); + fis.setVariable("bluetooth", cameraData.bluetooth ? 1 : 0); + fis.setVariable("gps", cameraData.gps ? 1 : 0); + fis.setVariable("isMetal", cameraData.isMetal ? 1 : 0); + + // Evaluate + fis.evaluate(); + + // Save results to cameraAssessment + cameraAssessment.travel = fis.getVariable("travel").defuzzify(); + cameraAssessment.event = fis.getVariable("event").defuzzify(); + cameraAssessment.sports = fis.getVariable("sports").defuzzify(); + cameraAssessment.scenery = fis.getVariable("scenery").defuzzify(); + cameraAssessment.portrait = fis.getVariable("portrait").defuzzify(); + cameraAssessment.astronomy = fis.getVariable("astronomy").defuzzify(); + cameraAssessment.newModel = fis.getVariable("newModel").defuzzify(); + cameraAssessment.durableBuild = fis.getVariable("durableBuild").defuzzify(); + cameraAssessment.lightBuild = fis.getVariable("lightBuild").defuzzify(); + cameraAssessment.lowPrice = fis.getVariable("lowPrice").defuzzify(); + + return cameraAssessment; + } +} diff --git a/scr/模糊专家系统/imgs/fuzzify.gif b/scr/模糊专家系统/imgs/fuzzify.gif new file mode 100644 index 0000000..af41778 Binary files /dev/null and b/scr/模糊专家系统/imgs/fuzzify.gif differ diff --git a/scr/模糊专家系统/imgs/scrape.gif b/scr/模糊专家系统/imgs/scrape.gif new file mode 100644 index 0000000..4192cfa Binary files /dev/null and b/scr/模糊专家系统/imgs/scrape.gif differ diff --git a/scr/模糊专家系统/imgs/ui.png b/scr/模糊专家系统/imgs/ui.png new file mode 100644 index 0000000..6058172 Binary files /dev/null and b/scr/模糊专家系统/imgs/ui.png differ diff --git a/scr/模糊专家系统/imgs/ui2.png b/scr/模糊专家系统/imgs/ui2.png new file mode 100644 index 0000000..f16650b Binary files /dev/null and b/scr/模糊专家系统/imgs/ui2.png differ diff --git a/scr/模糊专家系统/scrape/.gitignore b/scr/模糊专家系统/scrape/.gitignore new file mode 100644 index 0000000..2d2b47d --- /dev/null +++ b/scr/模糊专家系统/scrape/.gitignore @@ -0,0 +1,2 @@ +.idea +node_modules \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/README.md b/scr/模糊专家系统/scrape/README.md new file mode 100644 index 0000000..4fc7941 --- /dev/null +++ b/scr/模糊专家系统/scrape/README.md @@ -0,0 +1,2 @@ +1. scrape +2. clean \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/clean.js b/scr/模糊专家系统/scrape/clean.js new file mode 100644 index 0000000..83df5f8 --- /dev/null +++ b/scr/模糊专家系统/scrape/clean.js @@ -0,0 +1,71 @@ +let fs = require("fs"); +let path = require("path"); + +function parseNumberFunctionFactory(keyMatcher, valueMatcher = /(\d+\.?\d*)/im, + returnValueDecider = match => +match[1]) { + return (data) => { + let key = Object.keys(data).filter(_ => keyMatcher.test(_.trim()))[0]; + if (!key) return null; + let match = data[key].toString().match(valueMatcher); + if (match) + return returnValueDecider(match); + else + return null; + }; +} + +let parseResolution = parseNumberFunctionFactory(/^resolution$/im, /(\d+)\s*x\s*(\d+)/im, match => [+match[1], +match[2]]); +let parseFrameRate = parseNumberFunctionFactory(/frame rate/im); +let parseWeight = parseNumberFunctionFactory(/weight/im); +let parseAutoFocus = parseNumberFunctionFactory(/number of autofocus points/im); +let parseISO = parseNumberFunctionFactory(/ISO latitude/im, /(\d+)\s*-\s*(\d+)/im, match => [+match[1], +match[2]]); +let parseLaunchDate = parseNumberFunctionFactory(/launchDateGraph/im, /(\d+)-(\d+)-(\d+)/im, match => new Date(match[1], match[2] - 1, match[3])); +let parseTouchScreen = parseNumberFunctionFactory(/Touch screen/im, /yes/im, match => !!match); +let parseVideo = parseNumberFunctionFactory(/^Video$/m, /yes/im, match => !!match); +let parseFlash = parseNumberFunctionFactory(/^flash$/im, /yes/im, match => !!match); +let parseWaterproof = parseNumberFunctionFactory(/^waterproof$/im, /yes/im, match => !!match); +let parseBluetooth = parseNumberFunctionFactory(/^Bluetooth$/im, /yes/im, match => !!match); +let parseGps = parseNumberFunctionFactory(/^GPS$/im, /yes/im, match => !!match); +let parseIsMetal = parseNumberFunctionFactory(/^camera material$/im, /metal/im, match => !!match); + +let files = fs.readdirSync("./scraped"); +files.forEach(file => { + let data = JSON.parse(fs.readFileSync(path.join('./scraped', file), { encoding: "utf8" })); + let resolution = parseResolution(data); + //机身材质质量 + let frameRate = parseFrameRate(data) || 4; + let weight = parseWeight(data) || 500; + let autoFocus = parseAutoFocus(data) || 6; + let iso = parseISO(data); + let launchDate = parseLaunchDate(data); + let touchScreen = parseTouchScreen(data); + let video = parseVideo(data); + let flash = parseFlash(data); + let waterproof = parseWaterproof(data); + let bluetooth = parseBluetooth(data); + let gps = parseGps(data); + let isMetal = parseIsMetal(data); + let cleanedData = { + name: data.name, + image: data.image, + brand: data.brand, + price: data.price, + pixelDepth: data.pixelDepth, + pixels: resolution ? (resolution[0] * resolution[1]) : 0, + ISO: iso, + maxISO: iso ? iso[1] : 0, + launchDate: +launchDate, + touchScreen, + video, + flash, + waterproof, + bluetooth, + gps, + isMetal, + frameRate, + resolution, + weight, + autoFocus, + }; + fs.writeFileSync(path.join('./cleaned', file), JSON.stringify(cleanedData, null, 4), { encoding: "utf8" }); +}); diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS-1D X Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS-1D X Mark II.txt new file mode 100644 index 0000000..1c736ac --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS-1D X Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS-1D X Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/_EOS-1D_X_Mark_II/vignette3.png", + "brand": "Canon", + "price": 6000, + "pixelDepth": 20.2, + "pixels": 20170320, + "ISO": [ + 100, + 409600 + ], + "maxISO": 409600, + "launchDate": 1454342400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 16, + "resolution": [ + 5496, + 3670 + ], + "weight": 1340, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1000D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1000D.txt new file mode 100644 index 0000000..976ba88 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1000D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1000D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1000D/vignette3.png", + "brand": "Canon", + "price": 540, + "pixelDepth": 10.1, + "pixels": 10163412, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1213027200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3906, + 2602 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 100D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 100D.txt new file mode 100644 index 0000000..d4a79db --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 100D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 100D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_100D/vignette3.png", + "brand": "Canon", + "price": 650, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1363795200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 5208, + 3476 + ], + "weight": 370, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 10D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 10D.txt new file mode 100644 index 0000000..f62b023 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 10D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 10D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_10D/vignette3.png", + "brand": "Canon", + "price": 347, + "pixelDepth": 6.3, + "pixels": 6518336, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1046275200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3152, + 2068 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1100D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1100D.txt new file mode 100644 index 0000000..0a8d27a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1100D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1100D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1100D/vignette3.png", + "brand": "Canon", + "price": 599, + "pixelDepth": 12.2, + "pixels": 12507648, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1297008000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4352, + 2874 + ], + "weight": 495, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1200D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1200D.txt new file mode 100644 index 0000000..3370cb7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1200D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1200D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1200D/vignette3.png", + "brand": "Canon", + "price": 500, + "pixelDepth": 18, + "pixels": 18024930, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1392134400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 5202, + 3465 + ], + "weight": 435, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark II N.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark II N.txt new file mode 100644 index 0000000..a138429 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark II N.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark II N", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II_N/vignette3.png", + "brand": "Canon", + "price": 5986, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1124640000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8.5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark II.txt new file mode 100644 index 0000000..86fb1f8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 1700, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1075305600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8.5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark III.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark III.txt new file mode 100644 index 0000000..b9883aa --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark III.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark III", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_III/vignette3.png", + "brand": "Canon", + "price": 4050, + "pixelDepth": 10.1, + "pixels": 10446048, + "ISO": [ + 50, + 6400 + ], + "maxISO": 6400, + "launchDate": 1172073600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 3984, + 2622 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark IV.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark IV.txt new file mode 100644 index 0000000..fd404db --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1D Mark IV.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1D Mark IV", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_IV/vignette3.png", + "brand": "Canon", + "price": 5840, + "pixelDepth": 16.1, + "pixels": 15980544, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1255968000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4896, + 3264 + ], + "weight": 1180, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds Mark II.txt new file mode 100644 index 0000000..e5518fe --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Ds Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_II/vignette3.png", + "brand": "Canon", + "price": 6950, + "pixelDepth": 16.6, + "pixels": 17101584, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1095696000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 5108, + 3348 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds Mark III.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds Mark III.txt new file mode 100644 index 0000000..491ea42 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds Mark III.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Ds Mark III", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_III/vignette3.png", + "brand": "Canon", + "price": 7100, + "pixelDepth": 21.1, + "pixels": 21557088, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1187539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 5712, + 3774 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds.txt new file mode 100644 index 0000000..ffdc8c2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Ds.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Ds", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds/vignette3.png", + "brand": "Canon", + "price": 2700, + "pixelDepth": 11, + "pixels": 11094876, + "ISO": [ + 100, + 1233 + ], + "maxISO": 1233, + "launchDate": 1032796800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4082, + 2718 + ], + "weight": 1265, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Dx.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Dx.txt new file mode 100644 index 0000000..d53c47a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 1Dx.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 1Dx", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Dx/vignette3.png", + "brand": "Canon", + "price": 6800, + "pixelDepth": 18.1, + "pixels": 18378666, + "ISO": [ + 50, + 204800 + ], + "maxISO": 204800, + "launchDate": 1318867200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5202, + 3533 + ], + "weight": 500, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 200D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 200D.txt new file mode 100644 index 0000000..2bfa713 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 200D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 200D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_200D/vignette3.png", + "brand": "Canon", + "price": 550, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1498665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6288, + 4056 + ], + "weight": 453, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 20D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 20D.txt new file mode 100644 index 0000000..880240c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 20D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 20D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_20D/vignette3.png", + "brand": "Canon", + "price": 700, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1092844800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 300D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 300D.txt new file mode 100644 index 0000000..3bce211 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 300D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 300D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_300D/vignette3.png", + "brand": "Canon", + "price": 324, + "pixelDepth": 6.3, + "pixels": 6518336, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1061308800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3152, + 2068 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 30D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 30D.txt new file mode 100644 index 0000000..ac27acd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 30D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 30D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_30D/vignette3.png", + "brand": "Canon", + "price": 738, + "pixelDepth": 8.2, + "pixels": 8486560, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1140451200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3596, + 2360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 350D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 350D.txt new file mode 100644 index 0000000..ffcd4d1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 350D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 350D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_350D/vignette3.png", + "brand": "Canon", + "price": 560, + "pixelDepth": 8, + "pixels": 8185248, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1108569600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.8, + "resolution": [ + 3516, + 2328 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 400D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 400D.txt new file mode 100644 index 0000000..c0666da --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 400D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 400D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_400D/vignette3.png", + "brand": "Canon", + "price": 520, + "pixelDepth": 10.1, + "pixels": 10351656, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1156348800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3948, + 2622 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 40D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 40D.txt new file mode 100644 index 0000000..3e6c4d0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 40D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 40D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_40D/vignette3.png", + "brand": "Canon", + "price": 899, + "pixelDepth": 10.1, + "pixels": 10341168, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1187539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6.5, + "resolution": [ + 3944, + 2622 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 450D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 450D.txt new file mode 100644 index 0000000..75e6bc7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 450D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 450D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_450D/vignette3.png", + "brand": "Canon", + "price": 570, + "pixelDepth": 12.2, + "pixels": 12401312, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1201104000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 4312, + 2876 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 500D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 500D.txt new file mode 100644 index 0000000..6fe215f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 500D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 500D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_500D/vignette3.png", + "brand": "Canon", + "price": 1040, + "pixelDepth": 15.1, + "pixels": 15039810, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1237910400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.4, + "resolution": [ + 4770, + 3153 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 50D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 50D.txt new file mode 100644 index 0000000..f47d6fd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 50D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 50D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_50D/vignette3.png", + "brand": "Canon", + "price": 1300, + "pixelDepth": 15.1, + "pixels": 15154290, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1219680000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4770, + 3177 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 550D pre production.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 550D pre production.txt new file mode 100644 index 0000000..ee6ebdd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 550D pre production.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 550D pre production", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D_pre_production/vignette3.png", + "brand": "Canon", + "price": 900, + "pixelDepth": 18, + "pixels": 18789504, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1265558400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.7, + "resolution": [ + 5344, + 3516 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 550D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 550D.txt new file mode 100644 index 0000000..1545484 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 550D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 550D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D/vignette3.png", + "brand": "Canon", + "price": 1000, + "pixelDepth": 18, + "pixels": 17915904, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1267113600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.7, + "resolution": [ + 5184, + 3456 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark II.txt new file mode 100644 index 0000000..8524103 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 2199, + "pixelDepth": 21, + "pixels": 21144402, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1221580800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.9, + "resolution": [ + 5634, + 3753 + ], + "weight": 810, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark III.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark III.txt new file mode 100644 index 0000000..a9d4539 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark III.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D Mark III", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_III/vignette3.png", + "brand": "Canon", + "price": 3499, + "pixelDepth": 22.3, + "pixels": 23384000, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1330617600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 5920, + 3950 + ], + "weight": 910, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark IV.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark IV.txt new file mode 100644 index 0000000..bc30570 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D Mark IV.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D Mark IV", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_IV/vignette3.png", + "brand": "Canon", + "price": 3500, + "pixelDepth": 30.4, + "pixels": 31262720, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1472054400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 6880, + 4544 + ], + "weight": 800, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D.txt new file mode 100644 index 0000000..1c0c8f8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D/vignette3.png", + "brand": "Canon", + "price": 2000, + "pixelDepth": 12.7, + "pixels": 13222104, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1124640000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4476, + 2954 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 5DS R.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5DS R.txt new file mode 100644 index 0000000..483d104 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5DS R.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5DS R", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS_R/vignette3.png", + "brand": "Canon", + "price": 3900, + "pixelDepth": 50.6, + "pixels": 51158016, + "ISO": [ + 50, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8736, + 5856 + ], + "weight": 845, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 5DS.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5DS.txt new file mode 100644 index 0000000..1607025 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 5DS.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 5DS", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS/vignette3.png", + "brand": "Canon", + "price": 3700, + "pixelDepth": 50.6, + "pixels": 51158016, + "ISO": [ + 50, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8736, + 5856 + ], + "weight": 845, + "autoFocus": 61 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 600D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 600D.txt new file mode 100644 index 0000000..1bc2e15 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 600D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 600D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_600D/vignette3.png", + "brand": "Canon", + "price": 850, + "pixelDepth": 18, + "pixels": 18789504, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1297008000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.7, + "resolution": [ + 5344, + 3516 + ], + "weight": 515, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 60D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 60D.txt new file mode 100644 index 0000000..99f74b1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 60D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 60D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_60D/vignette3.png", + "brand": "Canon", + "price": 1199, + "pixelDepth": 18, + "pixels": 17992016, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282752000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.3, + "resolution": [ + 5194, + 3464 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 650D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 650D.txt new file mode 100644 index 0000000..86b6f8d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 650D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 650D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_650D/vignette3.png", + "brand": "Canon", + "price": 899, + "pixelDepth": 18, + "pixels": 18627840, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1339084800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 5280, + 3528 + ], + "weight": 575, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 6D Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 6D Mark II.txt new file mode 100644 index 0000000..7f07fac --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 6D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 6D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 2000, + "pixelDepth": 26.2, + "pixels": 26966016, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1498665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": true, + "frameRate": 6.5, + "resolution": [ + 6384, + 4224 + ], + "weight": 685, + "autoFocus": 45 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 6D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 6D.txt new file mode 100644 index 0000000..4e32134 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 6D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 6D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D/vignette3.png", + "brand": "Canon", + "price": 2099, + "pixelDepth": 20.2, + "pixels": 20646144, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4.5, + "resolution": [ + 5568, + 3708 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 700D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 700D.txt new file mode 100644 index 0000000..e67821f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 700D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 700D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_700D/vignette3.png", + "brand": "Canon", + "price": 750, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1363795200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 5208, + 3476 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 70D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 70D.txt new file mode 100644 index 0000000..c52a45c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 70D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 70D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_70D/vignette3.png", + "brand": "Canon", + "price": 1199, + "pixelDepth": 20.2, + "pixels": 20170320, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1372694400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 5496, + 3670 + ], + "weight": 500, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 750D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 750D.txt new file mode 100644 index 0000000..3c5f5b6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 750D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 750D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_750D/vignette3.png", + "brand": "Canon", + "price": 750, + "pixelDepth": 24.2, + "pixels": 24228528, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4022 + ], + "weight": 510, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 760D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 760D.txt new file mode 100644 index 0000000..4429c5e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 760D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 760D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_760D/vignette3.png", + "brand": "Canon", + "price": 850, + "pixelDepth": 24.2, + "pixels": 24228528, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1423152000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4022 + ], + "weight": 510, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 7D Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 7D Mark II.txt new file mode 100644 index 0000000..309a2da --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 7D Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 7D Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D_Mark_II/vignette3.png", + "brand": "Canon", + "price": 1800, + "pixelDepth": 20.2, + "pixels": 20170320, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1410710400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3670 + ], + "weight": 500, + "autoFocus": 65 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 7D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 7D.txt new file mode 100644 index 0000000..47e4168 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 7D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 7D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D/vignette3.png", + "brand": "Canon", + "price": 1974, + "pixelDepth": 18, + "pixels": 18840400, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1251734400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5360, + 3515 + ], + "weight": 820, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS 80D.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS 80D.txt new file mode 100644 index 0000000..fb72216 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS 80D.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS 80D", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_80D/vignette3.png", + "brand": "Canon", + "price": 1200, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1455724800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 6288, + 4056 + ], + "weight": 650, + "autoFocus": 45 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS M.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS M.txt new file mode 100644 index 0000000..165e42b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS M.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M/vignette3.png", + "brand": "Canon", + "price": 799, + "pixelDepth": 18, + "pixels": 18627840, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1342972800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.3, + "resolution": [ + 5280, + 3528 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS M10.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS M10.txt new file mode 100644 index 0000000..6549ff1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS M10.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M10", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M10/vignette3.png", + "brand": "Canon", + "price": 600, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1444665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.6, + "resolution": [ + 5208, + 3476 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS M100.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS M100.txt new file mode 100644 index 0000000..8c31f38 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS M100.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M100", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M100/vignette3.png", + "brand": "Canon", + "price": 600, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1503936000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 6.1, + "resolution": [ + 6288, + 4056 + ], + "weight": 266, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS M2.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS M2.txt new file mode 100644 index 0000000..8f96799 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS M2.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M2", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M2/vignette3.png", + "brand": "Canon", + "price": 650, + "pixelDepth": 18, + "pixels": 18103008, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1386000000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.6, + "resolution": [ + 5208, + 3476 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS M3.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS M3.txt new file mode 100644 index 0000000..d4e0b3d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS M3.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M3", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M3/vignette3.png", + "brand": "Canon", + "price": 870, + "pixelDepth": 24.2, + "pixels": 24228528, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1423152000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.2, + "resolution": [ + 6024, + 4022 + ], + "weight": 320.5, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS M5.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS M5.txt new file mode 100644 index 0000000..3232b41 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS M5.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M5", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M5/vignette3.png", + "brand": "Canon", + "price": 980, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1473868800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 6288, + 4056 + ], + "weight": 380, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon EOS M6.txt b/scr/模糊专家系统/scrape/cleaned/Canon EOS M6.txt new file mode 100644 index 0000000..8cbf727 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon EOS M6.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon EOS M6", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M6/vignette3.png", + "brand": "Canon", + "price": 780, + "pixelDepth": 24.2, + "pixels": 25504128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1487088000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 6288, + 4056 + ], + "weight": 343, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G1 X Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G1 X Mark II.txt new file mode 100644 index 0000000..607bd08 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G1 X Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G1 X Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1_X_Mark_II/vignette3.png", + "brand": "Canon", + "price": 800, + "pixelDepth": 13.1, + "pixels": 14740832, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1392134400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.2, + "resolution": [ + 4432, + 3326 + ], + "weight": 516, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G12.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G12.txt new file mode 100644 index 0000000..ce306e3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G12.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G12", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G12/vignette3.png", + "brand": "Canon", + "price": 499, + "pixelDepth": 10, + "pixels": 9980928, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1284393600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3648, + 2736 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G16.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G16.txt new file mode 100644 index 0000000..c75c871 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G16.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G16", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G16/vignette3.png", + "brand": "Canon", + "price": 549, + "pixelDepth": 12.1, + "pixels": 12835904, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1377100800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12.2, + "resolution": [ + 4192, + 3062 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G1X.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G1X.txt new file mode 100644 index 0000000..76d0a73 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G1X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G1X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1X/vignette3.png", + "brand": "Canon", + "price": 799, + "pixelDepth": 14.3, + "pixels": 15133536, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1326038400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.5, + "resolution": [ + 4496, + 3366 + ], + "weight": 492, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G3 X.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G3 X.txt new file mode 100644 index 0000000..38ac6e5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G3 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G3 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G3_X/vignette3.png", + "brand": "Canon", + "price": 1000, + "pixelDepth": 20.2, + "pixels": 20444448, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1434556800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.9, + "resolution": [ + 5536, + 3693 + ], + "weight": 690, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G5 X.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G5 X.txt new file mode 100644 index 0000000..cfb3dfd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G5 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G5 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G5_X/vignette3.png", + "brand": "Canon", + "price": 800, + "pixelDepth": 20, + "pixels": 20444448, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1444665600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.9, + "resolution": [ + 5536, + 3693 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G7 X.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G7 X.txt new file mode 100644 index 0000000..a9f8c47 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G7 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G7 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G7_X/vignette3.png", + "brand": "Canon", + "price": 700, + "pixelDepth": 20.2, + "pixels": 20894720, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1410710400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6.5, + "resolution": [ + 5632, + 3710 + ], + "weight": 279, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G9 X Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G9 X Mark II.txt new file mode 100644 index 0000000..dbb0cf0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G9 X Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G9 X Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X_Mark_II/vignette3.png", + "brand": "Canon", + "price": 530, + "pixelDepth": 20.1, + "pixels": 20444448, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1483459200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 8.2, + "resolution": [ + 5536, + 3693 + ], + "weight": 182, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G9 X.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G9 X.txt new file mode 100644 index 0000000..239d80f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot G9 X.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot G9 X", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X/vignette3.png", + "brand": "Canon", + "price": 500, + "pixelDepth": 20.2, + "pixels": 20444448, + "ISO": [ + 125, + 12800 + ], + "maxISO": 12800, + "launchDate": 1444752000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 5536, + 3693 + ], + "weight": 500, + "autoFocus": 31 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S100.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S100.txt new file mode 100644 index 0000000..8048302 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S100.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S100", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S100/vignette3.png", + "brand": "Canon", + "price": 429, + "pixelDepth": 12.1, + "pixels": 12995840, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1316016000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4160, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S120.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S120.txt new file mode 100644 index 0000000..7f6f08d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S120.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S120", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S120/vignette3.png", + "brand": "Canon", + "price": 449, + "pixelDepth": 12.1, + "pixels": 12835904, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1377100800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.6, + "resolution": [ + 4192, + 3062 + ], + "weight": 193, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S90.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S90.txt new file mode 100644 index 0000000..21a39c1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S90.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S90", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S90/vignette3.png", + "brand": "Canon", + "price": 420, + "pixelDepth": 10, + "pixels": 10423296, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1250611200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.9, + "resolution": [ + 3744, + 2784 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S95.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S95.txt new file mode 100644 index 0000000..05080e4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot S95.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot S95", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S95/vignette3.png", + "brand": "Canon", + "price": 400, + "pixelDepth": 10, + "pixels": 10423296, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1282147200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.98, + "resolution": [ + 3744, + 2784 + ], + "weight": 170, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot SX50 HS.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot SX50 HS.txt new file mode 100644 index 0000000..9261c60 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot SX50 HS.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot SX50 HS", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX50_HS/vignette3.png", + "brand": "Canon", + "price": 480, + "pixelDepth": 12.1, + "pixels": 12786912, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4176, + 3062 + ], + "weight": 551, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon PowerShot SX60 HS.txt b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot SX60 HS.txt new file mode 100644 index 0000000..a947d75 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon PowerShot SX60 HS.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon PowerShot SX60 HS", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX60_HS/vignette3.png", + "brand": "Canon", + "price": 550, + "pixelDepth": 16.1, + "pixels": 16764288, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1410710400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6.4, + "resolution": [ + 4768, + 3516 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon Powershot G10.txt b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G10.txt new file mode 100644 index 0000000..66a4e2b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G10.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G10", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G10/vignette3.png", + "brand": "Canon", + "price": 467, + "pixelDepth": 14, + "pixels": 14999040, + "ISO": [ + 80, + 1600 + ], + "maxISO": 1600, + "launchDate": 1221580800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.3, + "resolution": [ + 4480, + 3348 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon Powershot G11.txt b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G11.txt new file mode 100644 index 0000000..c990c31 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G11.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G11", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G11/vignette3.png", + "brand": "Canon", + "price": 523, + "pixelDepth": 10, + "pixels": 10423296, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1250611200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.1, + "resolution": [ + 3744, + 2784 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon Powershot G15.txt b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G15.txt new file mode 100644 index 0000000..c17a017 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G15.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G15", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G15/vignette3.png", + "brand": "Canon", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12338304, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4048, + 3048 + ], + "weight": 310, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon Powershot G9.txt b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G9.txt new file mode 100644 index 0000000..107fd28 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon Powershot G9.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot G9", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G9/vignette3.png", + "brand": "Canon", + "price": 606, + "pixelDepth": 12.1, + "pixels": 12192768, + "ISO": [ + 80, + 1600 + ], + "maxISO": 1600, + "launchDate": 1187539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.5, + "resolution": [ + 4032, + 3024 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Canon Powershot S110.txt b/scr/模糊专家系统/scrape/cleaned/Canon Powershot S110.txt new file mode 100644 index 0000000..c0d1bd4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Canon Powershot S110.txt @@ -0,0 +1,28 @@ +{ + "name": "Canon Powershot S110", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_S110/vignette3.png", + "brand": "Canon", + "price": 499, + "pixelDepth": 12.1, + "pixels": 12338304, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4048, + 3048 + ], + "weight": 198, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/DJI Phantom 4.txt b/scr/模糊专家系统/scrape/cleaned/DJI Phantom 4.txt new file mode 100644 index 0000000..e581ebe --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/DJI Phantom 4.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Phantom 4", + "image": "//cdn.dxomark.com/dakdata/xml/Phantom_4/vignette3.png", + "brand": "DJI", + "price": 1200, + "pixelDepth": 12.4, + "pixels": 12000000, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1457971200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/DJI Phantom4 Pro.txt b/scr/模糊专家系统/scrape/cleaned/DJI Phantom4 Pro.txt new file mode 100644 index 0000000..eb5a0d2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/DJI Phantom4 Pro.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Phantom4 Pro", + "image": "//cdn.dxomark.com/dakdata/xml/Phantom4_Pro/vignette3.png", + "brand": "DJI", + "price": 1500, + "pixelDepth": 20, + "pixels": 19961856, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1479139200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5472, + 3648 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X4S.txt b/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X4S.txt new file mode 100644 index 0000000..b218572 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X4S.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Zenmuse X4S", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X4S/vignette3.png", + "brand": "DJI", + "price": 599, + "pixelDepth": 20, + "pixels": 19961856, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1479139200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 5472, + 3648 + ], + "weight": 253, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X5S.txt b/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X5S.txt new file mode 100644 index 0000000..fa533c0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X5S.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Zenmuse X5S", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X5S/vignette3.png", + "brand": "DJI", + "price": 1400, + "pixelDepth": 20.8, + "pixels": 20887680, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1479139200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 5280, + 3956 + ], + "weight": 461, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X7.txt b/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X7.txt new file mode 100644 index 0000000..b878c42 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/DJI Zenmuse X7.txt @@ -0,0 +1,28 @@ +{ + "name": "DJI Zenmuse X7", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X7/vignette3.png", + "brand": "DJI", + "price": 2700, + "pixelDepth": 24, + "pixels": 24112128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1507651200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 6016, + 4008 + ], + "weight": 449, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F550EXR.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F550EXR.txt new file mode 100644 index 0000000..6bb9229 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F550EXR.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix F550EXR", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F550EXR/vignette3.png", + "brand": "Fujifilm", + "price": 450, + "pixelDepth": 16, + "pixels": 16076305, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1294156800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4613, + 3485 + ], + "weight": 195, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F600EXR.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F600EXR.txt new file mode 100644 index 0000000..b565f5b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F600EXR.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix F600EXR", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F600EXR/vignette3.png", + "brand": "Fujifilm", + "price": 500, + "pixelDepth": 16, + "pixels": 8037568, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1312992000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 3262, + 2464 + ], + "weight": 500, + "autoFocus": 256 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F800EXR.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F800EXR.txt new file mode 100644 index 0000000..d19e0cc --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix F800EXR.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix F800EXR", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F800EXR/vignette3.png", + "brand": "Fujifilm", + "price": 349, + "pixelDepth": 16, + "pixels": 16076305, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1343145600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4613, + 3485 + ], + "weight": 208, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S100fs.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S100fs.txt new file mode 100644 index 0000000..ee9f24c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S100fs.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix S100fs", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S100fs/vignette3.png", + "brand": "Fujifilm", + "price": 713, + "pixelDepth": 11.1, + "pixels": 11059200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201104000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3840, + 2880 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S3 Pro.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S3 Pro.txt new file mode 100644 index 0000000..7b7e723 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S3 Pro.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix S3 Pro", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S3_Pro/vignette3.png", + "brand": "Fujifilm", + "price": 1190, + "pixelDepth": 6.1, + "pixels": 6096384, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1075910400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3024, + 2016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S5 Pro.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S5 Pro.txt new file mode 100644 index 0000000..ba2c8f2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix S5 Pro.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix S5 Pro", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S5_Pro/vignette3.png", + "brand": "Fujifilm", + "price": 1200, + "pixelDepth": 6.1, + "pixels": 6096384, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1159113600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3024, + 2016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X S1.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X S1.txt new file mode 100644 index 0000000..ea60adc --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X S1.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix X S1", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X_S1/vignette3.png", + "brand": "Fujifilm", + "price": 699, + "pixelDepth": 12, + "pixels": 12000000, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1322064000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 4000, + 3000 + ], + "weight": 880, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X10.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X10.txt new file mode 100644 index 0000000..0eb806e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X10.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix X10", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X10/vignette3.png", + "brand": "Fujifilm", + "price": 600, + "pixelDepth": 12, + "pixels": 12212896, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1314806400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4028, + 3032 + ], + "weight": 330, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X100.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X100.txt new file mode 100644 index 0000000..18bf3a8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm FinePix X100.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm FinePix X100", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X100/vignette3.png", + "brand": "Fujifilm", + "price": 999, + "pixelDepth": 12.3, + "pixels": 12369700, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1284825600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4310, + 2870 + ], + "weight": 405, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Fujifilm XF1.txt b/scr/模糊专家系统/scrape/cleaned/Fujifilm XF1.txt new file mode 100644 index 0000000..1800546 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Fujifilm XF1.txt @@ -0,0 +1,28 @@ +{ + "name": "Fujifilm XF1", + "image": "//cdn.dxomark.com/dakdata/xml/XF1/vignette3.png", + "brand": "Fujifilm", + "price": 499, + "pixelDepth": 12, + "pixels": 12000000, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/GoPro HERO5 Black.txt b/scr/模糊专家系统/scrape/cleaned/GoPro HERO5 Black.txt new file mode 100644 index 0000000..1b527f5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/GoPro HERO5 Black.txt @@ -0,0 +1,28 @@ +{ + "name": "GoPro HERO5 Black", + "image": "//cdn.dxomark.com/dakdata/xml/HERO5_Black/vignette3.png", + "brand": "GoPro", + "price": 400, + "pixelDepth": 12, + "pixels": 12000000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 30, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Hasselblad H3DII 39.txt b/scr/模糊专家系统/scrape/cleaned/Hasselblad H3DII 39.txt new file mode 100644 index 0000000..e7632d7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Hasselblad H3DII 39.txt @@ -0,0 +1,28 @@ +{ + "name": "Hasselblad H3DII 39", + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_39/vignette3.png", + "brand": "Hasselblad", + "price": 22000, + "pixelDepth": 39, + "pixels": 39458112, + "ISO": [ + 50, + 400 + ], + "maxISO": 400, + "launchDate": 1196006400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.7, + "resolution": [ + 7248, + 5444 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Hasselblad H3DII 50.txt b/scr/模糊专家系统/scrape/cleaned/Hasselblad H3DII 50.txt new file mode 100644 index 0000000..6ee75c5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Hasselblad H3DII 50.txt @@ -0,0 +1,28 @@ +{ + "name": "Hasselblad H3DII 50", + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_50/vignette3.png", + "brand": "Hasselblad", + "price": 20000, + "pixelDepth": 50, + "pixels": 51679680, + "ISO": [ + 50, + 400 + ], + "maxISO": 400, + "launchDate": 1196006400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.9, + "resolution": [ + 8282, + 6240 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Hasselblad X1D-50c.txt b/scr/模糊专家系统/scrape/cleaned/Hasselblad X1D-50c.txt new file mode 100644 index 0000000..5c8a7d9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Hasselblad X1D-50c.txt @@ -0,0 +1,28 @@ +{ + "name": "Hasselblad X1D-50c", + "image": "//cdn.dxomark.com/dakdata/xml/X1D-50c/vignette3.png", + "brand": "Hasselblad", + "price": 8995, + "pixelDepth": 50, + "pixels": 51402240, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1466524800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 2.3, + "resolution": [ + 8280, + 6208 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Konica Minolta DYNAX 5D.txt b/scr/模糊专家系统/scrape/cleaned/Konica Minolta DYNAX 5D.txt new file mode 100644 index 0000000..349065e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Konica Minolta DYNAX 5D.txt @@ -0,0 +1,28 @@ +{ + "name": "Konica Minolta DYNAX 5D", + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_5D/vignette3.png", + "brand": "Konica Minolta", + "price": 500, + "pixelDepth": 6, + "pixels": 6056128, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1121356800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3016, + 2008 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Konica Minolta DYNAX 7D.txt b/scr/模糊专家系统/scrape/cleaned/Konica Minolta DYNAX 7D.txt new file mode 100644 index 0000000..62427d5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Konica Minolta DYNAX 7D.txt @@ -0,0 +1,28 @@ +{ + "name": "Konica Minolta DYNAX 7D", + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_7D/vignette3.png", + "brand": "Konica Minolta", + "price": 569, + "pixelDepth": 6, + "pixels": 6056128, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1095177600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3016, + 2008 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leaf Aptus75S.txt b/scr/模糊专家系统/scrape/cleaned/Leaf Aptus75S.txt new file mode 100644 index 0000000..2fbbd96 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leaf Aptus75S.txt @@ -0,0 +1,28 @@ +{ + "name": "Leaf Aptus75S", + "image": "//cdn.dxomark.com/dakdata/xml/Aptus75S/vignette3.png", + "brand": "Leaf", + "price": 32995, + "pixelDepth": 33, + "pixels": 33276672, + "ISO": [ + 50, + 800 + ], + "maxISO": 800, + "launchDate": 1159200000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.83, + "resolution": [ + 6666, + 4992 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica C.txt b/scr/模糊专家系统/scrape/cleaned/Leica C.txt new file mode 100644 index 0000000..d113250 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica C.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica C", + "image": "//cdn.dxomark.com/dakdata/xml/C/vignette3.png", + "brand": "Leica", + "price": 795, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1378742400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica M Typ 240.txt b/scr/模糊专家系统/scrape/cleaned/Leica M Typ 240.txt new file mode 100644 index 0000000..6936b0d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica M Typ 240.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M Typ 240", + "image": "//cdn.dxomark.com/dakdata/xml/M_Typ_240/vignette3.png", + "brand": "Leica", + "price": 6950, + "pixelDepth": 24, + "pixels": 23936000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1347811200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 5984, + 4000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica M-E Typ 220.txt b/scr/模糊专家系统/scrape/cleaned/Leica M-E Typ 220.txt new file mode 100644 index 0000000..ffa2506 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica M-E Typ 220.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M-E Typ 220", + "image": "//cdn.dxomark.com/dakdata/xml/M-E_Typ_220/vignette3.png", + "brand": "Leica", + "price": 5450, + "pixelDepth": 18, + "pixels": 18109952, + "ISO": [ + 80, + 2500 + ], + "maxISO": 2500, + "launchDate": 1347811200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 2, + "resolution": [ + 5216, + 3472 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica M10.txt b/scr/模糊专家系统/scrape/cleaned/Leica M10.txt new file mode 100644 index 0000000..15d446e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica M10.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M10", + "image": "//cdn.dxomark.com/dakdata/xml/M10/vignette3.png", + "brand": "Leica", + "price": 6895, + "pixelDepth": 24, + "pixels": 23888128, + "ISO": [ + 100, + 50000 + ], + "maxISO": 50000, + "launchDate": 1484668800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 5984, + 3992 + ], + "weight": 590, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica M8.txt b/scr/模糊专家系统/scrape/cleaned/Leica M8.txt new file mode 100644 index 0000000..885ed29 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica M8.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M8", + "image": "//cdn.dxomark.com/dakdata/xml/M8/vignette3.png", + "brand": "Leica", + "price": 5495, + "pixelDepth": 10.3, + "pixels": 10340960, + "ISO": [ + 160, + 2500 + ], + "maxISO": 2500, + "launchDate": 1158163200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3920, + 2638 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica M9 P.txt b/scr/模糊专家系统/scrape/cleaned/Leica M9 P.txt new file mode 100644 index 0000000..2cccea6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica M9 P.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M9 P", + "image": "//cdn.dxomark.com/dakdata/xml/M9_P/vignette3.png", + "brand": "Leica", + "price": 6950, + "pixelDepth": 18, + "pixels": 18109952, + "ISO": [ + 80, + 2500 + ], + "maxISO": 2500, + "launchDate": 1295539200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 2, + "resolution": [ + 5216, + 3472 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica M9.txt b/scr/模糊专家系统/scrape/cleaned/Leica M9.txt new file mode 100644 index 0000000..f31a6f0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica M9.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica M9", + "image": "//cdn.dxomark.com/dakdata/xml/M9/vignette3.png", + "brand": "Leica", + "price": 5500, + "pixelDepth": 18, + "pixels": 18109952, + "ISO": [ + 80, + 2500 + ], + "maxISO": 2500, + "launchDate": 1252425600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 5216, + 3472 + ], + "weight": 545, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica Q Typ 116.txt b/scr/模糊专家系统/scrape/cleaned/Leica Q Typ 116.txt new file mode 100644 index 0000000..1b6052d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica Q Typ 116.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica Q Typ 116", + "image": "//cdn.dxomark.com/dakdata/xml/Q_Typ_116/vignette3.png", + "brand": "Leica", + "price": 4250, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 50000 + ], + "maxISO": 50000, + "launchDate": 1433865600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 6016, + 4016 + ], + "weight": 590, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica S.txt b/scr/模糊专家系统/scrape/cleaned/Leica S.txt new file mode 100644 index 0000000..3bae339 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica S.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica S", + "image": "//cdn.dxomark.com/dakdata/xml/S/vignette3.png", + "brand": "Leica", + "price": 21950, + "pixelDepth": 37.5, + "pixels": 37600000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1347811200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 1.5, + "resolution": [ + 7520, + 5000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica SL (Typ 601).txt b/scr/模糊专家系统/scrape/cleaned/Leica SL (Typ 601).txt new file mode 100644 index 0000000..f54d2e9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica SL (Typ 601).txt @@ -0,0 +1,28 @@ +{ + "name": "Leica SL (Typ 601)", + "image": "//cdn.dxomark.com/dakdata/xml/SL_(Typ_601)/vignette3.png", + "brand": "Leica", + "price": 7450, + "pixelDepth": 24, + "pixels": 24160256, + "ISO": [ + 50, + 50000 + ], + "maxISO": 50000, + "launchDate": 1445270400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica T.txt b/scr/模糊专家系统/scrape/cleaned/Leica T.txt new file mode 100644 index 0000000..eb92171 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica T.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica T", + "image": "//cdn.dxomark.com/dakdata/xml/T/vignette3.png", + "brand": "Leica", + "price": 1850, + "pixelDepth": 16, + "pixels": 16206432, + "ISO": [ + 100, + 12500 + ], + "maxISO": 12500, + "launchDate": 1398268800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4944, + 3278 + ], + "weight": 339, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Leica X Vario.txt b/scr/模糊专家系统/scrape/cleaned/Leica X Vario.txt new file mode 100644 index 0000000..f2d2ea5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Leica X Vario.txt @@ -0,0 +1,28 @@ +{ + "name": "Leica X Vario", + "image": "//cdn.dxomark.com/dakdata/xml/X_Vario/vignette3.png", + "brand": "Leica", + "price": 2850, + "pixelDepth": 16.2, + "pixels": 16186656, + "ISO": [ + 100, + 12500 + ], + "maxISO": 12500, + "launchDate": 1370880000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4944, + 3274 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Mamiya ZD Back.txt b/scr/模糊专家系统/scrape/cleaned/Mamiya ZD Back.txt new file mode 100644 index 0000000..7d716b3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Mamiya ZD Back.txt @@ -0,0 +1,28 @@ +{ + "name": "Mamiya ZD Back", + "image": "//cdn.dxomark.com/dakdata/xml/ZD_Back/vignette3.png", + "brand": "Mamiya", + "price": 6999, + "pixelDepth": 21.5, + "pixels": 21461504, + "ISO": [ + 50, + 400 + ], + "maxISO": 400, + "launchDate": 1220198400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 5344, + 4016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 AW1.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 AW1.txt new file mode 100644 index 0000000..a8335f1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 AW1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 AW1", + "image": "//cdn.dxomark.com/dakdata/xml/1_AW1/vignette3.png", + "brand": "Nikon", + "price": 800, + "pixelDepth": 14.2, + "pixels": 14238840, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1379520000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4620, + 3082 + ], + "weight": 313, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 J1.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J1.txt new file mode 100644 index 0000000..4b13cc5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J1", + "image": "//cdn.dxomark.com/dakdata/xml/1_J1/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 10.1, + "pixels": 10173824, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1316534400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 13, + "resolution": [ + 3904, + 2606 + ], + "weight": 234, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 J2.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J2.txt new file mode 100644 index 0000000..e72f718 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J2.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J2", + "image": "//cdn.dxomark.com/dakdata/xml/1_J2/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 10.1, + "pixels": 10166016, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1344441600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3904, + 2604 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 J3.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J3.txt new file mode 100644 index 0000000..65c350b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J3.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J3", + "image": "//cdn.dxomark.com/dakdata/xml/1_J3/vignette3.png", + "brand": "Nikon", + "price": 600, + "pixelDepth": 14.2, + "pixels": 14238840, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1357574400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 4620, + 3082 + ], + "weight": 500, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 J4.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J4.txt new file mode 100644 index 0000000..ea0235a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J4.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J4", + "image": "//cdn.dxomark.com/dakdata/xml/1_J4/vignette3.png", + "brand": "Nikon", + "price": 599, + "pixelDepth": 18.4, + "pixels": 18378496, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1397059200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 5248, + 3502 + ], + "weight": 500, + "autoFocus": 171 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 J5.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J5.txt new file mode 100644 index 0000000..3c5fe7c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 J5.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 J5", + "image": "//cdn.dxomark.com/dakdata/xml/1_J5/vignette3.png", + "brand": "Nikon", + "price": 500, + "pixelDepth": 20.8, + "pixels": 20794816, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1427904000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 5584, + 3724 + ], + "weight": 500, + "autoFocus": 171 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 S1.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 S1.txt new file mode 100644 index 0000000..4accf53 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 S1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 S1", + "image": "//cdn.dxomark.com/dakdata/xml/1_S1/vignette3.png", + "brand": "Nikon", + "price": 499, + "pixelDepth": 10.1, + "pixels": 10272696, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1357574400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 3948, + 2602 + ], + "weight": 500, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 V1.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 V1.txt new file mode 100644 index 0000000..0e56b74 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 V1.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 V1", + "image": "//cdn.dxomark.com/dakdata/xml/1_V1/vignette3.png", + "brand": "Nikon", + "price": 1000, + "pixelDepth": 10.1, + "pixels": 10173824, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1316534400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 34, + "resolution": [ + 3904, + 2606 + ], + "weight": 293, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 V2.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 V2.txt new file mode 100644 index 0000000..b15064c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 V2.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 V2", + "image": "//cdn.dxomark.com/dakdata/xml/1_V2/vignette3.png", + "brand": "Nikon", + "price": 899, + "pixelDepth": 14.2, + "pixels": 14238840, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1351008000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 15, + "resolution": [ + 4620, + 3082 + ], + "weight": 278, + "autoFocus": 135 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon 1 V3.txt b/scr/模糊专家系统/scrape/cleaned/Nikon 1 V3.txt new file mode 100644 index 0000000..93608a2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon 1 V3.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon 1 V3", + "image": "//cdn.dxomark.com/dakdata/xml/1_V3/vignette3.png", + "brand": "Nikon", + "price": 999, + "pixelDepth": 18.4, + "pixels": 18378496, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1394640000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 30, + "resolution": [ + 5248, + 3502 + ], + "weight": 324, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix A.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix A.txt new file mode 100644 index 0000000..2eea828 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix A.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix A", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_A/vignette3.png", + "brand": "Nikon", + "price": 1100, + "pixelDepth": 16.2, + "pixels": 16373760, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1362326400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4992, + 3280 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P330.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P330.txt new file mode 100644 index 0000000..f2838b7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P330.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P330", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P330/vignette3.png", + "brand": "Nikon", + "price": 380, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1362326400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4032, + 3024 + ], + "weight": 200, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P340.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P340.txt new file mode 100644 index 0000000..0755f09 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P340.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P340", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P340/vignette3.png", + "brand": "Nikon", + "price": 380, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1391616000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4032, + 3024 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P6000.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P6000.txt new file mode 100644 index 0000000..47d80a8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P6000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P6000", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P6000/vignette3.png", + "brand": "Nikon", + "price": 439, + "pixelDepth": 13.5, + "pixels": 13457760, + "ISO": [ + 64, + 6400 + ], + "maxISO": 6400, + "launchDate": 1218038400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4240, + 3174 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7000.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7000.txt new file mode 100644 index 0000000..04becc7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7000", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7000/vignette3.png", + "brand": "Nikon", + "price": 500, + "pixelDepth": 10.1, + "pixels": 10046688, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1283875200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.3, + "resolution": [ + 3664, + 2742 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7100.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7100.txt new file mode 100644 index 0000000..311fd8b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7100", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7100/vignette3.png", + "brand": "Nikon", + "price": 715, + "pixelDepth": 10.1, + "pixels": 10054016, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.3, + "resolution": [ + 3664, + 2744 + ], + "weight": 395, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7700.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7700.txt new file mode 100644 index 0000000..fc406a2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7700.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7700", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7700/vignette3.png", + "brand": "Nikon", + "price": 499, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1345564800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 4032, + 3024 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7800.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7800.txt new file mode 100644 index 0000000..dd737fe --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Coolpix P7800.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Coolpix P7800", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7800/vignette3.png", + "brand": "Nikon", + "price": 550, + "pixelDepth": 12.2, + "pixels": 12192768, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1378310400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4032, + 3024 + ], + "weight": 300, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D200.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D200.txt new file mode 100644 index 0000000..b04676f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D200", + "image": "//cdn.dxomark.com/dakdata/xml/D200/vignette3.png", + "brand": "Nikon", + "price": 1000, + "pixelDepth": 10, + "pixels": 10212864, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1130774400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3904, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D2H.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D2H.txt new file mode 100644 index 0000000..a74219a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D2H.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D2H", + "image": "//cdn.dxomark.com/dakdata/xml/D2H/vignette3.png", + "brand": "Nikon", + "price": 900, + "pixelDepth": 4, + "pixels": 4113408, + "ISO": [ + 200, + 6400 + ], + "maxISO": 6400, + "launchDate": 1058803200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 2496, + 1648 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D2X.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D2X.txt new file mode 100644 index 0000000..dca261c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D2X.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D2X", + "image": "//cdn.dxomark.com/dakdata/xml/D2X/vignette3.png", + "brand": "Nikon", + "price": 2000, + "pixelDepth": 12.2, + "pixels": 12389760, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1095264000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4320, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D2Xs.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D2Xs.txt new file mode 100644 index 0000000..533e808 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D2Xs.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D2Xs", + "image": "//cdn.dxomark.com/dakdata/xml/D2Xs/vignette3.png", + "brand": "Nikon", + "price": 4250, + "pixelDepth": 12.2, + "pixels": 12212224, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1149091200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4288, + 2848 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3.txt new file mode 100644 index 0000000..02d739a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3", + "image": "//cdn.dxomark.com/dakdata/xml/D3/vignette3.png", + "brand": "Nikon", + "price": 4300, + "pixelDepth": 12.1, + "pixels": 12195072, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1187798400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 9, + "resolution": [ + 4288, + 2844 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D300.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D300.txt new file mode 100644 index 0000000..aecadc1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D300.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D300", + "image": "//cdn.dxomark.com/dakdata/xml/D300/vignette3.png", + "brand": "Nikon", + "price": 1540, + "pixelDepth": 12.3, + "pixels": 12481536, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1187798400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 4352, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3000.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3000.txt new file mode 100644 index 0000000..032d687 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3000", + "image": "//cdn.dxomark.com/dakdata/xml/D3000/vignette3.png", + "brand": "Nikon", + "price": 730, + "pixelDepth": 12.3, + "pixels": 12361080, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1239638400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4310, + 2868 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D300s.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D300s.txt new file mode 100644 index 0000000..73b9cf2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D300s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D300s", + "image": "//cdn.dxomark.com/dakdata/xml/D300s/vignette3.png", + "brand": "Nikon", + "price": 1815, + "pixelDepth": 12.3, + "pixels": 12481536, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1248883200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4352, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3100.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3100.txt new file mode 100644 index 0000000..0955396 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3100", + "image": "//cdn.dxomark.com/dakdata/xml/D3100/vignette3.png", + "brand": "Nikon", + "price": 699, + "pixelDepth": 14.8, + "pixels": 14408448, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1285862400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4672, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3200.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3200.txt new file mode 100644 index 0000000..6a6b420 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3200", + "image": "//cdn.dxomark.com/dakdata/xml/D3200/vignette3.png", + "brand": "Nikon", + "price": 699, + "pixelDepth": 24.2, + "pixels": 24392960, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 6080, + 4012 + ], + "weight": 455, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3300.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3300.txt new file mode 100644 index 0000000..b1889a8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3300.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3300", + "image": "//cdn.dxomark.com/dakdata/xml/D3300/vignette3.png", + "brand": "Nikon", + "price": 650, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1389024000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3400.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3400.txt new file mode 100644 index 0000000..dc2e6d5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3400.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3400", + "image": "//cdn.dxomark.com/dakdata/xml/D3400/vignette3.png", + "brand": "Nikon", + "price": 650, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1471363200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3X.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3X.txt new file mode 100644 index 0000000..ea4ef39 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3X.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3X", + "image": "//cdn.dxomark.com/dakdata/xml/D3X/vignette3.png", + "brand": "Nikon", + "price": 9172, + "pixelDepth": 24.5, + "pixels": 24587520, + "ISO": [ + 50, + 6400 + ], + "maxISO": 6400, + "launchDate": 1228060800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6080, + 4044 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D3s.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D3s.txt new file mode 100644 index 0000000..3708290 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D3s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D3s", + "image": "//cdn.dxomark.com/dakdata/xml/D3s/vignette3.png", + "brand": "Nikon", + "price": 5510, + "pixelDepth": 12.1, + "pixels": 12195072, + "ISO": [ + 100, + 102400 + ], + "maxISO": 102400, + "launchDate": 1255449600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 4288, + 2844 + ], + "weight": 1240, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D4.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D4.txt new file mode 100644 index 0000000..b05a2dc --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D4.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D4", + "image": "//cdn.dxomark.com/dakdata/xml/D4/vignette3.png", + "brand": "Nikon", + "price": 5999, + "pixelDepth": 16.2, + "pixels": 16433664, + "ISO": [ + 50, + 204800 + ], + "maxISO": 204800, + "launchDate": 1325779200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 11, + "resolution": [ + 4992, + 3292 + ], + "weight": 1340, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D40.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D40.txt new file mode 100644 index 0000000..1b785e9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D40.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D40", + "image": "//cdn.dxomark.com/dakdata/xml/D40/vignette3.png", + "brand": "Nikon", + "price": 400, + "pixelDepth": 6, + "pixels": 6122560, + "ISO": [ + 200, + 3200 + ], + "maxISO": 3200, + "launchDate": 1163606400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D40X.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D40X.txt new file mode 100644 index 0000000..2847bdf --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D40X.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D40X", + "image": "//cdn.dxomark.com/dakdata/xml/D40X/vignette3.png", + "brand": "Nikon", + "price": 998, + "pixelDepth": 10, + "pixels": 10212864, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1173110400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3904, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D4s.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D4s.txt new file mode 100644 index 0000000..d4d8a4d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D4s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D4s", + "image": "//cdn.dxomark.com/dakdata/xml/D4s/vignette3.png", + "brand": "Nikon", + "price": 6500, + "pixelDepth": 16.2, + "pixels": 16229568, + "ISO": [ + 50, + 409600 + ], + "maxISO": 409600, + "launchDate": 1393257600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 11, + "resolution": [ + 4936, + 3288 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D5.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D5.txt new file mode 100644 index 0000000..6cb4e64 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D5.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5", + "image": "//cdn.dxomark.com/dakdata/xml/D5/vignette3.png", + "brand": "Nikon", + "price": 6500, + "pixelDepth": 20.8, + "pixels": 20817152, + "ISO": [ + 50, + 3280000 + ], + "maxISO": 3280000, + "launchDate": 1452009600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5584, + 3728 + ], + "weight": 1225, + "autoFocus": 153 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D50.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D50.txt new file mode 100644 index 0000000..2dc1dfe --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D50.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D50", + "image": "//cdn.dxomark.com/dakdata/xml/D50/vignette3.png", + "brand": "Nikon", + "price": 1000, + "pixelDepth": 6, + "pixels": 6122560, + "ISO": [ + 200, + 1600 + ], + "maxISO": 1600, + "launchDate": 1113926400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D500.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D500.txt new file mode 100644 index 0000000..7015124 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D500.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D500", + "image": "//cdn.dxomark.com/dakdata/xml/D500/vignette3.png", + "brand": "Nikon", + "price": 2000, + "pixelDepth": 20.9, + "pixels": 20873072, + "ISO": [ + 50, + 1640000 + ], + "maxISO": 1640000, + "launchDate": 1452009600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5599, + 3728 + ], + "weight": 670, + "autoFocus": 153 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D5000.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D5000.txt new file mode 100644 index 0000000..e199277 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D5000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5000", + "image": "//cdn.dxomark.com/dakdata/xml/D5000/vignette3.png", + "brand": "Nikon", + "price": 730, + "pixelDepth": 12.3, + "pixels": 12361080, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1239638400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4310, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D5100.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D5100.txt new file mode 100644 index 0000000..3783270 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D5100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5100", + "image": "//cdn.dxomark.com/dakdata/xml/D5100/vignette3.png", + "brand": "Nikon", + "price": 799, + "pixelDepth": 16.2, + "pixels": 16373760, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1301932800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4992, + 3280 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D5200.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D5200.txt new file mode 100644 index 0000000..265bb3d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D5200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5200", + "image": "//cdn.dxomark.com/dakdata/xml/D5200/vignette3.png", + "brand": "Nikon", + "price": 897, + "pixelDepth": 24.1, + "pixels": 24264720, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1352131200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6036, + 4020 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D5300.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D5300.txt new file mode 100644 index 0000000..47ef277 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D5300.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5300", + "image": "//cdn.dxomark.com/dakdata/xml/D5300/vignette3.png", + "brand": "Nikon", + "price": 800, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381939200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D5500.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D5500.txt new file mode 100644 index 0000000..96e843d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D5500.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5500", + "image": "//cdn.dxomark.com/dakdata/xml/D5500/vignette3.png", + "brand": "Nikon", + "price": 900, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1420473600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D5600.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D5600.txt new file mode 100644 index 0000000..d655edd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D5600.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D5600", + "image": "//cdn.dxomark.com/dakdata/xml/D5600/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1478707200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6016, + 4016 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D60.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D60.txt new file mode 100644 index 0000000..db5bc1f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D60.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D60", + "image": "//cdn.dxomark.com/dakdata/xml/D60/vignette3.png", + "brand": "Nikon", + "price": 470, + "pixelDepth": 10.2, + "pixels": 10212864, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201536000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3904, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D600.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D600.txt new file mode 100644 index 0000000..ec83c40 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D600.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D600", + "image": "//cdn.dxomark.com/dakdata/xml/D600/vignette3.png", + "brand": "Nikon", + "price": 2100, + "pixelDepth": 24.3, + "pixels": 24490240, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347465600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.5, + "resolution": [ + 6080, + 4028 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D610.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D610.txt new file mode 100644 index 0000000..f9a0389 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D610.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D610", + "image": "//cdn.dxomark.com/dakdata/xml/D610/vignette3.png", + "brand": "Nikon", + "price": 1999, + "pixelDepth": 24, + "pixels": 24490240, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381161600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 6080, + 4028 + ], + "weight": 500, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D70.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D70.txt new file mode 100644 index 0000000..fa7e638 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D70.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D70", + "image": "//cdn.dxomark.com/dakdata/xml/D70/vignette3.png", + "brand": "Nikon", + "price": 400, + "pixelDepth": 6, + "pixels": 6122560, + "ISO": [ + 200, + 1600 + ], + "maxISO": 1600, + "launchDate": 1075219200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D700.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D700.txt new file mode 100644 index 0000000..fb49e03 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D700.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D700", + "image": "//cdn.dxomark.com/dakdata/xml/D700/vignette3.png", + "brand": "Nikon", + "price": 2699, + "pixelDepth": 12.1, + "pixels": 12195072, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1214841600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4288, + 2844 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D7000.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D7000.txt new file mode 100644 index 0000000..a94fada --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D7000.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7000", + "image": "//cdn.dxomark.com/dakdata/xml/D7000/vignette3.png", + "brand": "Nikon", + "price": 1200, + "pixelDepth": 16.2, + "pixels": 16370480, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1284480000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4991, + 3280 + ], + "weight": 690, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D70s.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D70s.txt new file mode 100644 index 0000000..dc9ff85 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D70s.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D70s", + "image": "//cdn.dxomark.com/dakdata/xml/D70s/vignette3.png", + "brand": "Nikon", + "price": 700, + "pixelDepth": 6.1, + "pixels": 6122560, + "ISO": [ + 200, + 1600 + ], + "maxISO": 1600, + "launchDate": 1113926400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3040, + 2014 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D7100.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D7100.txt new file mode 100644 index 0000000..dbdcd12 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D7100.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7100", + "image": "//cdn.dxomark.com/dakdata/xml/D7100/vignette3.png", + "brand": "Nikon", + "price": 1200, + "pixelDepth": 24.1, + "pixels": 24264720, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1361376000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 6036, + 4020 + ], + "weight": 675, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D7200.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D7200.txt new file mode 100644 index 0000000..f3a5045 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D7200.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7200", + "image": "//cdn.dxomark.com/dakdata/xml/D7200/vignette3.png", + "brand": "Nikon", + "price": 1200, + "pixelDepth": 24.2, + "pixels": 24160256, + "ISO": [ + 100, + 102400 + ], + "maxISO": 102400, + "launchDate": 1425225600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 6016, + 4016 + ], + "weight": 675, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D750.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D750.txt new file mode 100644 index 0000000..8078d0a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D750.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D750", + "image": "//cdn.dxomark.com/dakdata/xml/D750/vignette3.png", + "brand": "Nikon", + "price": 2300, + "pixelDepth": 24.3, + "pixels": 24321024, + "ISO": [ + 50, + 51200 + ], + "maxISO": 51200, + "launchDate": 1410451200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6.5, + "resolution": [ + 6032, + 4032 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D7500.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D7500.txt new file mode 100644 index 0000000..0ef43d2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D7500.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D7500", + "image": "//cdn.dxomark.com/dakdata/xml/D7500/vignette3.png", + "brand": "Nikon", + "price": 1250, + "pixelDepth": 20.9, + "pixels": 20876800, + "ISO": [ + 100, + 1640000 + ], + "maxISO": 1640000, + "launchDate": 1491926400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5600, + 3728 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D80.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D80.txt new file mode 100644 index 0000000..0926beb --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D80.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D80", + "image": "//cdn.dxomark.com/dakdata/xml/D80/vignette3.png", + "brand": "Nikon", + "price": 730, + "pixelDepth": 10, + "pixels": 10190700, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1155052800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3900, + 2613 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D800.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D800.txt new file mode 100644 index 0000000..a151b26 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D800.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D800", + "image": "//cdn.dxomark.com/dakdata/xml/D800/vignette3.png", + "brand": "Nikon", + "price": 2999, + "pixelDepth": 36.3, + "pixels": 36555776, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328544000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 7424, + 4924 + ], + "weight": 820, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D800E.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D800E.txt new file mode 100644 index 0000000..8083d30 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D800E.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D800E", + "image": "//cdn.dxomark.com/dakdata/xml/D800E/vignette3.png", + "brand": "Nikon", + "price": 3300, + "pixelDepth": 36.3, + "pixels": 36555776, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328544000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 7424, + 4924 + ], + "weight": 500, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D810.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D810.txt new file mode 100644 index 0000000..7c1273f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D810.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D810", + "image": "//cdn.dxomark.com/dakdata/xml/D810/vignette3.png", + "brand": "Nikon", + "price": 3300, + "pixelDepth": 36.3, + "pixels": 36368640, + "ISO": [ + 64, + 51200 + ], + "maxISO": 51200, + "launchDate": 1403712000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 7380, + 4928 + ], + "weight": 880, + "autoFocus": 51 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D850.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D850.txt new file mode 100644 index 0000000..b831939 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D850.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D850", + "image": "//cdn.dxomark.com/dakdata/xml/D850/vignette3.png", + "brand": "Nikon", + "price": 3300, + "pixelDepth": 45.7, + "pixels": 45749760, + "ISO": [ + 32, + 102400 + ], + "maxISO": 102400, + "launchDate": 1503417600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 8288, + 5520 + ], + "weight": 915, + "autoFocus": 153 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon D90.txt b/scr/模糊专家系统/scrape/cleaned/Nikon D90.txt new file mode 100644 index 0000000..11c52a9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon D90.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon D90", + "image": "//cdn.dxomark.com/dakdata/xml/D90/vignette3.png", + "brand": "Nikon", + "price": 1235, + "pixelDepth": 12.3, + "pixels": 12361080, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1219766400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4.5, + "resolution": [ + 4310, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nikon Df.txt b/scr/模糊专家系统/scrape/cleaned/Nikon Df.txt new file mode 100644 index 0000000..983e4c6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nikon Df.txt @@ -0,0 +1,28 @@ +{ + "name": "Nikon Df", + "image": "//cdn.dxomark.com/dakdata/xml/Df/vignette3.png", + "brand": "Nikon", + "price": 2749, + "pixelDepth": 16.2, + "pixels": 16433664, + "ISO": [ + 100, + 204800 + ], + "maxISO": 204800, + "launchDate": 1383580800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.5, + "resolution": [ + 4992, + 3292 + ], + "weight": 710, + "autoFocus": 39 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nokia Lumia 1020.txt b/scr/模糊专家系统/scrape/cleaned/Nokia Lumia 1020.txt new file mode 100644 index 0000000..d5da207 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nokia Lumia 1020.txt @@ -0,0 +1,28 @@ +{ + "name": "Nokia Lumia 1020", + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1020/vignette3.png", + "brand": "Nokia", + "price": 610, + "pixelDepth": 41, + "pixels": 38334720, + "ISO": [ + 100, + 4000 + ], + "maxISO": 4000, + "launchDate": 1373472000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 7152, + 5360 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Nokia Lumia 1520.txt b/scr/模糊专家系统/scrape/cleaned/Nokia Lumia 1520.txt new file mode 100644 index 0000000..2d43ab0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Nokia Lumia 1520.txt @@ -0,0 +1,28 @@ +{ + "name": "Nokia Lumia 1520", + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1520/vignette3.png", + "brand": "Nokia", + "price": 600, + "pixelDepth": 20, + "pixels": 18690048, + "ISO": [ + 100, + 4000 + ], + "maxISO": 4000, + "launchDate": 1384444800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4992, + 3744 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E3.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E3.txt new file mode 100644 index 0000000..bf71af7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E3.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E3", + "image": "//cdn.dxomark.com/dakdata/xml/E3/vignette3.png", + "brand": "Olympus", + "price": 1300, + "pixelDepth": 10.1, + "pixels": 10416000, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1192464000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E30.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E30.txt new file mode 100644 index 0000000..54bef99 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E30.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E30", + "image": "//cdn.dxomark.com/dakdata/xml/E30/vignette3.png", + "brand": "Olympus", + "price": 1689, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1225814400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E410.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E410.txt new file mode 100644 index 0000000..4c09e88 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E410.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E410", + "image": "//cdn.dxomark.com/dakdata/xml/E410/vignette3.png", + "brand": "Olympus", + "price": 480, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1173024000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E420.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E420.txt new file mode 100644 index 0000000..9c0183d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E420.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E420", + "image": "//cdn.dxomark.com/dakdata/xml/E420/vignette3.png", + "brand": "Olympus", + "price": 520, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1204646400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E450.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E450.txt new file mode 100644 index 0000000..aedf89f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E450.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E450", + "image": "//cdn.dxomark.com/dakdata/xml/E450/vignette3.png", + "brand": "Olympus", + "price": 443, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1238428800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E5.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E5.txt new file mode 100644 index 0000000..a832559 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E5", + "image": "//cdn.dxomark.com/dakdata/xml/E5/vignette3.png", + "brand": "Olympus", + "price": 1699, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1284393600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4096, + 3084 + ], + "weight": 800, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E510.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E510.txt new file mode 100644 index 0000000..706d8c8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E510.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E510", + "image": "//cdn.dxomark.com/dakdata/xml/E510/vignette3.png", + "brand": "Olympus", + "price": 593, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1173024000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E520.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E520.txt new file mode 100644 index 0000000..eb4b023 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E520.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E520", + "image": "//cdn.dxomark.com/dakdata/xml/E520/vignette3.png", + "brand": "Olympus", + "price": 450, + "pixelDepth": 10, + "pixels": 10416000, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1210608000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3720, + 2800 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E600.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E600.txt new file mode 100644 index 0000000..9408258 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E600.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E600", + "image": "//cdn.dxomark.com/dakdata/xml/E600/vignette3.png", + "brand": "Olympus", + "price": 490, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1251561600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4096, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus E620.txt b/scr/模糊专家系统/scrape/cleaned/Olympus E620.txt new file mode 100644 index 0000000..8e83af2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus E620.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus E620", + "image": "//cdn.dxomark.com/dakdata/xml/E620/vignette3.png", + "brand": "Olympus", + "price": 618, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1235404800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M1 Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M1 Mark II.txt new file mode 100644 index 0000000..d076c9a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M1 Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M1 Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1_Mark_II/vignette3.png", + "brand": "Olympus", + "price": 2000, + "pixelDepth": 20.4, + "pixels": 20498880, + "ISO": [ + 64, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 60, + "resolution": [ + 5240, + 3912 + ], + "weight": 500, + "autoFocus": 121 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M1.txt b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M1.txt new file mode 100644 index 0000000..89c2fa5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M1", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1/vignette3.png", + "brand": "Olympus", + "price": 1399, + "pixelDepth": 16.3, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1378742400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 4640, + 3472 + ], + "weight": 500, + "autoFocus": 800 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M10 Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M10 Mark II.txt new file mode 100644 index 0000000..cbc6cbf --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M10 Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M10 Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10_Mark_II/vignette3.png", + "brand": "Olympus", + "price": 650, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1440432000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8.5, + "resolution": [ + 4640, + 3472 + ], + "weight": 342, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M10.txt b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M10.txt new file mode 100644 index 0000000..85f763b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M10.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M10", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10/vignette3.png", + "brand": "Olympus", + "price": 700, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 200, + 25600 + ], + "maxISO": 25600, + "launchDate": 1390924800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 500, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M5 Mark II.txt b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M5 Mark II.txt new file mode 100644 index 0000000..454abc4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M5 Mark II.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M5 Mark II", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5_Mark_II/vignette3.png", + "brand": "Olympus", + "price": 1100, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1423065600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4640, + 3472 + ], + "weight": 417, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M5.txt b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M5.txt new file mode 100644 index 0000000..3edd025 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus OM-D E-M5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus OM-D E-M5", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5/vignette3.png", + "brand": "Olympus", + "price": 999, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 200, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328630400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 9, + "resolution": [ + 4640, + 3472 + ], + "weight": 425, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-P5.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-P5.txt new file mode 100644 index 0000000..08685ca --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-P5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-P5", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-P5/vignette3.png", + "brand": "Olympus", + "price": 1000, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1368115200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 4640, + 3472 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PL5.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PL5.txt new file mode 100644 index 0000000..713b2e3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PL5.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-PL5", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL5/vignette3.png", + "brand": "Olympus", + "price": 699, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 279, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PL7.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PL7.txt new file mode 100644 index 0000000..80ac666 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PL7.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-PL7", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL7/vignette3.png", + "brand": "Olympus", + "price": 600, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1409155200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 309, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PM2.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PM2.txt new file mode 100644 index 0000000..98e2a9e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN E-PM2.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN E-PM2", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PM2/vignette3.png", + "brand": "Olympus", + "price": 599, + "pixelDepth": 16.1, + "pixels": 16110080, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 4640, + 3472 + ], + "weight": 223, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP1.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP1.txt new file mode 100644 index 0000000..33e2ab4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EP1", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP1/vignette3.png", + "brand": "Olympus", + "price": 1098, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1245081600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP2.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP2.txt new file mode 100644 index 0000000..0386e4d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP2.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EP2", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP2/vignette3.png", + "brand": "Olympus", + "price": 1100, + "pixelDepth": 12.3, + "pixels": 12644400, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1257350400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4100, + 3084 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP3.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP3.txt new file mode 100644 index 0000000..2ad5e8f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EP3.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EP3", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP3/vignette3.png", + "brand": "Olympus", + "price": 1000, + "pixelDepth": 12.3, + "pixels": 12403200, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1309363200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4080, + 3040 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL1.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL1.txt new file mode 100644 index 0000000..1f641e5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPL1", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL1/vignette3.png", + "brand": "Olympus", + "price": 599, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1265126400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4096, + 3084 + ], + "weight": 296, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL2.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL2.txt new file mode 100644 index 0000000..5c8bd7e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL2.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPL2", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL2/vignette3.png", + "brand": "Olympus", + "price": 599, + "pixelDepth": 12.3, + "pixels": 12632064, + "ISO": [ + 200, + 6400 + ], + "maxISO": 6400, + "launchDate": 1294243200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4096, + 3084 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL3.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL3.txt new file mode 100644 index 0000000..38705ea --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPL3.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPL3", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL3/vignette3.png", + "brand": "Olympus", + "price": 460, + "pixelDepth": 12.3, + "pixels": 12403200, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1309363200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.5, + "resolution": [ + 4080, + 3040 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPM1.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPM1.txt new file mode 100644 index 0000000..fe8bea3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN EPM1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN EPM1", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPM1/vignette3.png", + "brand": "Olympus", + "price": 499, + "pixelDepth": 12.3, + "pixels": 12403200, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1309363200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5.5, + "resolution": [ + 4080, + 3040 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus PEN-F.txt b/scr/模糊专家系统/scrape/cleaned/Olympus PEN-F.txt new file mode 100644 index 0000000..22660d9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus PEN-F.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus PEN-F", + "image": "//cdn.dxomark.com/dakdata/xml/PEN-F/vignette3.png", + "brand": "Olympus", + "price": 1200, + "pixelDepth": 20.3, + "pixels": 20300800, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1453824000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5200, + 3904 + ], + "weight": 373, + "autoFocus": 81 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus SP 565 UZ.txt b/scr/模糊专家系统/scrape/cleaned/Olympus SP 565 UZ.txt new file mode 100644 index 0000000..aca1763 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus SP 565 UZ.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus SP 565 UZ", + "image": "//cdn.dxomark.com/dakdata/xml/SP_565_UZ/vignette3.png", + "brand": "Olympus", + "price": 433, + "pixelDepth": 10, + "pixels": 10046688, + "ISO": [ + 64, + 1600 + ], + "maxISO": 1600, + "launchDate": 1219593600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 3664, + 2742 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus SP 570 UZ.txt b/scr/模糊专家系统/scrape/cleaned/Olympus SP 570 UZ.txt new file mode 100644 index 0000000..9c849e4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus SP 570 UZ.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus SP 570 UZ", + "image": "//cdn.dxomark.com/dakdata/xml/SP_570_UZ/vignette3.png", + "brand": "Olympus", + "price": 520, + "pixelDepth": 10, + "pixels": 10046688, + "ISO": [ + 64, + 6400 + ], + "maxISO": 6400, + "launchDate": 1200931200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 3664, + 2742 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus Stylus1.txt b/scr/模糊专家系统/scrape/cleaned/Olympus Stylus1.txt new file mode 100644 index 0000000..e019add --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus Stylus1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus Stylus1", + "image": "//cdn.dxomark.com/dakdata/xml/Stylus1/vignette3.png", + "brand": "Olympus", + "price": 699, + "pixelDepth": 12, + "pixels": 11968000, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1382976000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4000, + 2992 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus XZ-2 iHS.txt b/scr/模糊专家系统/scrape/cleaned/Olympus XZ-2 iHS.txt new file mode 100644 index 0000000..e5c9a02 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus XZ-2 iHS.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus XZ-2 iHS", + "image": "//cdn.dxomark.com/dakdata/xml/XZ-2_iHS/vignette3.png", + "brand": "Olympus", + "price": 549, + "pixelDepth": 12, + "pixels": 11896224, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3984, + 2986 + ], + "weight": 346, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Olympus XZ1.txt b/scr/模糊专家系统/scrape/cleaned/Olympus XZ1.txt new file mode 100644 index 0000000..4a7b339 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Olympus XZ1.txt @@ -0,0 +1,28 @@ +{ + "name": "Olympus XZ1", + "image": "//cdn.dxomark.com/dakdata/xml/XZ1/vignette3.png", + "brand": "Olympus", + "price": 494, + "pixelDepth": 10, + "pixels": 10156800, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1294243200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2, + "resolution": [ + 3680, + 2760 + ], + "weight": 275, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic DMC FZ28.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic DMC FZ28.txt new file mode 100644 index 0000000..86b54b6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic DMC FZ28.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic DMC FZ28", + "image": "//cdn.dxomark.com/dakdata/xml/DMC_FZ28/vignette3.png", + "brand": "Panasonic", + "price": 426, + "pixelDepth": 10.1, + "pixels": 10101672, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1216569600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 3668, + 2754 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-FZ150.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-FZ150.txt new file mode 100644 index 0000000..444e0b7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-FZ150.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-FZ150", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ150/vignette3.png", + "brand": "Panasonic", + "price": 630, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1314288000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4016, + 3016 + ], + "weight": 484, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-FZ200.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-FZ200.txt new file mode 100644 index 0000000..756a120 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-FZ200.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-FZ200", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ200/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1342540800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4016, + 3016 + ], + "weight": 537, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-G6.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-G6.txt new file mode 100644 index 0000000..cbcbb5f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-G6.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-G6", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-G6/vignette3.png", + "brand": "Panasonic", + "price": 750, + "pixelDepth": 16.05, + "pixels": 16054528, + "ISO": [ + 160, + 25600 + ], + "maxISO": 25600, + "launchDate": 1366732800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 4624, + 3472 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-LF1.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-LF1.txt new file mode 100644 index 0000000..0aa8cc8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic LUMIX DMC-LF1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic LUMIX DMC-LF1", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-LF1/vignette3.png", + "brand": "Panasonic", + "price": 500, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1366732800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DC-GH5.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DC-GH5.txt new file mode 100644 index 0000000..07cb47b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DC-GH5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DC-GH5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DC-GH5/vignette3.png", + "brand": "Panasonic", + "price": 2000, + "pixelDepth": 20.3, + "pixels": 20332032, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1483459200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 5208, + 3904 + ], + "weight": 645, + "autoFocus": 225 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC FX150.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC FX150.txt new file mode 100644 index 0000000..6a6984c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC FX150.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC FX150", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_FX150/vignette3.png", + "brand": "Panasonic", + "price": 390, + "pixelDepth": 14.7, + "pixels": 14721996, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1216569600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4429, + 3324 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G1.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G1.txt new file mode 100644 index 0000000..f68c42c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G1/vignette3.png", + "brand": "Panasonic", + "price": 790, + "pixelDepth": 12.1, + "pixels": 12118288, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1221148800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4018, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G10.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G10.txt new file mode 100644 index 0000000..753543a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G10.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G10", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G10/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 12.1, + "pixels": 12000000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1267891200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.2, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G2.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G2.txt new file mode 100644 index 0000000..bcf3b35 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G2.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G2", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G2/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12000000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1267891200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.2, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G3.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G3.txt new file mode 100644 index 0000000..e7de6b9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G3/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1305129600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4608, + 3464 + ], + "weight": 336, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G5.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G5.txt new file mode 100644 index 0000000..5350873 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC G5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC G5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G5/vignette3.png", + "brand": "Panasonic", + "price": 650, + "pixelDepth": 16.05, + "pixels": 16054528, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1342540800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 20, + "resolution": [ + 4624, + 3472 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF1.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF1.txt new file mode 100644 index 0000000..e3a5063 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF1/vignette3.png", + "brand": "Panasonic", + "price": 570, + "pixelDepth": 12.1, + "pixels": 12118288, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1251820800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4018, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF2.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF2.txt new file mode 100644 index 0000000..de87144 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF2.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF2", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF2/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12329408, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1288800000000, + "touchScreen": true, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4088, + 3016 + ], + "weight": 265, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF3.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF3.txt new file mode 100644 index 0000000..8562625 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF3/vignette3.png", + "brand": "Panasonic", + "price": 699, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 160, + 6400 + ], + "maxISO": 6400, + "launchDate": 1307894400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.8, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF5.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF5.txt new file mode 100644 index 0000000..f63cea6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF5/vignette3.png", + "brand": "Panasonic", + "price": 599, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1333555200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 4016, + 3016 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF6.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF6.txt new file mode 100644 index 0000000..f5703ca --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GF6.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GF6", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF6/vignette3.png", + "brand": "Panasonic", + "price": 680, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 160, + 25600 + ], + "maxISO": 25600, + "launchDate": 1365436800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GH1.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GH1.txt new file mode 100644 index 0000000..f708bc4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GH1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GH1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH1/vignette3.png", + "brand": "Panasonic", + "price": 880, + "pixelDepth": 12.1, + "pixels": 12118288, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1236009600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4018, + 3016 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GH2.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GH2.txt new file mode 100644 index 0000000..4985bb0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GH2.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GH2", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH2/vignette3.png", + "brand": "Panasonic", + "price": 1100, + "pixelDepth": 16.05, + "pixels": 16526720, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1284998400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4.5, + "resolution": [ + 4760, + 3472 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GX1.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GX1.txt new file mode 100644 index 0000000..c532b69 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC GX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC GX1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GX1/vignette3.png", + "brand": "Panasonic", + "price": 699, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 160, + 12800 + ], + "maxISO": 12800, + "launchDate": 1320595200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4.2, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC L10.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC L10.txt new file mode 100644 index 0000000..5f120c8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC L10.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC L10", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_L10/vignette3.png", + "brand": "Panasonic", + "price": 964, + "pixelDepth": 10.1, + "pixels": 10129182, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1188403200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3682, + 2751 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX10.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX10.txt new file mode 100644 index 0000000..f6737cf --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX10.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX10", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX10/vignette3.png", + "brand": "Panasonic", + "price": 699, + "pixelDepth": 20.1, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5488, + 3664 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX3.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX3.txt new file mode 100644 index 0000000..c017951 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX3/vignette3.png", + "brand": "Panasonic", + "price": 450, + "pixelDepth": 10.1, + "pixels": 10101672, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1219248000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3668, + 2754 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX5.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX5.txt new file mode 100644 index 0000000..c23cff3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX5/vignette3.png", + "brand": "Panasonic", + "price": 470, + "pixelDepth": 10.1, + "pixels": 9980928, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1279641600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 3648, + 2736 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX7.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX7.txt new file mode 100644 index 0000000..8ed8928 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC LX7.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC LX7", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX7/vignette3.png", + "brand": "Panasonic", + "price": 450, + "pixelDepth": 10.1, + "pixels": 9616512, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1342540800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 3792, + 2536 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ1000.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ1000.txt new file mode 100644 index 0000000..5bb63b7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ1000.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ1000", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ1000/vignette3.png", + "brand": "Panasonic", + "price": 900, + "pixelDepth": 20.1, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1402502400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 5488, + 3664 + ], + "weight": 780, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ2000.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ2000.txt new file mode 100644 index 0000000..bd2a5c8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ2000.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ2000", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ2000/vignette3.png", + "brand": "Panasonic", + "price": 1200, + "pixelDepth": 20, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 5488, + 3664 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ330.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ330.txt new file mode 100644 index 0000000..ad8c7c0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ330.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ330", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ330/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 12.1, + "pixels": 12112256, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1436976000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4016, + 3016 + ], + "weight": 691, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ70.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ70.txt new file mode 100644 index 0000000..0285275 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-FZ70.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-FZ70", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ70/vignette3.png", + "brand": "Panasonic", + "price": 399, + "pixelDepth": 16.1, + "pixels": 16054528, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1374076800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 9, + "resolution": [ + 4624, + 3472 + ], + "weight": 562, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-G80.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-G80.txt new file mode 100644 index 0000000..5f06cb8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-G80.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-G80", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-G80/vignette3.png", + "brand": "Panasonic", + "price": 900, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GH3.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GH3.txt new file mode 100644 index 0000000..0749533 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GH3.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GH3", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH3/vignette3.png", + "brand": "Panasonic", + "price": 1300, + "pixelDepth": 16.05, + "pixels": 16054528, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347811200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4624, + 3472 + ], + "weight": 470, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GH4.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GH4.txt new file mode 100644 index 0000000..a3ded27 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GH4.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GH4", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH4/vignette3.png", + "brand": "Panasonic", + "price": 1700, + "pixelDepth": 16, + "pixels": 16054528, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1391702400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 4624, + 3472 + ], + "weight": 465, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GM1.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GM1.txt new file mode 100644 index 0000000..137bd0a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GM1.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GM1", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM1/vignette3.png", + "brand": "Panasonic", + "price": 600, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381939200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4608, + 3464 + ], + "weight": 173, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GM5.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GM5.txt new file mode 100644 index 0000000..b4e0cc4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GM5.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GM5", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM5/vignette3.png", + "brand": "Panasonic", + "price": 650, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1410710400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.8, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX7.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX7.txt new file mode 100644 index 0000000..a02ed6e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX7.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GX7", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX7/vignette3.png", + "brand": "Panasonic", + "price": 999, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1375286400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4608, + 3464 + ], + "weight": 500, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX8.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX8.txt new file mode 100644 index 0000000..77c89fc --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX8.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GX8", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX8/vignette3.png", + "brand": "Panasonic", + "price": 1200, + "pixelDepth": 20.3, + "pixels": 20300800, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1436976000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5200, + 3904 + ], + "weight": 435, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX80.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX80.txt new file mode 100644 index 0000000..aad18f6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-GX80.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-GX80", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX80/vignette3.png", + "brand": "Panasonic", + "price": 800, + "pixelDepth": 16, + "pixels": 15962112, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1459785600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 40, + "resolution": [ + 4608, + 3464 + ], + "weight": 383, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-LX100.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-LX100.txt new file mode 100644 index 0000000..6fee51f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-LX100.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-LX100", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-LX100/vignette3.png", + "brand": "Panasonic", + "price": 899, + "pixelDepth": 12.8, + "pixels": 12813312, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1410710400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 4128, + 3104 + ], + "weight": 500, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS100.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS100.txt new file mode 100644 index 0000000..a18514a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS100.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-ZS100", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS100/vignette3.png", + "brand": "Panasonic", + "price": 700, + "pixelDepth": 20.1, + "pixels": 20108032, + "ISO": [ + 80, + 25600 + ], + "maxISO": 25600, + "launchDate": 1451923200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 50, + "resolution": [ + 5488, + 3664 + ], + "weight": 270, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS50.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS50.txt new file mode 100644 index 0000000..6decf1c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS50.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-ZS50", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS50/vignette3.png", + "brand": "Panasonic", + "price": 400, + "pixelDepth": 12, + "pixels": 12112256, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1420387200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4016, + 3016 + ], + "weight": 217, + "autoFocus": 23 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS60.txt b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS60.txt new file mode 100644 index 0000000..28e081e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Panasonic Lumix DMC-ZS60.txt @@ -0,0 +1,28 @@ +{ + "name": "Panasonic Lumix DMC-ZS60", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS60/vignette3.png", + "brand": "Panasonic", + "price": 450, + "pixelDepth": 18.1, + "pixels": 18115456, + "ISO": [ + 80, + 6400 + ], + "maxISO": 6400, + "launchDate": 1451923200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 40, + "resolution": [ + 4912, + 3688 + ], + "weight": 240, + "autoFocus": 49 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax 645D.txt b/scr/模糊专家系统/scrape/cleaned/Pentax 645D.txt new file mode 100644 index 0000000..35b8268 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax 645D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax 645D", + "image": "//cdn.dxomark.com/dakdata/xml/645D/vignette3.png", + "brand": "Pentax", + "price": 9400, + "pixelDepth": 40, + "pixels": 41218048, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1267372800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.1, + "resolution": [ + 7424, + 5552 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax 645Z.txt b/scr/模糊专家系统/scrape/cleaned/Pentax 645Z.txt new file mode 100644 index 0000000..95b6b05 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax 645Z.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax 645Z", + "image": "//cdn.dxomark.com/dakdata/xml/645Z/vignette3.png", + "brand": "Pentax", + "price": 8499, + "pixelDepth": 51.4, + "pixels": 51261600, + "ISO": [ + 100, + 204800 + ], + "maxISO": 204800, + "launchDate": 1397491200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 8268, + 6200 + ], + "weight": 1470, + "autoFocus": 27 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K 01.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K 01.txt new file mode 100644 index 0000000..f27bab3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K 01.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K 01", + "image": "//cdn.dxomark.com/dakdata/xml/K_01/vignette3.png", + "brand": "Pentax", + "price": 899, + "pixelDepth": 16.28, + "pixels": 16150592, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1328112000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4936, + 3272 + ], + "weight": 561, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-1.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-1.txt new file mode 100644 index 0000000..b792206 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-1.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-1", + "image": "//cdn.dxomark.com/dakdata/xml/K-1/vignette3.png", + "brand": "Pentax", + "price": 1800, + "pixelDepth": 36.4, + "pixels": 36590400, + "ISO": [ + 100, + 204800 + ], + "maxISO": 204800, + "launchDate": 1455638400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 4.4, + "resolution": [ + 7392, + 4950 + ], + "weight": 500, + "autoFocus": 33 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-3 II.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-3 II.txt new file mode 100644 index 0000000..e544041 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-3 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-3 II", + "image": "//cdn.dxomark.com/dakdata/xml/K-3_II/vignette3.png", + "brand": "Pentax", + "price": 1100, + "pixelDepth": 24.35, + "pixels": 24514560, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1429718400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 8.3, + "resolution": [ + 6080, + 4032 + ], + "weight": 500, + "autoFocus": 27 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-3.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-3.txt new file mode 100644 index 0000000..a1b5f8d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-3.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-3", + "image": "//cdn.dxomark.com/dakdata/xml/K-3/vignette3.png", + "brand": "Pentax", + "price": 1300, + "pixelDepth": 24, + "pixels": 24514560, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1381161600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8.3, + "resolution": [ + 6080, + 4032 + ], + "weight": 500, + "autoFocus": 27 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-30.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-30.txt new file mode 100644 index 0000000..94b3ed1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-30.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-30", + "image": "//cdn.dxomark.com/dakdata/xml/K-30/vignette3.png", + "brand": "Pentax", + "price": 470, + "pixelDepth": 16.3, + "pixels": 16150592, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1337616000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4936, + 3272 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-5 II.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-5 II.txt new file mode 100644 index 0000000..cd907fb --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-5 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-5 II", + "image": "//cdn.dxomark.com/dakdata/xml/K-5_II/vignette3.png", + "brand": "Pentax", + "price": 999, + "pixelDepth": 16.3, + "pixels": 16084992, + "ISO": [ + 80, + 51200 + ], + "maxISO": 51200, + "launchDate": 1347292800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4928, + 3264 + ], + "weight": 680, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-5 IIs.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-5 IIs.txt new file mode 100644 index 0000000..9569165 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-5 IIs.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-5 IIs", + "image": "//cdn.dxomark.com/dakdata/xml/K-5_IIs/vignette3.png", + "brand": "Pentax", + "price": 1199, + "pixelDepth": 16.3, + "pixels": 16393728, + "ISO": [ + 80, + 51200 + ], + "maxISO": 51200, + "launchDate": 1347292800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4992, + 3284 + ], + "weight": 680, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-50.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-50.txt new file mode 100644 index 0000000..4fda2bd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-50.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-50", + "image": "//cdn.dxomark.com/dakdata/xml/K-50/vignette3.png", + "brand": "Pentax", + "price": 599, + "pixelDepth": 16.28, + "pixels": 16150592, + "ISO": [ + 100, + 51600 + ], + "maxISO": 51600, + "launchDate": 1370966400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4936, + 3272 + ], + "weight": 590, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-500.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-500.txt new file mode 100644 index 0000000..e3406db --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-500.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-500", + "image": "//cdn.dxomark.com/dakdata/xml/K-500/vignette3.png", + "brand": "Pentax", + "price": 600, + "pixelDepth": 16.28, + "pixels": 16150592, + "ISO": [ + 100, + 51600 + ], + "maxISO": 51600, + "launchDate": 1370966400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4936, + 3272 + ], + "weight": 586, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K-S1.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K-S1.txt new file mode 100644 index 0000000..74dd7e6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K-S1.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K-S1", + "image": "//cdn.dxomark.com/dakdata/xml/K-S1/vignette3.png", + "brand": "Pentax", + "price": 749, + "pixelDepth": 20.12, + "pixels": 20166656, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1409068800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 5504, + 3664 + ], + "weight": 500, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K10D.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K10D.txt new file mode 100644 index 0000000..8697299 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K10D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K10D", + "image": "//cdn.dxomark.com/dakdata/xml/K10D/vignette3.png", + "brand": "Pentax", + "price": 900, + "pixelDepth": 10, + "pixels": 10328064, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1158076800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3936, + 2624 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K200D.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K200D.txt new file mode 100644 index 0000000..a4c5efb --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K200D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K200D", + "image": "//cdn.dxomark.com/dakdata/xml/K200D/vignette3.png", + "brand": "Pentax", + "price": 660, + "pixelDepth": 10.2, + "pixels": 10191936, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1201017600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.8, + "resolution": [ + 3896, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K20D.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K20D.txt new file mode 100644 index 0000000..dcf30b1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K20D.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K20D", + "image": "//cdn.dxomark.com/dakdata/xml/K20D/vignette3.png", + "brand": "Pentax", + "price": 770, + "pixelDepth": 14.6, + "pixels": 14645312, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1201017600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4688, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K5.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K5.txt new file mode 100644 index 0000000..150063b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K5.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K5", + "image": "//cdn.dxomark.com/dakdata/xml/K5/vignette3.png", + "brand": "Pentax", + "price": 1600, + "pixelDepth": 16.3, + "pixels": 16084992, + "ISO": [ + 80, + 51200 + ], + "maxISO": 51200, + "launchDate": 1284912000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4928, + 3264 + ], + "weight": 740, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax K7.txt b/scr/模糊专家系统/scrape/cleaned/Pentax K7.txt new file mode 100644 index 0000000..c771d92 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax K7.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax K7", + "image": "//cdn.dxomark.com/dakdata/xml/K7/vignette3.png", + "brand": "Pentax", + "price": 1900, + "pixelDepth": 14.6, + "pixels": 14852096, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1242748800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5.2, + "resolution": [ + 4736, + 3136 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax KM.txt b/scr/模糊专家系统/scrape/cleaned/Pentax KM.txt new file mode 100644 index 0000000..bbc0a52 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax KM.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax KM", + "image": "//cdn.dxomark.com/dakdata/xml/KM/vignette3.png", + "brand": "Pentax", + "price": 550, + "pixelDepth": 10.2, + "pixels": 10191936, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1222012800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 3896, + 2616 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax Kr.txt b/scr/模糊专家系统/scrape/cleaned/Pentax Kr.txt new file mode 100644 index 0000000..6cae9b3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax Kr.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Kr", + "image": "//cdn.dxomark.com/dakdata/xml/Kr/vignette3.png", + "brand": "Pentax", + "price": 700, + "pixelDepth": 12.4, + "pixels": 12212224, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1286553600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 4288, + 2848 + ], + "weight": 544.31, + "autoFocus": 11 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax Kx.txt b/scr/模糊专家系统/scrape/cleaned/Pentax Kx.txt new file mode 100644 index 0000000..80d7c58 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax Kx.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Kx", + "image": "//cdn.dxomark.com/dakdata/xml/Kx/vignette3.png", + "brand": "Pentax", + "price": 640, + "pixelDepth": 12.4, + "pixels": 12358212, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1253116800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4.7, + "resolution": [ + 4309, + 2868 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax MX-1.txt b/scr/模糊专家系统/scrape/cleaned/Pentax MX-1.txt new file mode 100644 index 0000000..06a616a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax MX-1.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax MX-1", + "image": "//cdn.dxomark.com/dakdata/xml/MX-1/vignette3.png", + "brand": "Pentax", + "price": 499, + "pixelDepth": 12, + "pixels": 12088160, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1357488000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4016, + 3010 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax Q.txt b/scr/模糊专家系统/scrape/cleaned/Pentax Q.txt new file mode 100644 index 0000000..ebd8097 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax Q.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Q", + "image": "//cdn.dxomark.com/dakdata/xml/Q/vignette3.png", + "brand": "Pentax", + "price": 799, + "pixelDepth": 12.4, + "pixels": 12000000, + "ISO": [ + 125, + 6400 + ], + "maxISO": 6400, + "launchDate": 1308672000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4000, + 3000 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Pentax Q10.txt b/scr/模糊专家系统/scrape/cleaned/Pentax Q10.txt new file mode 100644 index 0000000..20b315f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Pentax Q10.txt @@ -0,0 +1,28 @@ +{ + "name": "Pentax Q10", + "image": "//cdn.dxomark.com/dakdata/xml/Q10/vignette3.png", + "brand": "Pentax", + "price": 499, + "pixelDepth": 12.4, + "pixels": 12000000, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1347292800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4000, + 3000 + ], + "weight": 200, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Phase One IQ180 Digital Back.txt b/scr/模糊专家系统/scrape/cleaned/Phase One IQ180 Digital Back.txt new file mode 100644 index 0000000..1a51c7d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Phase One IQ180 Digital Back.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One IQ180 Digital Back", + "image": "//cdn.dxomark.com/dakdata/xml/IQ180_Digital_Back/vignette3.png", + "brand": "Phase One", + "price": 42490, + "pixelDepth": 80, + "pixels": 81130080, + "ISO": [ + 35, + 3200 + ], + "maxISO": 3200, + "launchDate": 1295798400000, + "touchScreen": true, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.7, + "resolution": [ + 10380, + 7816 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Phase One P40 Plus.txt b/scr/模糊专家系统/scrape/cleaned/Phase One P40 Plus.txt new file mode 100644 index 0000000..5f1a169 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Phase One P40 Plus.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One P40 Plus", + "image": "//cdn.dxomark.com/dakdata/xml/P40_Plus/vignette3.png", + "brand": "Phase One", + "price": 19500, + "pixelDepth": 40, + "pixels": 40811392, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1240934400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1.2, + "resolution": [ + 7372, + 5536 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Phase One P45 Plus.txt b/scr/模糊专家系统/scrape/cleaned/Phase One P45 Plus.txt new file mode 100644 index 0000000..e6d9f63 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Phase One P45 Plus.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One P45 Plus", + "image": "//cdn.dxomark.com/dakdata/xml/P45_Plus/vignette3.png", + "brand": "Phase One", + "price": 32990, + "pixelDepth": 39, + "pixels": 39447224, + "ISO": [ + 50, + 800 + ], + "maxISO": 800, + "launchDate": 1167580800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 0.67, + "resolution": [ + 7246, + 5444 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Phase One P65 Plus.txt b/scr/模糊专家系统/scrape/cleaned/Phase One P65 Plus.txt new file mode 100644 index 0000000..b6e8d1d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Phase One P65 Plus.txt @@ -0,0 +1,28 @@ +{ + "name": "Phase One P65 Plus", + "image": "//cdn.dxomark.com/dakdata/xml/P65_Plus/vignette3.png", + "brand": "Phase One", + "price": 39900, + "pixelDepth": 60.5, + "pixels": 60480288, + "ISO": [ + 50, + 3200 + ], + "maxISO": 3200, + "launchDate": 1215964800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 1, + "resolution": [ + 8984, + 6732 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Ricoh GR II.txt b/scr/模糊专家系统/scrape/cleaned/Ricoh GR II.txt new file mode 100644 index 0000000..5bef26e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Ricoh GR II.txt @@ -0,0 +1,28 @@ +{ + "name": "Ricoh GR II", + "image": "//cdn.dxomark.com/dakdata/xml/GR_II/vignette3.png", + "brand": "Ricoh", + "price": 800, + "pixelDepth": 16.2, + "pixels": 16216320, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1434470400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4944, + 3280 + ], + "weight": 221, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Ricoh GR.txt b/scr/模糊专家系统/scrape/cleaned/Ricoh GR.txt new file mode 100644 index 0000000..e233bf2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Ricoh GR.txt @@ -0,0 +1,28 @@ +{ + "name": "Ricoh GR", + "image": "//cdn.dxomark.com/dakdata/xml/GR/vignette3.png", + "brand": "Ricoh", + "price": 799, + "pixelDepth": 16.2, + "pixels": 16216320, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1366128000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4944, + 3280 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung EX1.txt b/scr/模糊专家系统/scrape/cleaned/Samsung EX1.txt new file mode 100644 index 0000000..8b1c2ec --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung EX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung EX1", + "image": "//cdn.dxomark.com/dakdata/xml/EX1/vignette3.png", + "brand": "Samsung", + "price": 450, + "pixelDepth": 10, + "pixels": 10250640, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1266595200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 3714, + 2760 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung EX2F.txt b/scr/模糊专家系统/scrape/cleaned/Samsung EX2F.txt new file mode 100644 index 0000000..68b9b08 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung EX2F.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung EX2F", + "image": "//cdn.dxomark.com/dakdata/xml/EX2F/vignette3.png", + "brand": "Samsung", + "price": 549, + "pixelDepth": 12.4, + "pixels": 12393150, + "ISO": [ + 80, + 3200 + ], + "maxISO": 3200, + "launchDate": 1341244800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4070, + 3045 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung GALAXY NX.txt b/scr/模糊专家系统/scrape/cleaned/Samsung GALAXY NX.txt new file mode 100644 index 0000000..97ab598 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung GALAXY NX.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung GALAXY NX", + "image": "//cdn.dxomark.com/dakdata/xml/GALAXY_NX/vignette3.png", + "brand": "Samsung", + "price": 1300, + "pixelDepth": 20.3, + "pixels": 20597844, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1371657600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 8.6, + "resolution": [ + 5546, + 3714 + ], + "weight": 410, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung GX 20.txt b/scr/模糊专家系统/scrape/cleaned/Samsung GX 20.txt new file mode 100644 index 0000000..16a6700 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung GX 20.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung GX 20", + "image": "//cdn.dxomark.com/dakdata/xml/GX_20/vignette3.png", + "brand": "Samsung", + "price": 1060, + "pixelDepth": 14.6, + "pixels": 14645312, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1201104000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4688, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung Galaxy S6 Edge.txt b/scr/模糊专家系统/scrape/cleaned/Samsung Galaxy S6 Edge.txt new file mode 100644 index 0000000..161d1a0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung Galaxy S6 Edge.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung Galaxy S6 Edge", + "image": "//cdn.dxomark.com/dakdata/xml/Galaxy_S6_Edge/vignette3.png", + "brand": "Samsung", + "price": 600, + "pixelDepth": 16, + "pixels": 15984000, + "ISO": [ + 50, + 1600 + ], + "maxISO": 1600, + "launchDate": 1425139200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": true, + "isMetal": null, + "frameRate": 4, + "resolution": [ + 5328, + 3000 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 10.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 10.txt new file mode 100644 index 0000000..45f395c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 10.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 10", + "image": "//cdn.dxomark.com/dakdata/xml/NX_10/vignette3.png", + "brand": "Samsung", + "price": 610, + "pixelDepth": 14.6, + "pixels": 14033152, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1262534400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 100.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 100.txt new file mode 100644 index 0000000..1acd389 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 100.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 100", + "image": "//cdn.dxomark.com/dakdata/xml/NX_100/vignette3.png", + "brand": "Samsung", + "price": 499, + "pixelDepth": 14.6, + "pixels": 14695296, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1284393600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4704, + 3124 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 1000.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 1000.txt new file mode 100644 index 0000000..ff6a62d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 1000.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 1000", + "image": "//cdn.dxomark.com/dakdata/xml/NX_1000/vignette3.png", + "brand": "Samsung", + "price": 749, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 11.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 11.txt new file mode 100644 index 0000000..0ee7094 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 11.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 11", + "image": "//cdn.dxomark.com/dakdata/xml/NX_11/vignette3.png", + "brand": "Samsung", + "price": 649, + "pixelDepth": 14.6, + "pixels": 14033152, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1293465600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 20.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 20.txt new file mode 100644 index 0000000..9dc3760 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 20.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 20", + "image": "//cdn.dxomark.com/dakdata/xml/NX_20/vignette3.png", + "brand": "Samsung", + "price": 719, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 200.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 200.txt new file mode 100644 index 0000000..7d54095 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 200.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 200", + "image": "//cdn.dxomark.com/dakdata/xml/NX_200/vignette3.png", + "brand": "Samsung", + "price": 899, + "pixelDepth": 20.3, + "pixels": 20243536, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1314806400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 7, + "resolution": [ + 5528, + 3662 + ], + "weight": 500, + "autoFocus": 35 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 210.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 210.txt new file mode 100644 index 0000000..e1c7cc2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 210.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 210", + "image": "//cdn.dxomark.com/dakdata/xml/NX_210/vignette3.png", + "brand": "Samsung", + "price": 899, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1334764800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 30.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 30.txt new file mode 100644 index 0000000..641c6b9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 30.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 30", + "image": "//cdn.dxomark.com/dakdata/xml/NX_30/vignette3.png", + "brand": "Samsung", + "price": 1000, + "pixelDepth": 20, + "pixels": 20597844, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1388592000000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 5546, + 3714 + ], + "weight": 500, + "autoFocus": 247 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX 300.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX 300.txt new file mode 100644 index 0000000..ad59cb7 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX 300.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX 300", + "image": "//cdn.dxomark.com/dakdata/xml/NX_300/vignette3.png", + "brand": "Samsung", + "price": 750, + "pixelDepth": 20.3, + "pixels": 20597844, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1357142400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 5546, + 3714 + ], + "weight": 500, + "autoFocus": 105 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX1.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX1.txt new file mode 100644 index 0000000..bb142a4 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX1", + "image": "//cdn.dxomark.com/dakdata/xml/NX1/vignette3.png", + "brand": "Samsung", + "price": 1500, + "pixelDepth": 28.2, + "pixels": 28166656, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1410710400000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 15, + "resolution": [ + 6496, + 4336 + ], + "weight": 550, + "autoFocus": 205 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX1100.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX1100.txt new file mode 100644 index 0000000..35ea8eb --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX1100.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX1100", + "image": "//cdn.dxomark.com/dakdata/xml/NX1100/vignette3.png", + "brand": "Samsung", + "price": 600, + "pixelDepth": 20.3, + "pixels": 20427820, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1365609600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5530, + 3694 + ], + "weight": 222, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX2000.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX2000.txt new file mode 100644 index 0000000..e2b09fa --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX2000.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX2000", + "image": "//cdn.dxomark.com/dakdata/xml/NX2000/vignette3.png", + "brand": "Samsung", + "price": 649, + "pixelDepth": 20.3, + "pixels": 20560704, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1367337600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 8, + "resolution": [ + 5536, + 3714 + ], + "weight": 228, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Samsung NX500.txt b/scr/模糊专家系统/scrape/cleaned/Samsung NX500.txt new file mode 100644 index 0000000..c4562da --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Samsung NX500.txt @@ -0,0 +1,28 @@ +{ + "name": "Samsung NX500", + "image": "//cdn.dxomark.com/dakdata/xml/NX500/vignette3.png", + "brand": "Samsung", + "price": 800, + "pixelDepth": 28, + "pixels": 28166656, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1423065600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 9, + "resolution": [ + 6496, + 4336 + ], + "weight": 286, + "autoFocus": 209 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A3000.txt b/scr/模糊专家系统/scrape/cleaned/Sony A3000.txt new file mode 100644 index 0000000..5018080 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A3000.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A3000", + "image": "//cdn.dxomark.com/dakdata/xml/A3000/vignette3.png", + "brand": "Sony", + "price": 400, + "pixelDepth": 20.1, + "pixels": 20093376, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1377532800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 3.5, + "resolution": [ + 5496, + 3656 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A5000.txt b/scr/模糊专家系统/scrape/cleaned/Sony A5000.txt new file mode 100644 index 0000000..3cead34 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A5000.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A5000", + "image": "//cdn.dxomark.com/dakdata/xml/A5000/vignette3.png", + "brand": "Sony", + "price": 500, + "pixelDepth": 20, + "pixels": 20093376, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1389024000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3.5, + "resolution": [ + 5496, + 3656 + ], + "weight": 212, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A5100.txt b/scr/模糊专家系统/scrape/cleaned/Sony A5100.txt new file mode 100644 index 0000000..73e0739 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A5100.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A5100", + "image": "//cdn.dxomark.com/dakdata/xml/A5100/vignette3.png", + "brand": "Sony", + "price": 550, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1408291200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 6, + "resolution": [ + 6024, + 4024 + ], + "weight": 224, + "autoFocus": 179 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A6000.txt b/scr/模糊专家系统/scrape/cleaned/Sony A6000.txt new file mode 100644 index 0000000..c173ffb --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A6000.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A6000", + "image": "//cdn.dxomark.com/dakdata/xml/A6000/vignette3.png", + "brand": "Sony", + "price": 799, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1392134400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 179 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A6300.txt b/scr/模糊专家系统/scrape/cleaned/Sony A6300.txt new file mode 100644 index 0000000..74b3097 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A6300.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A6300", + "image": "//cdn.dxomark.com/dakdata/xml/A6300/vignette3.png", + "brand": "Sony", + "price": 1000, + "pixelDepth": 24.2, + "pixels": 24240576, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1454428800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6024, + 4024 + ], + "weight": 361, + "autoFocus": 425 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A6500.txt b/scr/模糊专家系统/scrape/cleaned/Sony A6500.txt new file mode 100644 index 0000000..94a0884 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A6500.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A6500", + "image": "//cdn.dxomark.com/dakdata/xml/A6500/vignette3.png", + "brand": "Sony", + "price": 1400, + "pixelDepth": 24.2, + "pixels": 24240576, + "ISO": [ + 100, + 51200 + ], + "maxISO": 51200, + "launchDate": 1475683200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 11, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 425 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A7 II.txt b/scr/模糊专家系统/scrape/cleaned/Sony A7 II.txt new file mode 100644 index 0000000..0c9a275 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A7 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7 II", + "image": "//cdn.dxomark.com/dakdata/xml/A7_II/vignette3.png", + "brand": "Sony", + "price": 1600, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 50, + 51200 + ], + "maxISO": 51200, + "launchDate": 1416412800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 117 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A7.txt b/scr/模糊专家系统/scrape/cleaned/Sony A7.txt new file mode 100644 index 0000000..47824ee --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A7.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7", + "image": "//cdn.dxomark.com/dakdata/xml/A7/vignette3.png", + "brand": "Sony", + "price": 1700, + "pixelDepth": 24, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381852800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 417, + "autoFocus": 117 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A7R II.txt b/scr/模糊专家系统/scrape/cleaned/Sony A7R II.txt new file mode 100644 index 0000000..8bc9cac --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A7R II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7R II", + "image": "//cdn.dxomark.com/dakdata/xml/A7R_II/vignette3.png", + "brand": "Sony", + "price": 3198, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1433865600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 399 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A7R III.txt b/scr/模糊专家系统/scrape/cleaned/Sony A7R III.txt new file mode 100644 index 0000000..cced6dd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A7R III.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7R III", + "image": "//cdn.dxomark.com/dakdata/xml/A7R_III/vignette3.png", + "brand": "Sony", + "price": 3200, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 100, + 32000 + ], + "maxISO": 32000, + "launchDate": 1508860800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 425 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A7R.txt b/scr/模糊专家系统/scrape/cleaned/Sony A7R.txt new file mode 100644 index 0000000..7d9f771 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A7R.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7R", + "image": "//cdn.dxomark.com/dakdata/xml/A7R/vignette3.png", + "brand": "Sony", + "price": 2300, + "pixelDepth": 36, + "pixels": 36368640, + "ISO": [ + 50, + 25600 + ], + "maxISO": 25600, + "launchDate": 1381852800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 7392, + 4920 + ], + "weight": 408, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A7S II.txt b/scr/模糊专家系统/scrape/cleaned/Sony A7S II.txt new file mode 100644 index 0000000..1fc9721 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A7S II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7S II", + "image": "//cdn.dxomark.com/dakdata/xml/A7S_II/vignette3.png", + "brand": "Sony", + "price": 3000, + "pixelDepth": 12.2, + "pixels": 12121088, + "ISO": [ + 50, + 409600 + ], + "maxISO": 409600, + "launchDate": 1441900800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4256, + 2848 + ], + "weight": 500, + "autoFocus": 169 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony A7S.txt b/scr/模糊专家系统/scrape/cleaned/Sony A7S.txt new file mode 100644 index 0000000..3eb5432 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony A7S.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony A7S", + "image": "//cdn.dxomark.com/dakdata/xml/A7S/vignette3.png", + "brand": "Sony", + "price": 2499, + "pixelDepth": 12.2, + "pixels": 12212224, + "ISO": [ + 50, + 409600 + ], + "maxISO": 409600, + "launchDate": 1396713600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 4288, + 2848 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 100.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 100.txt new file mode 100644 index 0000000..e6b20a0 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 100.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 100", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_100/vignette3.png", + "brand": "Sony", + "price": 427, + "pixelDepth": 10, + "pixels": 10119040, + "ISO": [ + 100, + 1600 + ], + "maxISO": 1600, + "launchDate": 1149436800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 200.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 200.txt new file mode 100644 index 0000000..4090e5a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 200.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 200", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_200/vignette3.png", + "brand": "Sony", + "price": 611, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1199635200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 230.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 230.txt new file mode 100644 index 0000000..6ca555e --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 230.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 230", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_230/vignette3.png", + "brand": "Sony", + "price": 900, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1242576000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 290.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 290.txt new file mode 100644 index 0000000..d77d1ac --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 290.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 290", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_290/vignette3.png", + "brand": "Sony", + "price": 499, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1275321600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 300.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 300.txt new file mode 100644 index 0000000..17aa9b8 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 300.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 300", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_300/vignette3.png", + "brand": "Sony", + "price": 690, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201622400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 330.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 330.txt new file mode 100644 index 0000000..e908ea1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 330.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 330", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_330/vignette3.png", + "brand": "Sony", + "price": 780, + "pixelDepth": 10.2, + "pixels": 10119040, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1242576000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 3880, + 2608 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 350.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 350.txt new file mode 100644 index 0000000..db2ae4c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 350.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 350", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_350/vignette3.png", + "brand": "Sony", + "price": 700, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1201622400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 380.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 380.txt new file mode 100644 index 0000000..79ecf85 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 380.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 380", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_380/vignette3.png", + "brand": "Sony", + "price": 935, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1242576000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 390.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 390.txt new file mode 100644 index 0000000..7fbe273 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 390.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 390", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_390/vignette3.png", + "brand": "Sony", + "price": 620, + "pixelDepth": 14.2, + "pixels": 14131200, + "ISO": [ + 100, + 3200 + ], + "maxISO": 3200, + "launchDate": 1276012800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4600, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 450.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 450.txt new file mode 100644 index 0000000..9992ef2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 450.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 450", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_450/vignette3.png", + "brand": "Sony", + "price": 680, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1262620800000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 9 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 500.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 500.txt new file mode 100644 index 0000000..81a95c2 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 500.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 500", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_500/vignette3.png", + "brand": "Sony", + "price": 699, + "pixelDepth": 12.3, + "pixels": 12166656, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1251302400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4272, + 2848 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 550.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 550.txt new file mode 100644 index 0000000..41f77bc --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 550.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 550", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_550/vignette3.png", + "brand": "Sony", + "price": 899, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1251302400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 560.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 560.txt new file mode 100644 index 0000000..160d1fd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 560.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 560", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_560/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 580.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 580.txt new file mode 100644 index 0000000..f46c54c --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 580.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 580", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_580/vignette3.png", + "brand": "Sony", + "price": 800, + "pixelDepth": 16.2, + "pixels": 16032768, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4912, + 3264 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 700.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 700.txt new file mode 100644 index 0000000..905cfb1 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 700.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 700", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_700/vignette3.png", + "brand": "Sony", + "price": 1300, + "pixelDepth": 12.2, + "pixels": 12246528, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1189008000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4288, + 2856 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 850.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 850.txt new file mode 100644 index 0000000..815edfd --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 850.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 850", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_850/vignette3.png", + "brand": "Sony", + "price": 2000, + "pixelDepth": 24.6, + "pixels": 24611840, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1251302400000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 3, + "resolution": [ + 6080, + 4048 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Alpha 900.txt b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 900.txt new file mode 100644 index 0000000..543f34f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Alpha 900.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Alpha 900", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_900/vignette3.png", + "brand": "Sony", + "price": 3000, + "pixelDepth": 24.6, + "pixels": 24611840, + "ISO": [ + 100, + 6400 + ], + "maxISO": 6400, + "launchDate": 1220889600000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6080, + 4048 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC RX100 III.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC RX100 III.txt new file mode 100644 index 0000000..150332d --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC RX100 III.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC RX100 III", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC_RX100_III/vignette3.png", + "brand": "Sony", + "price": 800, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1400169600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3672 + ], + "weight": 263, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1.txt new file mode 100644 index 0000000..c4beeef --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX1", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1/vignette3.png", + "brand": "Sony", + "price": 2800, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347379200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 453, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX10 II.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX10 II.txt new file mode 100644 index 0000000..9012d30 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX10 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX10 II", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10_II/vignette3.png", + "brand": "Sony", + "price": 1298, + "pixelDepth": 20.2, + "pixels": 20181312, + "ISO": [ + 64, + 25600 + ], + "maxISO": 25600, + "launchDate": 1433865600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5496, + 3672 + ], + "weight": 770, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX10.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX10.txt new file mode 100644 index 0000000..310e6eb --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX10.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX10", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10/vignette3.png", + "brand": "Sony", + "price": 1300, + "pixelDepth": 20, + "pixels": 20181312, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1381852800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3672 + ], + "weight": 756, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 II.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 II.txt new file mode 100644 index 0000000..4091730 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100 II", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_II/vignette3.png", + "brand": "Sony", + "price": 750, + "pixelDepth": 20.2, + "pixels": 20181312, + "ISO": [ + 160, + 25600 + ], + "maxISO": 25600, + "launchDate": 1372262400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 5496, + 3672 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 IV.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 IV.txt new file mode 100644 index 0000000..714baaa --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 IV.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100 IV", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_IV/vignette3.png", + "brand": "Sony", + "price": 948, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 125, + 25600 + ], + "maxISO": 25600, + "launchDate": 1433865600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 16, + "resolution": [ + 5496, + 3672 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 V.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 V.txt new file mode 100644 index 0000000..110a18b --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100 V.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100 V", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_V/vignette3.png", + "brand": "Sony", + "price": 1000, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 80, + 12800 + ], + "maxISO": 12800, + "launchDate": 1475683200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 24, + "resolution": [ + 5496, + 3672 + ], + "weight": 272, + "autoFocus": 315 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100.txt new file mode 100644 index 0000000..4af2816 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX100.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX100", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 20.2, + "pixels": 20210688, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1338912000000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 5504, + 3672 + ], + "weight": 213, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1R II.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1R II.txt new file mode 100644 index 0000000..cca6c16 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1R II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX1R II", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R_II/vignette3.png", + "brand": "Sony", + "price": 3300, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 50, + 102400 + ], + "maxISO": 102400, + "launchDate": 1444752000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 399 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1R.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1R.txt new file mode 100644 index 0000000..245c0ff --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cyber-shot DSC-RX1R.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cyber-shot DSC-RX1R", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R/vignette3.png", + "brand": "Sony", + "price": 2800, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1372262400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 5, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony Cybershot DSC-RX10 III.txt b/scr/模糊专家系统/scrape/cleaned/Sony Cybershot DSC-RX10 III.txt new file mode 100644 index 0000000..51e4ce5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony Cybershot DSC-RX10 III.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony Cybershot DSC-RX10 III", + "image": "//cdn.dxomark.com/dakdata/xml/Cybershot_DSC-RX10_III/vignette3.png", + "brand": "Sony", + "price": 1500, + "pixelDepth": 20.1, + "pixels": 20181312, + "ISO": [ + 64, + 128000 + ], + "maxISO": 128000, + "launchDate": 1459180800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 14, + "resolution": [ + 5496, + 3672 + ], + "weight": 1051, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-3N.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-3N.txt new file mode 100644 index 0000000..ae16335 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-3N.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-3N", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-3N/vignette3.png", + "brand": "Sony", + "price": 670, + "pixelDepth": 16, + "pixels": 16144128, + "ISO": [ + 200, + 16000 + ], + "maxISO": 16000, + "launchDate": 1361289600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4928, + 3276 + ], + "weight": 210, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-5N.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-5N.txt new file mode 100644 index 0000000..f383557 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-5N.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-5N", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5N/vignette3.png", + "brand": "Sony", + "price": 860, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1314115200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4928, + 3276 + ], + "weight": 269, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-5R.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-5R.txt new file mode 100644 index 0000000..08389c6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-5R.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-5R", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5R/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1346169600000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4928, + 3276 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-5T.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-5T.txt new file mode 100644 index 0000000..df7f08f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-5T.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-5T", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5T/vignette3.png", + "brand": "Sony", + "price": 549, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1377532800000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 4928, + 3276 + ], + "weight": 500, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-6.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-6.txt new file mode 100644 index 0000000..b1aa2f6 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-6.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-6", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-6/vignette3.png", + "brand": "Sony", + "price": 848, + "pixelDepth": 16.1, + "pixels": 16032768, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347379200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4912, + 3264 + ], + "weight": 287, + "autoFocus": 99 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-7.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-7.txt new file mode 100644 index 0000000..33d1881 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-7.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-7", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-7/vignette3.png", + "brand": "Sony", + "price": 1720, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 6024, + 4024 + ], + "weight": 400, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-C3.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-C3.txt new file mode 100644 index 0000000..3053762 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-C3.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-C3", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-C3/vignette3.png", + "brand": "Sony", + "price": 770, + "pixelDepth": 16.2, + "pixels": 16163840, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1307462400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 2.5, + "resolution": [ + 4928, + 3280 + ], + "weight": 225, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX-F3.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX-F3.txt new file mode 100644 index 0000000..4239f97 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX-F3.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX-F3", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-F3/vignette3.png", + "brand": "Sony", + "price": 600, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1337184000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 6, + "resolution": [ + 4928, + 3276 + ], + "weight": 255, + "autoFocus": 25 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX3.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX3.txt new file mode 100644 index 0000000..1447610 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX3.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX3", + "image": "//cdn.dxomark.com/dakdata/xml/NEX3/vignette3.png", + "brand": "Sony", + "price": 550, + "pixelDepth": 14.2, + "pixels": 14155776, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1272643200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 5, + "resolution": [ + 4608, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony NEX5.txt b/scr/模糊专家系统/scrape/cleaned/Sony NEX5.txt new file mode 100644 index 0000000..49f3cef --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony NEX5.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony NEX5", + "image": "//cdn.dxomark.com/dakdata/xml/NEX5/vignette3.png", + "brand": "Sony", + "price": 650, + "pixelDepth": 14.16, + "pixels": 14155776, + "ISO": [ + 200, + 12800 + ], + "maxISO": 12800, + "launchDate": 1272643200000, + "touchScreen": null, + "video": null, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4608, + 3072 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 33.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 33.txt new file mode 100644 index 0000000..277c805 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 33.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 33", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_33/vignette3.png", + "brand": "Sony", + "price": 599, + "pixelDepth": 14.2, + "pixels": 14033152, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4592, + 3056 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 35.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 35.txt new file mode 100644 index 0000000..8b6466f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 35.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 35", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_35/vignette3.png", + "brand": "Sony", + "price": 600, + "pixelDepth": 16, + "pixels": 16032768, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1307462400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 2.5, + "resolution": [ + 4912, + 3264 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 37.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 37.txt new file mode 100644 index 0000000..cc565ae --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 37.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 37", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_37/vignette3.png", + "brand": "Sony", + "price": 500, + "pixelDepth": 16, + "pixels": 16144128, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1337184000000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 7, + "resolution": [ + 4928, + 3276 + ], + "weight": 448, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 55.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 55.txt new file mode 100644 index 0000000..7177688 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 55.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 55", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_55/vignette3.png", + "brand": "Sony", + "price": 750, + "pixelDepth": 16.2, + "pixels": 16032768, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1282579200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 10, + "resolution": [ + 4912, + 3264 + ], + "weight": 500, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 57.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 57.txt new file mode 100644 index 0000000..188300f --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 57.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 57", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_57/vignette3.png", + "brand": "Sony", + "price": 700, + "pixelDepth": 16.1, + "pixels": 16144128, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1331481600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": null, + "frameRate": 12, + "resolution": [ + 4928, + 3276 + ], + "weight": 618, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 58.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 58.txt new file mode 100644 index 0000000..2d154c9 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 58.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 58", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_58/vignette3.png", + "brand": "Sony", + "price": 735, + "pixelDepth": 20.1, + "pixels": 20093376, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1361289600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 5496, + 3656 + ], + "weight": 492, + "autoFocus": 15 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 65.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 65.txt new file mode 100644 index 0000000..5f14e9a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 65.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 65", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_65/vignette3.png", + "brand": "Sony", + "price": 1290, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 16000 + ], + "maxISO": 16000, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 6024, + 4024 + ], + "weight": 622, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 68.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 68.txt new file mode 100644 index 0000000..733986a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 68.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 68", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_68/vignette3.png", + "brand": "Sony", + "price": 600, + "pixelDepth": 24, + "pixels": 24192384, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1446652800000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 8, + "resolution": [ + 6024, + 4016 + ], + "weight": 500, + "autoFocus": 79 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 77 II.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 77 II.txt new file mode 100644 index 0000000..80fa00a --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 77 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 77 II", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77_II/vignette3.png", + "brand": "Sony", + "price": 1200, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1398873600000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 6024, + 4024 + ], + "weight": 647, + "autoFocus": 79 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 77.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 77.txt new file mode 100644 index 0000000..a802f52 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 77.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 77", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77/vignette3.png", + "brand": "Sony", + "price": 1399, + "pixelDepth": 24.3, + "pixels": 24337152, + "ISO": [ + 50, + 16000 + ], + "maxISO": 16000, + "launchDate": 1314115200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 6048, + 4024 + ], + "weight": 653, + "autoFocus": 19 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 99 II.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 99 II.txt new file mode 100644 index 0000000..b8093ea --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 99 II.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 99 II", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99_II/vignette3.png", + "brand": "Sony", + "price": 3200, + "pixelDepth": 42.4, + "pixels": 42560000, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1474214400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 12, + "resolution": [ + 8000, + 5320 + ], + "weight": 500, + "autoFocus": 399 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 99.txt b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 99.txt new file mode 100644 index 0000000..07e72b5 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony SLT Alpha 99.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony SLT Alpha 99", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99/vignette3.png", + "brand": "Sony", + "price": 2800, + "pixelDepth": 24.3, + "pixels": 24240576, + "ISO": [ + 100, + 25600 + ], + "maxISO": 25600, + "launchDate": 1347379200000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": true, + "isMetal": true, + "frameRate": 10, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/Sony a9.txt b/scr/模糊专家系统/scrape/cleaned/Sony a9.txt new file mode 100644 index 0000000..dbac5e3 --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/Sony a9.txt @@ -0,0 +1,28 @@ +{ + "name": "Sony a9", + "image": "//cdn.dxomark.com/dakdata/xml/a9/vignette3.png", + "brand": "Sony", + "price": 4500, + "pixelDepth": 24.2, + "pixels": 24240576, + "ISO": [ + 50, + 204800 + ], + "maxISO": 204800, + "launchDate": 1492531200000, + "touchScreen": true, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": true, + "gps": null, + "isMetal": true, + "frameRate": 20, + "resolution": [ + 6024, + 4024 + ], + "weight": 500, + "autoFocus": 693 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/cleaned/YUNEEC Breeze 4K.txt b/scr/模糊专家系统/scrape/cleaned/YUNEEC Breeze 4K.txt new file mode 100644 index 0000000..cc42cef --- /dev/null +++ b/scr/模糊专家系统/scrape/cleaned/YUNEEC Breeze 4K.txt @@ -0,0 +1,28 @@ +{ + "name": "YUNEEC Breeze 4K", + "image": "//cdn.dxomark.com/dakdata/xml/Breeze_4K/vignette3.png", + "brand": "YUNEEC", + "price": 380, + "pixelDepth": 13, + "pixels": 12979200, + "ISO": [ + 100, + 12800 + ], + "maxISO": 12800, + "launchDate": 1472486400000, + "touchScreen": null, + "video": true, + "flash": null, + "waterproof": null, + "bluetooth": null, + "gps": null, + "isMetal": true, + "frameRate": 4, + "resolution": [ + 4160, + 3120 + ], + "weight": 500, + "autoFocus": 6 +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/package.json b/scr/模糊专家系统/scrape/package.json new file mode 100644 index 0000000..5576637 --- /dev/null +++ b/scr/模糊专家系统/scrape/package.json @@ -0,0 +1,16 @@ +{ + "name": "scrape", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "promise-queue": "^2.2.3", + "request": "^2.83.0" + } +} diff --git a/scr/模糊专家系统/scrape/scrape.js b/scr/模糊专家系统/scrape/scrape.js new file mode 100644 index 0000000..2da4f16 --- /dev/null +++ b/scr/模糊专家系统/scrape/scrape.js @@ -0,0 +1,37 @@ +let request = require('request').defaults({ 'proxy': "http://127.0.0.1:1080" }); +let Queue = require('promise-queue'); +let fs = require('fs'); +let path = require('path'); +let queue = new Queue(10); //最多同时10线程采集 + +request('https://www.dxomark.com/daksensor/ajax/jsontested', //获得相机列表 + (error, response, body) => { + let cameraList = JSON.parse(body).data; + let finishedCount = 0; + cameraList.forEach(cameraMeta => { + let camera = Object.assign({}, cameraMeta); + let link = `https://www.dxomark.com${camera.link}---Specifications`; //拼合对应的规格网址 + queue.add(() => new Promise(res => { //把request放入队列,以保证同时http请求不超过10个 + let doRequest = () => { + request(link, (error, response, body) => { + if (error) { //如果失败则重试 + console.log("retrying.." + camera.name); + doRequest(); + return; + } + let specMatcherRegexp = /descriptifgauche.+?>([\s\S]+?)<\/td>[\s\S]+?descriptif_data.+?>([\s\S]+?)<\/td>/img; + let match = specMatcherRegexp.exec(body); + while (match) { //用正则表达式匹配table里的每一个项目,并添加至采集结果中 + camera[match[1]] = match[2]; + match = specMatcherRegexp.exec(body); + } + fs.writeFileSync(path.join('./scraped', camera.name + '.txt'), JSON.stringify(camera, null, 4), { encoding: "UTF8" }); + finishedCount++; + console.log(`Finished ${finishedCount}/${cameraList.length}: ${camera.name}`); + res(); + }) + }; + doRequest(); + })); + }); + }); \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS-1D X Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS-1D X Mark II.txt new file mode 100644 index 0000000..2216f68 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS-1D X Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 1071, + "price": 6000, + "year": "2016", + "brand": "Canon", + "rankDxo": 88, + "rankColor": 24.1, + "rankDyn": 13.5, + "rankLln": 3207, + "rankDxo_ranking": 29, + "rankColor_ranking": 57, + "rankDyn_ranking": 47, + "rankLln_ranking": 10, + "name": "Canon EOS-1D X Mark II", + "pixelDepth": 20.2, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Feb. 2016", + "launchDateGraph": "2016-02-02", + "sensorraw": 20.17, + "link": "/Cameras/Canon/EOS-1D-X-Mark-II", + "chapo": " Specifications and featuresIn addition to the camera’s 20.2-Mpix sensor and dual Digic processors, the new Canon EOS-1D X Mark II features a 61-point high-density reticular AF II system (all user-selectable with 41 cross-type sensors). All of the sensors support AF for lenses with an effective aperture of f/8, and that includes lenses like the 600mm f4 with a 2x teleconverter. The camera is also the first EOS-1 model to adopt a 360Kpixel RGB+IR metering sensor for enhanced facial/scene recognition as well as subject tracking. The new camera adopts a 3.2-inch 1.62m-dot touchscreen LCD monitor, and features some high-end", + "linkReview": "https://www.dxomark.com/canon-eos-1d-x-mark-ii-sensor-review-new-class-leader/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/_EOS-1D_X_Mark_II/vignette3.png", + "Type": "Professional ", + "Announced": "Feb. 2016  ", + "Indicative price (USD)": "\n 6000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3670  \n ", + "Sensor photo detectors (Mpix) ": "20.17  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 409600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "16.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "8.2.2 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": "1340", + "Battery type": "Li-ion, LP-E19 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.76 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1620000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus, One-Shot AF, Predicitve Al Servo AF (Al Servo AF III+), Manual focus ", + "Number of autofocus points": "61 ", + "Exposure bracketing": "+/- 3 stops in 1/3- or 1/2-stop ", + "Exposure compensation": "+/- 5 stops in 1/3- or 1/2-stop increments ", + "Drive modes": "Single, High-speed continuous,\nLow-speed continuous,\nSilent single,\nSilent high-speed continuous, \nSilent low-speed continuous, self-timer ", + "Buffer size": "Full (JPEG), 170 (RAW), 81 (RAW+JPEG) ", + "Recording medium": "CF Card (Type I; compatible with UDMA 7 CF cards) and CFas Card (CFast 2.0 supported) ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": " ", + "Connectivity": "AV/USB 3.0 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": " 4096 x 2160 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "AVC/H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1000D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1000D.txt new file mode 100644 index 0000000..7a7b15f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1000D.txt @@ -0,0 +1,96 @@ +{ + "id": 270, + "price": 540, + "year": "2008", + "brand": "Canon", + "rankDxo": 62, + "rankColor": 22, + "rankDyn": 10.9, + "rankLln": 719, + "rankDxo_ranking": 239, + "rankColor_ranking": 227, + "rankDyn_ranking": 285, + "rankLln_ranking": 178, + "name": "Canon EOS 1000D", + "pixelDepth": 10.1, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jun. 2008", + "launchDateGraph": "2008-06-10", + "sensorraw": 10.16, + "link": "/Cameras/Canon/EOS-1000D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1000D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2008  ", + "Indicative price (USD)": "\n 540  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3906 x 2602  \n ", + "Sensor photo detectors (Mpix) ": "10.16  ", + "Sensor size (mm)": "14.8 x 22.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1.0.3 ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 100D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 100D.txt new file mode 100644 index 0000000..0c1369f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 100D.txt @@ -0,0 +1,96 @@ +{ + "id": 871, + "price": 650, + "year": "2013", + "brand": "Canon", + "rankDxo": 63, + "rankColor": 21.8, + "rankDyn": 11.3, + "rankLln": 843, + "rankDxo_ranking": 220, + "rankColor_ranking": 237, + "rankDyn_ranking": 244, + "rankLln_ranking": 138, + "name": "Canon EOS 100D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Mar. 2013", + "launchDateGraph": "2013-03-21", + "sensorraw": 18.1, + "link": "/Cameras/Canon/EOS-100D", + "chapo": " Introduction Designed to appeal those that might be tempted by the diminutive dimensions of mirrorless models but want the benefits of an optical viewfinder, measuring just 116.8 x 90.7 x 69.4mm and weighing 407g with battery and SD card, the Canon EOS 100D / Rebel SL1 / Kiss X7 is both seriously small and light in weight. On the inside, the camera sports a second-generation ‘Hybrid” 18-Mpix CMOS AF II sensor featuring both Phase/Contrast detection AF, but with a wider detection area than the similar sensor found in upper entry-level EOS 700D, introduced at the same", + "linkReview": "https://www.dxomark.com/canon-eos-100d-rebel-sl1-kiss-x7-review-diminutive-size/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_100D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2013  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5208 x 3476  \n ", + "Sensor photo detectors (Mpix) ": "18.1  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "370", + "Battery type": "Lithium-Ion LP-E12 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic, Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.87 ", + "View finder coverage": "95 ", + "Mirror lockup": " ", + "View finder diopter": " -3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, AI Servo AF, MF ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-2 (3 frames at 1/3 EV, 1/2 EV steps) ", + "Drive modes": "Silent Single Shooting, Silent Continuous Shooting, One-Shot AF ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 10D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 10D.txt new file mode 100644 index 0000000..169a182 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 10D.txt @@ -0,0 +1,96 @@ +{ + "id": 437, + "price": 347, + "year": "2003", + "brand": "Canon", + "rankDxo": 57, + "rankColor": 21.1, + "rankDyn": 10.9, + "rankLln": 571, + "rankDxo_ranking": 258, + "rankColor_ranking": 280, + "rankDyn_ranking": 289, + "rankLln_ranking": 222, + "name": "Canon EOS 10D", + "pixelDepth": 6.3, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2003", + "launchDateGraph": "2003-02-27", + "sensorraw": 6.52, + "link": "/Cameras/Canon/EOS-10D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_10D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2003  ", + "Indicative price (USD)": "\n 347  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3152 x 2068  \n ", + "Sensor photo detectors (Mpix) ": "6.52  ", + "Sensor size (mm)": "15.1 x 22.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "2.0.0 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1100D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1100D.txt new file mode 100644 index 0000000..93bfad3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1100D.txt @@ -0,0 +1,96 @@ +{ + "id": 693, + "price": 599, + "year": "2011", + "brand": "Canon", + "rankDxo": 62, + "rankColor": 21.9, + "rankDyn": 11, + "rankLln": 755, + "rankDxo_ranking": 233, + "rankColor_ranking": 229, + "rankDyn_ranking": 277, + "rankLln_ranking": 169, + "name": "Canon EOS 1100D", + "pixelDepth": 12.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Feb. 2011", + "launchDateGraph": "2011-02-07", + "sensorraw": 12.51, + "link": "/Cameras/Canon/EOS-1100D", + "chapo": " Introduction As we will see later, although the EOS 1100D uses different and more recent hardware, its metrics are hardly improved. But before examining the details, we will spend some time analyzing not just how the new Rebel stands on the shelves against the fierce competition of the Nikon D3100 and the Sony SLT Alpha 33, but also against another category entirely: large-sensor mirrorless cameras such as the Sony NEX 5, which may be a real threat to the entry-level DSLR segment. Compared to Nikon D3100 &amp; Sony SLT A33How does", + "linkReview": "https://www.dxomark.com/canon-eos-1100d-dxomark-review-for-the-new-canon-entry-level-body/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1100D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2011  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4352 x 2874  \n ", + "Sensor photo detectors (Mpix) ": "12.51  ", + "Sensor size (mm)": "14.8 x 22.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3 or 2  ", + "Live view ": "yes ", + "Stabilization ": "No ", + "Firmware": "1.0.4 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "495", + "Battery type": "Battery Pack LP-E10 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Optical (pentamirror) ", + "View finder magnification": "0.8 ", + "View finder coverage": "95 ", + "Mirror lockup": "Quick-return half mirror (transmittance: reflectance ratio of 40:60) ", + "View finder diopter": "-2.5 to +0.5 ", + "Monitor type": "LCD ", + "Monitor size": "2.7 ", + "Monitor pixel": "230000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " One-Shot AF\n Predictive AI Servo AF\n AI Focus AF (Switches between One-Shot AF and AI SERVO AF automatically) \nManual focus (MF) ", + "Number of autofocus points": "9 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single shooting, continuous shooting, 10-sec. self-timer, 2-sec. self-timer, continuous shooting after 10-sec. self-timer (2 to 10 shots) ", + "Buffer size": "830 ", + "Recording medium": " SD/SDHC/SDXC card ", + "Image format": "JPG, RAW(CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/E3 connector/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1200D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1200D.txt new file mode 100644 index 0000000..ecb5093 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1200D.txt @@ -0,0 +1,96 @@ +{ + "id": 940, + "price": 500, + "year": "2014", + "brand": "Canon", + "rankDxo": 63, + "rankColor": 21.9, + "rankDyn": 11.3, + "rankLln": 724, + "rankDxo_ranking": 223, + "rankColor_ranking": 228, + "rankDyn_ranking": 239, + "rankLln_ranking": 174, + "name": "Canon EOS 1200D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Feb. 2014", + "launchDateGraph": "2014-02-12", + "sensorraw": 18.02, + "link": "/Cameras/Canon/EOS-1200D", + "chapo": " Introduction While Canon has regularly updated the upper entry-level EOS XXXD (Rebel TXi) model, the maker has only periodically upgraded its entry-level model. As a result the 18-Mpix EOS 1200D (Rebel T5) is an upgrade of the 12-Mpix EOS 1100D (Rebel T3) introduced back in 2011.As well as adopting the higher-resolution sensor found in the maker’s past and present EOS XXXD (Rebel TXi) models, the EOS 1200D (Rebel T5) also features the older-generation Digic 4 level image processor rather than the latest more capable Digic 5. Still, this means the camera adds the ‘cinematic’ 24fps frame", + "linkReview": "https://www.dxomark.com/canon-eos-1200d-sensor-review-rebel-with-a-cause/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1200D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2014  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5202 x 3465  \n ", + "Sensor photo detectors (Mpix) ": "18.02  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.61 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "435", + "Battery type": "Li-Ion, LP-E10 ", + "Battery weight (gr)": "43", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.8 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2.5 to +0.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Predictive AI Servo AF, AI Focus AF (Switches between One-Shot AF and AI Servo AF automatically), Manual focus (MF) ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3EV ", + "Drive modes": "Single shooting, Continuous shooting, 10-sec. self-timer, 2-sec. self-timer, Continuous shooting after 10-sec. self-timer (2 to 10 shots) ", + "Buffer size": "69(JPEG), 6(RAW), 4(RAW+JPEG) ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV/USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark II N.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark II N.txt new file mode 100644 index 0000000..ca7d598 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark II N.txt @@ -0,0 +1,96 @@ +{ + "id": 435, + "price": 5986, + "year": "2005", + "brand": "Canon", + "rankDxo": 66, + "rankColor": 22.3, + "rankDyn": 11.2, + "rankLln": 975, + "rankDxo_ranking": 186, + "rankColor_ranking": 200, + "rankDyn_ranking": 259, + "rankLln_ranking": 112, + "name": "Canon EOS 1D Mark II N", + "pixelDepth": 8.2, + "sensor": "sensor_apsh", + "type": "professional", + "status": "TESTED", + "launchDate": "Aug. 2005", + "launchDateGraph": "2005-08-22", + "sensorraw": 8.49, + "link": "/Cameras/Canon/EOS-1D-Mark-II-N", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II_N/vignette3.png", + "Type": "Professional ", + "Announced": "Aug. 2005  ", + "Indicative price (USD)": "\n 5986  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3596 x 2360  \n ", + "Sensor photo detectors (Mpix) ": "8.49  ", + "Sensor size (mm)": "19.1 x 28.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.3 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "8.5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.0.2 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark II.txt new file mode 100644 index 0000000..fd3c66d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 431, + "price": 1700, + "year": "2004", + "brand": "Canon", + "rankDxo": 66, + "rankColor": 22.3, + "rankDyn": 11.1, + "rankLln": 1003, + "rankDxo_ranking": 187, + "rankColor_ranking": 203, + "rankDyn_ranking": 262, + "rankLln_ranking": 109, + "name": "Canon EOS 1D Mark II", + "pixelDepth": 8.2, + "sensor": "sensor_apsh", + "type": "professional", + "status": "TESTED", + "launchDate": "Jan. 2004", + "launchDateGraph": "2004-01-29", + "sensorraw": 8.49, + "link": "/Cameras/Canon/EOS-1D-Mark-II", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_II/vignette3.png", + "Type": "Professional ", + "Announced": "Jan. 2004  ", + "Indicative price (USD)": "\n 1700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3596 x 2360  \n ", + "Sensor photo detectors (Mpix) ": "8.49  ", + "Sensor size (mm)": "19 x 29 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.3 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "8.5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark III.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark III.txt new file mode 100644 index 0000000..429db78 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark III.txt @@ -0,0 +1,96 @@ +{ + "id": 434, + "price": 4050, + "year": "2007", + "brand": "Canon", + "rankDxo": 71, + "rankColor": 22.7, + "rankDyn": 11.7, + "rankLln": 1078, + "rankDxo_ranking": 150, + "rankColor_ranking": 161, + "rankDyn_ranking": 196, + "rankLln_ranking": 98, + "name": "Canon EOS 1D Mark III", + "pixelDepth": 10.1, + "sensor": "sensor_apsh", + "type": "professional", + "status": "TESTED", + "launchDate": "Feb. 2007", + "launchDateGraph": "2007-02-22", + "sensorraw": 10.45, + "link": "/Cameras/Canon/EOS-1D-Mark-III", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_III/vignette3.png", + "Type": "Professional ", + "Announced": "Feb. 2007  ", + "Indicative price (USD)": "\n 4050  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3984 x 2622  \n ", + "Sensor photo detectors (Mpix) ": "10.45  ", + "Sensor size (mm)": "18.7 x 28.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.3 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "10  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1.0.8 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark IV.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark IV.txt new file mode 100644 index 0000000..561a71c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1D Mark IV.txt @@ -0,0 +1,96 @@ +{ + "id": 629, + "price": 5840, + "year": "2009", + "brand": "Canon", + "rankDxo": 74, + "rankColor": 22.8, + "rankDyn": 12, + "rankLln": 1320, + "rankDxo_ranking": 125, + "rankColor_ranking": 152, + "rankDyn_ranking": 175, + "rankLln_ranking": 64, + "name": "Canon EOS 1D Mark IV", + "pixelDepth": 16.1, + "sensor": "sensor_apsh", + "type": "professional", + "status": "TESTED", + "launchDate": "Oct. 2009", + "launchDateGraph": "2009-10-20", + "sensorraw": 15.98, + "link": "/Cameras/Canon/EOS-1D-Mark-IV", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1D_Mark_IV/vignette3.png", + "Type": "Professional ", + "Announced": "Oct. 2009  ", + "Indicative price (USD)": "\n 5840  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4896 x 3264  \n ", + "Sensor photo detectors (Mpix) ": "15.98  ", + "Sensor size (mm)": "18.6 x 27.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.3 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 102400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1.0.4 ", + "Dust cleaning": "yes ", + "Mount type": "EOS EF mount  ", + "Weight (gr)": "1180", + "Battery type": "Li-Ion ", + "Battery weight (gr)": "50", + "Tropicalization": " ", + "Camera material": "Magnesium alloy shell over diecast aluminium frame, anti-slip fake leather  ", + "Mount material": " Stainless steel ", + "View finder type": "Optical  ", + "View finder magnification": "0.76 ", + "View finder coverage": "100 ", + "Mirror lockup": "yes ", + "View finder diopter": "Pentaprism, 100% coverage, -3 to +1 diopters ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "One-shot, AI Servo, Manual ", + "Autofocus modes": "TTL-AREA-SIR with 45-point CMOS sensor ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "63 area eval ", + "Exposure compensation": "-3 to +3 EV in 1/3 EV or 1/2 EV steps ", + "Drive modes": "single, continuous (high or low speed), self timer (2 or 10 s), silent ", + "Buffer size": "JPEG Large (Compression rate 8): Approx. 85 shots, RAW: Approx. 26 shots,RAW+JPEG Large (Compression rate 8): Approx. 20 shots ", + "Recording medium": "Compact Flash (Type I or II), UDMA, SD/SDHC card ", + "Image format": "RAW, mRAW, sRAW, JPEG ", + "White balance bracketing": "-3 to +3 EV steps ", + "Connectivity": "USB, firewire, video ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": " 1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": " H.264  ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds Mark II.txt new file mode 100644 index 0000000..80dbcec --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 191, + "price": 6950, + "year": "2004", + "brand": "Canon", + "rankDxo": 74, + "rankColor": 23.3, + "rankDyn": 11.3, + "rankLln": 1480, + "rankDxo_ranking": 120, + "rankColor_ranking": 118, + "rankDyn_ranking": 235, + "rankLln_ranking": 48, + "name": "Canon EOS 1Ds Mark II", + "pixelDepth": 16.6, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2004", + "launchDateGraph": "2004-09-21", + "sensorraw": 17.1, + "link": "/Cameras/Canon/EOS-1Ds-Mark-II", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_II/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2004  ", + "Indicative price (USD)": "\n 6950  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5108 x 3348  \n ", + "Sensor photo detectors (Mpix) ": "17.1  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "4  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.1.4 ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds Mark III.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds Mark III.txt new file mode 100644 index 0000000..65a9e96 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds Mark III.txt @@ -0,0 +1,96 @@ +{ + "id": 436, + "price": 7100, + "year": "2007", + "brand": "Canon", + "rankDxo": 80, + "rankColor": 24, + "rankDyn": 12, + "rankLln": 1663, + "rankDxo_ranking": 70, + "rankColor_ranking": 62, + "rankDyn_ranking": 171, + "rankLln_ranking": 44, + "name": "Canon EOS 1Ds Mark III", + "pixelDepth": 21.1, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Aug. 2007", + "launchDateGraph": "2007-08-20", + "sensorraw": 21.56, + "link": "/Cameras/Canon/EOS-1Ds-Mark-III", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds_Mark_III/vignette3.png", + "Type": "Professional ", + "Announced": "Aug. 2007  ", + "Indicative price (USD)": "\n 7100  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5712 x 3774  \n ", + "Sensor photo detectors (Mpix) ": "21.56  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5 or 3  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1.0.6 ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds.txt new file mode 100644 index 0000000..660ea15 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Ds.txt @@ -0,0 +1,96 @@ +{ + "id": 516, + "price": 2700, + "year": "2002", + "brand": "Canon", + "rankDxo": 63, + "rankColor": 21.8, + "rankDyn": 11, + "rankLln": 954, + "rankDxo_ranking": 229, + "rankColor_ranking": 235, + "rankDyn_ranking": 273, + "rankLln_ranking": 116, + "name": "Canon EOS 1Ds", + "pixelDepth": 11, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2002", + "launchDateGraph": "2002-09-24", + "sensorraw": 11.09, + "link": "/Cameras/Canon/EOS-1Ds", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Ds/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2002  ", + "Indicative price (USD)": "\n 2700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4082 x 2718  \n ", + "Sensor photo detectors (Mpix) ": "11.09  ", + "Sensor size (mm)": "23.8 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1233 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.0.3 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF  ", + "Weight (gr)": "1265", + "Battery type": "ni-MH ", + "Battery weight (gr)": "335", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Optical  ", + "View finder magnification": "0.7 ", + "View finder coverage": " ", + "Mirror lockup": "yes ", + "View finder diopter": "Pentaprism, 100% coverage, -3 to +1 diopters ", + "Monitor type": "LCD ", + "Monitor size": "2 ", + "Monitor pixel": "120000 ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "One-shot, AI Servo, Manual ", + "Autofocus modes": "TTL-AREA-SIR with 45-point CMOS sensor ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "21 area eval ", + "Exposure compensation": "-3 to +3 EV in 1/3 EV ", + "Drive modes": "single, continuous, self timer (2 or 10 s) ", + "Buffer size": " ", + "Recording medium": "CF (I - II) cards ", + "Image format": "RAW, JPEG ", + "White balance bracketing": "-3 to +3 EV steps ", + "Connectivity": "firewire ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 1Dx.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Dx.txt new file mode 100644 index 0000000..4e5beb1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 1Dx.txt @@ -0,0 +1,96 @@ +{ + "id": 753, + "price": 6800, + "year": "2011", + "brand": "Canon", + "rankDxo": 82, + "rankColor": 23.8, + "rankDyn": 11.8, + "rankLln": 2786, + "rankDxo_ranking": 61, + "rankColor_ranking": 73, + "rankDyn_ranking": 183, + "rankLln_ranking": 23, + "name": "Canon EOS 1Dx", + "pixelDepth": 18.1, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Oct. 2011", + "launchDateGraph": "2011-10-18", + "sensorraw": 18.38, + "link": "/Cameras/Canon/EOS-1Dx", + "chapo": " Introduction After months of rumors swirling about, today Canon finally launched its new flagship DSLR: the Canon EOS 1D X. This new camera will replace not just the EOS 1Ds but also all EOS 1D current models... and will bring the APS-H sensor size to an end.This new high-end camera is based on an 18MPix CMOS full-frame sensor and can reach a shooting speed of 14 fps (12 fps with auto-focus). It also features a high-precision AF system with 61 points, and 41 high-sensitivity cross-type sensors to ensure a very", + "linkReview": "https://www.dxomark.com/canon-eos-1d-x-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_1Dx/vignette3.png", + "Type": "Professional ", + "Announced": "Oct. 2011  ", + "Indicative price (USD)": "\n 6800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5202 x 3533  \n ", + "Sensor photo detectors (Mpix) ": "18.38  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 204800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "14.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": "Rechargeable Li-ion Battery LP-E4N (supplied), 1xCR2025 for date & settings ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.76 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One Shot\nAI Servo ", + "Number of autofocus points": "61 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/-5 EV in 1/3 or 1/2 stop increments (can be combined with AEB). ", + "Drive modes": "Single, Continuous L, Continuous H, Self timer (2s+remote, 10s+remote), Silent single shooting ", + "Buffer size": " ", + "Recording medium": "2x CompactFlash Type I/II (incompatible with Microdrive) (UDMA 7 compatible) ", + "Image format": "JPEG: 10 compression options (Exif 2.3 compliant) / Design rule for Camera File system (2.0),\nRAW: RAW, sRAW (14bit, Canon original RAW 2nd edition),\nDigital Print Order Format [DPOF] Version 1.1 compliant ", + "White balance bracketing": "+/-3 levels in single level increments\n3 bracketed images per shutter release.\nSelectable Blue/Amber bias or Magenta/ Green bias. ", + "Connectivity": "Hi-Speed USB, Video output (PAL/ NTSC) (integrated with USB terminal), HDMI mini output (HDMI-CEC compatible), Extension system terminal (for WFT-E6/GP-E1), External microphone (Stereo mini jack), RJ-45(gigabyte ethernet) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes, WAVE (monaural) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 29.97 fps  ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV (Video: H.264 Intra frame / inter frame, Sound: Linear PCM) ", + "Video codec": "H264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 200D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 200D.txt new file mode 100644 index 0000000..1c6ba63 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 200D.txt @@ -0,0 +1,96 @@ +{ + "id": 1171, + "price": 550, + "year": "2017", + "brand": "Canon", + "rankDxo": 79, + "rankColor": 23.6, + "rankDyn": 13.4, + "rankLln": 1041, + "rankDxo_ranking": 89, + "rankColor_ranking": 95, + "rankDyn_ranking": 51, + "rankLln_ranking": 103, + "name": "Canon EOS 200D", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jun. 2017", + "launchDateGraph": "2017-06-29", + "sensorraw": 25.5, + "link": "/Cameras/Canon/EOS-200D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_200D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2017  ", + "Indicative price (USD)": "\n 550  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6288 x 4056  \n ", + "Sensor photo detectors (Mpix) ": "25.5  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "453", + "Battery type": "Li-ion, LP-E17, 7.2V, 1040mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.87 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-shot, AI-Servo, AI Focus, MF ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "+/-2 EV 1/3 or 1/2 stop increments ", + "Exposure compensation": "+/-5 EV in 1/3 or 1/2 stop increments ", + "Drive modes": "Single, Continuous L, Continuous H, Self timer (2s+remote, 10s+remote) ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, MOV ", + "Video codec": "MPEG-4 AVC, H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 20D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 20D.txt new file mode 100644 index 0000000..f8c9984 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 20D.txt @@ -0,0 +1,96 @@ +{ + "id": 281, + "price": 700, + "year": "2004", + "brand": "Canon", + "rankDxo": 62, + "rankColor": 21.9, + "rankDyn": 11, + "rankLln": 721, + "rankDxo_ranking": 236, + "rankColor_ranking": 229, + "rankDyn_ranking": 276, + "rankLln_ranking": 176, + "name": "Canon EOS 20D", + "pixelDepth": 8.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2004", + "launchDateGraph": "2004-08-19", + "sensorraw": 8.49, + "link": "/Cameras/Canon/EOS-20D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_20D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Aug. 2004  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3596 x 2360  \n ", + "Sensor photo detectors (Mpix) ": "8.49  ", + "Sensor size (mm)": "15 x 22.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "2.0.2 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 300D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 300D.txt new file mode 100644 index 0000000..8b528d8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 300D.txt @@ -0,0 +1,96 @@ +{ + "id": 182, + "price": 324, + "year": "2003", + "brand": "Canon", + "rankDxo": 55, + "rankColor": 21, + "rankDyn": 10.8, + "rankLln": 544, + "rankDxo_ranking": 269, + "rankColor_ranking": 289, + "rankDyn_ranking": 305, + "rankLln_ranking": 236, + "name": "Canon EOS 300D", + "pixelDepth": 6.3, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Aug. 2003", + "launchDateGraph": "2003-08-20", + "sensorraw": 6.52, + "link": "/Cameras/Canon/EOS-300D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_300D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2003  ", + "Indicative price (USD)": "\n 324  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3152 x 2068  \n ", + "Sensor photo detectors (Mpix) ": "6.52  ", + "Sensor size (mm)": "15.1 x 22.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.1.1 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 30D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 30D.txt new file mode 100644 index 0000000..68f616d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 30D.txt @@ -0,0 +1,96 @@ +{ + "id": 179, + "price": 738, + "year": "2006", + "brand": "Canon", + "rankDxo": 59, + "rankColor": 21.5, + "rankDyn": 10.8, + "rankLln": 736, + "rankDxo_ranking": 251, + "rankColor_ranking": 252, + "rankDyn_ranking": 296, + "rankLln_ranking": 173, + "name": "Canon EOS 30D", + "pixelDepth": 8.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2006", + "launchDateGraph": "2006-02-21", + "sensorraw": 8.49, + "link": "/Cameras/Canon/EOS-30D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_30D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2006  ", + "Indicative price (USD)": "\n 738  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3596 x 2360  \n ", + "Sensor photo detectors (Mpix) ": "8.49  ", + "Sensor size (mm)": "15 x 22.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5 or 3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.0.4 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 350D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 350D.txt new file mode 100644 index 0000000..1358d73 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 350D.txt @@ -0,0 +1,96 @@ +{ + "id": 183, + "price": 560, + "year": "2005", + "brand": "Canon", + "rankDxo": 60, + "rankColor": 21.8, + "rankDyn": 10.8, + "rankLln": 637, + "rankDxo_ranking": 248, + "rankColor_ranking": 239, + "rankDyn_ranking": 292, + "rankLln_ranking": 201, + "name": "Canon EOS 350D", + "pixelDepth": 8, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Feb. 2005", + "launchDateGraph": "2005-02-17", + "sensorraw": 8.19, + "link": "/Cameras/Canon/EOS-350D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_350D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2005  ", + "Indicative price (USD)": "\n 560  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3516 x 2328  \n ", + "Sensor photo detectors (Mpix) ": "8.19  ", + "Sensor size (mm)": "14.8 x 22.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.8  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.0.2 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 400D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 400D.txt new file mode 100644 index 0000000..e93e7b7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 400D.txt @@ -0,0 +1,96 @@ +{ + "id": 184, + "price": 520, + "year": "2006", + "brand": "Canon", + "rankDxo": 62, + "rankColor": 22.1, + "rankDyn": 11, + "rankLln": 664, + "rankDxo_ranking": 234, + "rankColor_ranking": 212, + "rankDyn_ranking": 280, + "rankLln_ranking": 191, + "name": "Canon EOS 400D", + "pixelDepth": 10.1, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Aug. 2006", + "launchDateGraph": "2006-08-24", + "sensorraw": 10.35, + "link": "/Cameras/Canon/EOS-400D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_400D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2006  ", + "Indicative price (USD)": "\n 520  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3948 x 2622  \n ", + "Sensor photo detectors (Mpix) ": "10.35  ", + "Sensor size (mm)": "14.8 x 22.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.0.4 ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 40D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 40D.txt new file mode 100644 index 0000000..560056f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 40D.txt @@ -0,0 +1,96 @@ +{ + "id": 180, + "price": 899, + "year": "2007", + "brand": "Canon", + "rankDxo": 64, + "rankColor": 22.1, + "rankDyn": 11.3, + "rankLln": 703, + "rankDxo_ranking": 218, + "rankColor_ranking": 220, + "rankDyn_ranking": 242, + "rankLln_ranking": 184, + "name": "Canon EOS 40D", + "pixelDepth": 10.1, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2007", + "launchDateGraph": "2007-08-20", + "sensorraw": 10.34, + "link": "/Cameras/Canon/EOS-40D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_40D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Aug. 2007  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3944 x 2622  \n ", + "Sensor photo detectors (Mpix) ": "10.34  ", + "Sensor size (mm)": "15 x 22 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "6.5 or 3  ", + "Live view ": "Yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 450D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 450D.txt new file mode 100644 index 0000000..b971a39 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 450D.txt @@ -0,0 +1,96 @@ +{ + "id": 185, + "price": 570, + "year": "2008", + "brand": "Canon", + "rankDxo": 61, + "rankColor": 21.9, + "rankDyn": 10.8, + "rankLln": 692, + "rankDxo_ranking": 246, + "rankColor_ranking": 231, + "rankDyn_ranking": 305, + "rankLln_ranking": 187, + "name": "Canon EOS 450D", + "pixelDepth": 12.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-24", + "sensorraw": 12.4, + "link": "/Cameras/Canon/EOS-450D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_450D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 570  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4312 x 2876  \n ", + "Sensor photo detectors (Mpix) ": "12.4  ", + "Sensor size (mm)": "14.8 x 22.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3.5  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1.0.4 ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 500D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 500D.txt new file mode 100644 index 0000000..b195d94 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 500D.txt @@ -0,0 +1,96 @@ +{ + "id": 586, + "price": 1040, + "year": "2009", + "brand": "Canon", + "rankDxo": 63, + "rankColor": 21.7, + "rankDyn": 11.5, + "rankLln": 663, + "rankDxo_ranking": 230, + "rankColor_ranking": 242, + "rankDyn_ranking": 221, + "rankLln_ranking": 193, + "name": "Canon EOS 500D", + "pixelDepth": 15.1, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Mar. 2009", + "launchDateGraph": "2009-03-25", + "sensorraw": 15.04, + "link": "/Cameras/Canon/EOS-500D", + "chapo": " Results for the Canon EOS 500D are comparable to those for the Canon EOS 50D launched a year ago. With a global DxOMark score of 62.5, the EOS 500D ranks 18th on the APS-C ranking (out of 40 cameras), and 37th on the global DxOMark ranking (out of 75 cameras overall, all models).Key sensor characteristicsThe Canon EOS 500D features a 15.5 Mpix CMOS sensor, which is the highest resolution for APS-C sensors currently available. Its pixel pitch (4.7µm) is more comparable to those of 4:3 format sensors than of APS-C.Key performance factorsThe global performance of the Canon", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-canon-500d-digital-rebel-t1i-kiss-x3-digital/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_500D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2009  ", + "Indicative price (USD)": "\n 1040  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4770 x 3153  \n ", + "Sensor photo detectors (Mpix) ": "15.04  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3.4  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 50D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 50D.txt new file mode 100644 index 0000000..887144d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 50D.txt @@ -0,0 +1,96 @@ +{ + "id": 272, + "price": 1300, + "year": "2008", + "brand": "Canon", + "rankDxo": 63, + "rankColor": 21.8, + "rankDyn": 11.4, + "rankLln": 696, + "rankDxo_ranking": 225, + "rankColor_ranking": 237, + "rankDyn_ranking": 227, + "rankLln_ranking": 186, + "name": "Canon EOS 50D", + "pixelDepth": 15.1, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2008", + "launchDateGraph": "2008-08-26", + "sensorraw": 15.15, + "link": "/Cameras/Canon/EOS-50D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_50D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Aug. 2008  ", + "Indicative price (USD)": "\n 1300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4770 x 3177  \n ", + "Sensor photo detectors (Mpix) ": "15.15  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "3 or 6.3  ", + "Live view ": "yes ", + "Stabilization ": "No ", + "Firmware": "1.0.1 ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 550D pre production.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 550D pre production.txt new file mode 100644 index 0000000..84599b1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 550D pre production.txt @@ -0,0 +1,96 @@ +{ + "id": 636, + "price": 900, + "year": "2010", + "brand": "Canon", + "rankDxo": 66, + "rankColor": 22, + "rankDyn": 11.6, + "rankLln": 807, + "rankDxo_ranking": 194, + "rankColor_ranking": 222, + "rankDyn_ranking": 213, + "rankLln_ranking": 151, + "name": "Canon EOS 550D pre production", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr ", + "status": "TESTED", + "launchDate": "Feb. 2010", + "launchDateGraph": "2010-02-08", + "sensorraw": 18.79, + "link": "/Cameras/Canon/EOS-550D-pre-production", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D_pre_production/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2010  ", + "Indicative price (USD)": "\n 900  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5344 x 3516  \n ", + "Sensor photo detectors (Mpix) ": "18.79  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3.7  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 550D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 550D.txt new file mode 100644 index 0000000..0a75904 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 550D.txt @@ -0,0 +1,96 @@ +{ + "id": 645, + "price": 1000, + "year": "2010", + "brand": "Canon", + "rankDxo": 66, + "rankColor": 22.1, + "rankDyn": 11.5, + "rankLln": 784, + "rankDxo_ranking": 195, + "rankColor_ranking": 209, + "rankDyn_ranking": 216, + "rankLln_ranking": 163, + "name": "Canon EOS 550D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2010", + "launchDateGraph": "2010-02-26", + "sensorraw": 18, + "link": "/Cameras/Canon/EOS-550D", + "chapo": " The rankings and results for both the preproduction and the commercial models are very similar, thus they both have the same DxOMark Sensor score. All the differences among the three component rankings for the two units are actually within the measurement confidence interval: for instance, the largest numerical difference, 23 points between the scores of 807 and 784 points for Low-Light ISO, corresponds to about 1/24 of a stop. Only the commercial model measurements will be available on dxomark.com.Disclaimer: This dxomark review evaluates only the selected camera’s RAW sensor performance metrics (i.e., Color Depth, Dynamic Range, and", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-canon-eos-rebel-t2i-eos-550d-or-kiss-x4-commercial-model/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_550D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2010  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5184 x 3456  \n ", + "Sensor photo detectors (Mpix) ": "18  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.7  ", + "Live view ": "Yes ", + "Stabilization ": "Optical ", + "Firmware": " ", + "Dust cleaning": "Anti-static coating on sensor surfaces ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, LPE8, 7.2V, 1120mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "0 - 40C 85% ", + "Camera material": "Stainless Steel and polycarbonate resin with glass fiber ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": " ", + "View finder coverage": "95 ", + "Mirror lockup": " Yes (custom function)  ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Switch on lens ", + "Autofocus modes": "AI Focus, One Shot, AI Servo ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "+/- 2.0 EV (3 shots), 0.5 or 0.3 EV increments ", + "Exposure compensation": "+/- 5.0 EV ", + "Drive modes": "Single, Continuous: 3.7 fps up to 34 Large/Fine JPEG / 6 RAW frames, Self-timer 10 secs (2 sec with mirror lock-up), Self-timer continuous ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SHXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "+/-3 levels, 3 images, Selectable Blue/Amber or Magenta/Green bias ", + "Connectivity": "AV/USB/HDMI/RC-6/3.5 microphone ", + "Bluetooth": "No ", + "3G": "NO ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "NA ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 (1080p, 16:9) 30/25/24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark II.txt new file mode 100644 index 0000000..046fef7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 483, + "price": 2199, + "year": "2008", + "brand": "Canon", + "rankDxo": 79, + "rankColor": 23.7, + "rankDyn": 11.9, + "rankLln": 1815, + "rankDxo_ranking": 81, + "rankColor_ranking": 83, + "rankDyn_ranking": 180, + "rankLln_ranking": 43, + "name": "Canon EOS 5D Mark II", + "pixelDepth": 21, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2008", + "launchDateGraph": "2008-09-17", + "sensorraw": 21.14, + "link": "/Cameras/Canon/EOS-5D-Mark-II", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_II/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2008  ", + "Indicative price (USD)": "\n 2199  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5634 x 3753  \n ", + "Sensor photo detectors (Mpix) ": "21.14  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "3.9  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "2.0.8 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": "810", + "Battery type": "Li-ion, LP-E6, 7.4V, 1800mAh ", + "Battery weight (gr)": "80", + "Tropicalization": "Yes ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "Optical  ", + "View finder magnification": "0.71 ", + "View finder coverage": "98 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AI Focus, One Shot, AI Servo ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "2, 3, 5 or 7 Shots +/-3 EV 1/3 or 1/2 stop increments  ", + "Exposure compensation": "-2 to +2 EV in 1/3 EV or 1/2 EV steps ", + "Drive modes": "Single, Continuous, Self timer ", + "Buffer size": "13 (RAW) ", + "Recording medium": "CF (I - II) cards ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "-3 to +3 EV steps ", + "Connectivity": "USB, video, HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": " 1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark III.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark III.txt new file mode 100644 index 0000000..12b7b2e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark III.txt @@ -0,0 +1,96 @@ +{ + "id": 795, + "price": 3499, + "year": "2012", + "brand": "Canon", + "rankDxo": 81, + "rankColor": 24, + "rankDyn": 11.7, + "rankLln": 2293, + "rankDxo_ranking": 66, + "rankColor_ranking": 66, + "rankDyn_ranking": 189, + "rankLln_ranking": 35, + "name": "Canon EOS 5D Mark III", + "pixelDepth": 22.3, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Mar. 2012", + "launchDateGraph": "2012-03-02", + "sensorraw": 23.38, + "link": "/Cameras/Canon/EOS-5D-Mark-III", + "chapo": " Introduction Here is a first review based on the specifications and our first impressions about this new Canon flagship camera. We are really looking forward to getting a production sample in our lab to be able to test it.Full-frame 22-megapixel sensor: the new generation&nbsp;Between the 21Mpix of the Mark II and the 22.3Mpix of the Mark III, there has been a lot more progress than meets the eye (given how nearly identical the two iterations seem to be on the surface).But as a matter of fact, nearly 4 years have", + "linkReview": "https://www.dxomark.com/canon-5d-mark-iii-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_III/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Mar. 2012  ", + "Indicative price (USD)": "\n 3499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5920 x 3950  \n ", + "Sensor photo detectors (Mpix) ": "23.38  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 102400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0.7 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": "910", + "Battery type": "Li-ion, LP-E6, 7.4V, 1800mAh ", + "Battery weight (gr)": "80", + "Tropicalization": "Yes ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AI Focus, One Shot, AI Servo ", + "Number of autofocus points": "61 ", + "Exposure bracketing": " 2, 3, 5 or 7 Shots +/-3 EV 1/3 or 1/2 stop increments ", + "Exposure compensation": "+/-5 EV in 1/3 or 1/2 stop increments ", + "Drive modes": "Single, Continuous L, Continuous H, Self-timer (2s+remote, 10s+remote), Silent single shooting, Silent continuous shooting ", + "Buffer size": "18 (RAW) ", + "Recording medium": "CF card type I (UDMA compatible), SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2), sRAW1 (CR2), sRAW2 (CR2) ", + "White balance bracketing": "+/-3 levels in single level increments\n3 bracketed images per shutter release.\nSelectable Blue/Amber bias or Magenta/ Green bias. ", + "Connectivity": "Hi-Speed USB, HDMI mini output, Video output (PAL/ NTSC), Headphone mini jack ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 29.97 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark IV.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark IV.txt new file mode 100644 index 0000000..a539166 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D Mark IV.txt @@ -0,0 +1,96 @@ +{ + "id": 1106, + "price": 3500, + "year": "2016", + "brand": "Canon", + "rankDxo": 91, + "rankColor": 24.8, + "rankDyn": 13.6, + "rankLln": 2995, + "rankDxo_ranking": 20, + "rankColor_ranking": 28, + "rankDyn_ranking": 41, + "rankLln_ranking": 13, + "name": "Canon EOS 5D Mark IV", + "pixelDepth": 30.4, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Aug. 2016", + "launchDateGraph": "2016-08-25", + "sensorraw": 31.26, + "link": "/Cameras/Canon/EOS-5D-Mark-IV", + "chapo": " Full Frame Dual Sensor, great featuresBuilt around a new 30.4Mp full-frame CMOS sensor, capturing 6720 x 4480 pixel stills in 3:2 aspect ratio, the 5D Mark IV offers a notable increase in resolution over the 22.3Mp 5D Mark III. For many Canon enthusiasts frustrated with the more modest resolution increase between the 5D Mark II and III versions, this will be a very welcome bump in resolution that brings the 5D Mark IV more in line with some of the recent high-resolution Sony and Nikon competition.  The autofocus system from Canon’s flagship EOS 1D X Mark II", + "linkReview": "https://www.dxomark.com/canon-eos-5d-mark-iv-sensor-review-game-changer/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D_Mark_IV/vignette3.png", + "Type": "Professional ", + "Announced": "Aug. 2016  ", + "Indicative price (USD)": "\n 3500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6880 x 4544  \n ", + "Sensor photo detectors (Mpix) ": "31.26  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 102400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0.1 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": "800", + "Battery type": "Li-ion, LP-E6N, 7.2V, 1865mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1620000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Predictive AI Servo AF (AI Servo AF III), AI Focus AF, Manual focus ", + "Number of autofocus points": "61 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5 stops in 1/3 or 1/2-stop increments ", + "Drive modes": "Single, High-speed continuous,\nLow-speed continuous,\nSilent single, Silent continuous, 10-sec. 2-sec. self-timer/remote control ", + "Buffer size": " ", + "Recording medium": "CF, SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 5D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D.txt new file mode 100644 index 0000000..12ac4bb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 5D.txt @@ -0,0 +1,96 @@ +{ + "id": 176, + "price": 2000, + "year": "2005", + "brand": "Canon", + "rankDxo": 71, + "rankColor": 22.9, + "rankDyn": 11.1, + "rankLln": 1368, + "rankDxo_ranking": 152, + "rankColor_ranking": 136, + "rankDyn_ranking": 261, + "rankLln_ranking": 56, + "name": "Canon EOS 5D", + "pixelDepth": 12.7, + "sensor": "sensor_fullframe", + "type": "semiprodslr, professional", + "status": "TESTED", + "launchDate": "Aug. 2005", + "launchDateGraph": "2005-08-22", + "sensorraw": 13.22, + "link": "/Cameras/Canon/EOS-5D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Aug. 2005  ", + "Indicative price (USD)": "\n 2000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4476 x 2954  \n ", + "Sensor photo detectors (Mpix) ": "13.22  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1.0.1 ", + "Dust cleaning": "no ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 5DS R.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 5DS R.txt new file mode 100644 index 0000000..d6407ec --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 5DS R.txt @@ -0,0 +1,96 @@ +{ + "id": 1009, + "price": 3900, + "year": "2015", + "brand": "Canon", + "rankDxo": 86, + "rankColor": 24.6, + "rankDyn": 12.4, + "rankLln": 2308, + "rankDxo_ranking": 39, + "rankColor_ranking": 35, + "rankDyn_ranking": 136, + "rankLln_ranking": 33, + "name": "Canon EOS 5DS R", + "pixelDepth": 50.6, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2015", + "launchDateGraph": "2015-02-06", + "sensorraw": 51.16, + "link": "/Cameras/Canon/EOS-5DS-R", + "chapo": "

In the third and final installment of our Best Lenses for the Canon EOS 5DS R review, we’re taking a closer look at results for wide-angle and macro lenses. For wide-angles, we’ve sub-divided the lenses into ultra-wide-angle primes between 14 and18mm, standard wide-angle primes between 20 and 28mm, and wide-angle zoom lenses that cover all of those focal lengths and more. To wrap things up for this series, our Macro section considers close-focus prime lenses with focal lengths between 90 and 180mm.

", + "linkReview": "/Reviews/Best-lenses-for-the-Canon-EOS-5DS-R-Good-glass-for-landscape-architecture-and-close-up-photography", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS_R/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2015  ", + "Indicative price (USD)": "\n 3900  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8736 x 5856  \n ", + "Sensor photo detectors (Mpix) ": "51.16  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": "845", + "Battery type": "One Battery Pack LP-E6 ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF,\nPredictive AI, Servo AF, AI Focus AF, MF ", + "Number of autofocus points": "61 ", + "Exposure bracketing": "+/-3 stops in 1/3 or 1/2-stop increments ", + "Exposure compensation": "+/- 5 stops in 1/3 or 1/2-stop increments ", + "Drive modes": "Single, High-speed continuous, Low-speed continuous, Silent Single Shooting, Silent continuous shooting, and Self-timer (10 sec. self-timer/remote control, or 2-sec. self-timer/remote control) ", + "Buffer size": "unlimited (JPEG), 14 (RAW), 12 (RAW+JPEG) ", + "Recording medium": "CF card\nType I drive (Incompatible with Type II and Microdrive.)\nHigh-speed writing possible with UDMA CF cards.\nSD, SDHC, and SDXC memory cards\nHigh-speed writing possible with UHS-I SD cards. ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/mini-HDMI/NTSC-PAL ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 5DS.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 5DS.txt new file mode 100644 index 0000000..fe84b12 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 5DS.txt @@ -0,0 +1,96 @@ +{ + "id": 1008, + "price": 3700, + "year": "2015", + "brand": "Canon", + "rankDxo": 87, + "rankColor": 24.7, + "rankDyn": 12.4, + "rankLln": 2381, + "rankDxo_ranking": 35, + "rankColor_ranking": 30, + "rankDyn_ranking": 134, + "rankLln_ranking": 30, + "name": "Canon EOS 5DS", + "pixelDepth": 50.6, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2015", + "launchDateGraph": "2015-02-06", + "sensorraw": 51.16, + "link": "/Cameras/Canon/EOS-5DS", + "chapo": " Introduction Canon 5DS &amp; 5DS R Measurement: Best Canon scores for Color Sensitivity and Dynamic RangeAchieving very similar overall DxOMark Sensor Scores of 87 points for the EOS 5DS and 86 points for the EOS 5DS R, these are the best results we’ve measured on a Canon sensor to date. An improvement of 5 points compared to the previous Canon champion, the EOS 1Dx with 82 points, represents a one-third stop of better image quality overall from Canon’s latest chip.Leading the competition in most of our sensor score sub-categories, the", + "linkReview": "https://www.dxomark.com/canon-5ds-5ds-r-review-new-top-ranking-canon-eos-sensor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_5DS/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2015  ", + "Indicative price (USD)": "\n 3700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8736 x 5856  \n ", + "Sensor photo detectors (Mpix) ": "51.16  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": "845", + "Battery type": "One Battery Pack LP-E6 ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF,\nPredictive AI, Servo AF, AI Focus AF, MF ", + "Number of autofocus points": "61 ", + "Exposure bracketing": "+/-3 stops in 1/3 or 1/2-stop increments ", + "Exposure compensation": "+/- 5 stops in 1/3 or 1/2-stop increments ", + "Drive modes": "Single, High-speed continuous, Low-speed continuous, Silent Single Shooting, Silent continuous shooting, and Self-timer (10 sec. self-timer/remote control, or 2-sec. self-timer/remote control) ", + "Buffer size": "unlimited (JPEG), 14 (RAW), 12 (RAW+JPEG) ", + "Recording medium": "CF card\n Type I drive (Incompatible with Type II and Microdrive.)\nHigh-speed writing possible with UDMA CF cards.\nSD, SDHC, and SDXC memory cards\nHigh-speed writing possible with UHS-I SD cards ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/NTSC-PAL ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 600D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 600D.txt new file mode 100644 index 0000000..bb5732f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 600D.txt @@ -0,0 +1,96 @@ +{ + "id": 692, + "price": 850, + "year": "2011", + "brand": "Canon", + "rankDxo": 65, + "rankColor": 22.1, + "rankDyn": 11.5, + "rankLln": 793, + "rankDxo_ranking": 204, + "rankColor_ranking": 220, + "rankDyn_ranking": 225, + "rankLln_ranking": 157, + "name": "Canon EOS 600D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2011", + "launchDateGraph": "2011-02-07", + "sensorraw": 18.79, + "link": "/Cameras/Canon/EOS-600D", + "chapo": " Introduction Compared to Nikon D5000 &amp; Sony A55The EOS 600D uses the same 18-megapixel sensor already seen in the EOS 550D. This sensor has a higher definition than that of its competitors, and largely dominates the D5000 (only 12 megapixels). Back in the days when the D5000 was launched, this was a good standard. But more pixels does not mean better metrics, and indeed, the DxOMark Scores for the EOS 600D place it behind both the D5000 and Alpha 55, handicapped by a lower Landscape and low light performance scores.", + "linkReview": "https://www.dxomark.com/canon-eos-600d-in-depth-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_600D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2011  ", + "Indicative price (USD)": "\n 850  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5344 x 3516  \n ", + "Sensor photo detectors (Mpix) ": "18.79  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.7  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "515", + "Battery type": " Li-Ion, LP-E8, 7.4V, 950mAh ", + "Battery weight (gr)": "88.5", + "Tropicalization": " ", + "Camera material": "plastic ", + "Mount material": " ", + "View finder type": "optical ", + "View finder magnification": "0.85 ", + "View finder coverage": "95 ", + "Mirror lockup": "Quick-return half mirror (transmittance: reflectance ratio of 40:60) ", + "View finder diopter": "-3.0 to +1.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "one-shot, AI-Servo, AI Focus, MF ", + "Number of autofocus points": "9 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Continuous, 10-sec. self-timer/Remote control, 2-sec. self-timer, Continuous shooting after 10-sec. self-timer ", + "Buffer size": "34 ", + "Recording medium": " SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes (3 frames in either blue/amber or magenta/green axis) ", + "Connectivity": " USB 2.0/HDMI/E3 connector, InfraRed ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 60D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 60D.txt new file mode 100644 index 0000000..6675d52 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 60D.txt @@ -0,0 +1,96 @@ +{ + "id": 663, + "price": 1199, + "year": "2010", + "brand": "Canon", + "rankDxo": 66, + "rankColor": 22.2, + "rankDyn": 11.5, + "rankLln": 813, + "rankDxo_ranking": 190, + "rankColor_ranking": 208, + "rankDyn_ranking": 218, + "rankLln_ranking": 147, + "name": "Canon EOS 60D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2010", + "launchDateGraph": "2010-08-26", + "sensorraw": 18, + "link": "/Cameras/Canon/EOS-60D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_60D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Aug. 2010  ", + "Indicative price (USD)": "\n 1199  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5194 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "18  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.3  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0.5 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": "LP-E6 DC7.2V 1800mAh(Li-ion) ", + "Battery weight (gr)": " ", + "Tropicalization": "0 - -40 85% ", + "Camera material": "Aluminium and polycarbonate resin with glass fibre ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.95 ", + "View finder coverage": "0.96 ", + "Mirror lockup": "Mirror lock-up (once or multiple exposures)  ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "one-shot, AI-Servo, AI Focus, MF ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "+/- 3.0 EV, 0.3 or 0.5 EV increments ", + "Exposure compensation": "+/-5.0 EV ", + "Drive modes": "5.3fps ", + "Buffer size": " ", + "Recording medium": "SD / SDHC/ SDXC ", + "Image format": "JPEG, RAW(CR2) ", + "White balance bracketing": "+/- 3 levels, 3 images, Blue / Amber or Magenta / Green bias  ", + "Connectivity": "AV/USB/HDMI ", + "Bluetooth": "No ", + "3G": "Ni ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes  ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 29.97 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": " ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 650D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 650D.txt new file mode 100644 index 0000000..df77adf --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 650D.txt @@ -0,0 +1,96 @@ +{ + "id": 813, + "price": 899, + "year": "2012", + "brand": "Canon", + "rankDxo": 62, + "rankColor": 21.7, + "rankDyn": 11.2, + "rankLln": 722, + "rankDxo_ranking": 235, + "rankColor_ranking": 241, + "rankDyn_ranking": 249, + "rankLln_ranking": 175, + "name": "Canon EOS 650D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jun. 2012", + "launchDateGraph": "2012-06-08", + "sensorraw": 18.63, + "link": "/Cameras/Canon/EOS-650D", + "chapo": " Introduction Fingertip controlLike the EOS 600D, the Canon EOS 650D provides a large 3:2 articulated ClearView II screen endowed with a comfortable 1,040,000-point resolution. But unlike its predecessor, it has a capacitated touch-sensitive layer that allows touchscreen control of the camera. One can use the same gestures with this camera as one finds on smartphones and tablets, such as sweep-scrolling to go from one photo to another, or pinching open to zoom in on an image to verify sharp focus. The touchscreen also allows users to directly control the autofocus", + "linkReview": "https://www.dxomark.com/canon-eos-650d-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_650D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2012  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5280 x 3528  \n ", + "Sensor photo detectors (Mpix) ": "18.63  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Canon EF  ", + "Weight (gr)": "575", + "Battery type": "Li-Ion LP-E8 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Stainless Steel and polycarbonate resin with glass fibre ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.85 ", + "View finder coverage": "95 ", + "Mirror lockup": " ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "\n Contrast Detect (sensor)\n Phase Detect\n Multi-area\n Selective single-point\n Single\n Continuous\n Face Detection\n Live View\n ", + "Number of autofocus points": "9 ", + "Exposure bracketing": " + or -2 (3 frames at 1/3 EV, 1/2 EV steps) ", + "Exposure compensation": " + or -5 EV (at 1/3 EV, 1/2 EV steps) ", + "Drive modes": " \n\n Single\n Continuous\n Self timer (2s, 10s+remote, 10s + continuous shots 2-10)\n ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "\n JPEG/RAW ", + "White balance bracketing": " Yes (3 frames in either blue/amber or magenta/green axis) ", + "Connectivity": "USB 2.0 (480 Mbit/sec)\nHDMI Yes (HDMI mini)\nWireless EyeFi\nRemote control Yes (E3 connector, InfraRed) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes, Stereo ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30, 25, 24 fps ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "\n Motion JPEG ", + "Video codec": " H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 6D Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 6D Mark II.txt new file mode 100644 index 0000000..7b1ae20 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 6D Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 1170, + "price": 2000, + "year": "2017", + "brand": "Canon", + "rankDxo": 85, + "rankColor": 24.4, + "rankDyn": 11.9, + "rankLln": 2862, + "rankDxo_ranking": 42, + "rankColor_ranking": 42, + "rankDyn_ranking": 178, + "rankLln_ranking": 20, + "name": "Canon EOS 6D Mark II", + "pixelDepth": 26.2, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Jun. 2017", + "launchDateGraph": "2017-06-29", + "sensorraw": 26.97, + "link": "/Cameras/Canon/EOS-6D-Mark-II", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D_Mark_II/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Jun. 2017  ", + "Indicative price (USD)": "\n 2000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6384 x 4224  \n ", + "Sensor photo detectors (Mpix) ": "26.97  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 102400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "6.5  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0.2 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": "685", + "Battery type": "Li-ion, LP-E6N, 7.2V, 1865mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.71 ", + "View finder coverage": "98 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Predictive AI Servo AF, AI Focus AF, Manual focus ", + "Number of autofocus points": "45 ", + "Exposure bracketing": "+/- 3 EV in 1/3- or 1/2-stop increments ", + "Exposure compensation": "+/- 5 EV in 1/3- or 1/2-stop increments ", + "Drive modes": "Single, Silent single, Silent continuous, high-speed continuous (6.5 fps) , low-speed continuous (3 fps), self-timer 10sec., self-timer 2sec., self-timer continuous ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "+/-3 levels in single level increments 2, 3, 5 or 7 ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, MOV ", + "Video codec": "MPEG-4 AVC, H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 6D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 6D.txt new file mode 100644 index 0000000..88aae21 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 6D.txt @@ -0,0 +1,96 @@ +{ + "id": 836, + "price": 2099, + "year": "2012", + "brand": "Canon", + "rankDxo": 82, + "rankColor": 23.8, + "rankDyn": 12.1, + "rankLln": 2340, + "rankDxo_ranking": 63, + "rankColor_ranking": 74, + "rankDyn_ranking": 168, + "rankLln_ranking": 31, + "name": "Canon EOS 6D", + "pixelDepth": 20.2, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 20.65, + "link": "/Cameras/Canon/EOS-6D", + "chapo": " Introduction It is no secret that Canon and Nikon are archrivals. For decades, they have dueled for the top spot among the hearts and minds of consumers – Canon has been winning this fight and has been rewarded with being the world’s number one camera manufacturer.Part of this rivalry has been dramatically on display in the weeks leading up to and during Photokina, the world’s largest imaging fair. On Sept. 13th, Nikon announced the D600, a 24.3-megapixel full-frame sensor DSLR that targets the most avid camera enthusiasts in the consumer", + "linkReview": "https://www.dxomark.com/canon-answers-nikon-s-d600-with-the-eos-6d/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_6D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 2099  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5568 x 3708  \n ", + "Sensor photo detectors (Mpix) ": "20.65  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 102400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.5  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, LP-E6, 7.2V, 1800mAh, 13Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Magnesuim alloy ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.71 ", + "View finder coverage": "97 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "1) Autofocus:\n- One-Shot AF\n- AI Servo AF\n- AI Focus AF\n*Switches between One-Shot AF and AI Servo AF automatically.\n\n2) Manual focus\nAF Point Selection \n(1) Automatic selection\n(2) Manual selection\nSelected AF Point Display \nDisplayed or indicated by sup ", + "Number of autofocus points": "11 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/-3EV ", + "Drive modes": "Single shooting;\nContinuous shooting;\nSilent single shooting;\nSilent continuous shooting;\n10-sec. self-timer/Remote control;\n2-sec. self-timer ", + "Buffer size": " ", + "Recording medium": "SD;\nSDHC;\nSDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Auto;\nPreset (Daylight, Shade, Cloudy, Tungsten Light, White Fluorescent Light, Flash);\nCustom (Approx. 2,000 - 10,000K);\nColor Temperature (Approx. 2,500 - 10,000K);\nWhite Balance Correction;\nWhite Balance Bracketing ", + "Connectivity": "USB Terminal:\nFor personal computer communication and direct printing (USB 2.0 Hi-Speed).\n\nVideo Out Terminal:\nAV stereo OUT terminal: NTSC/PAL selectable;\nmini-HDMI OUT terminal (Type C). ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV (Image data: MPEG-4 AVC / H.264) ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 700D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 700D.txt new file mode 100644 index 0000000..a0c7dc4 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 700D.txt @@ -0,0 +1,96 @@ +{ + "id": 870, + "price": 750, + "year": "2013", + "brand": "Canon", + "rankDxo": 61, + "rankColor": 21.7, + "rankDyn": 11.2, + "rankLln": 681, + "rankDxo_ranking": 240, + "rankColor_ranking": 242, + "rankDyn_ranking": 253, + "rankLln_ranking": 188, + "name": "Canon EOS 700D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Mar. 2013", + "launchDateGraph": "2013-03-21", + "sensorraw": 18.1, + "link": "/Cameras/Canon/EOS-700D", + "chapo": " Canon Rebel EOS 700D (Rebel T5i): A minor update over its predecessorThe new Canon EOS 700D (Rebel T5i) replaces the existing EOS 650D (Rebel T4i) and features a very similar specification including a 18-megapixel APS-C (22.3 x 14.9mm) Hybrid CMOS sensor and Canon’s DIGIC 5 image processing engine. In fact not much has changed on the new model, which continues to feature a 9-point autofocus system, 1.04m dot 3-inch vari-angle touch screen LCD, 5fps burst shooting and a ISO 100 – 12,800 (expandable to 25,600) sensitivity range. Updates therefore are limited to the addition of a 360", + "linkReview": "https://www.dxomark.com/canon-eos-700d-rebel-t5i-eos-100d-rebel-sl1-preview-has-canon-saved-the-entry-level-digital-slr-game/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_700D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2013  ", + "Indicative price (USD)": "\n 750  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5208 x 3476  \n ", + "Sensor photo detectors (Mpix) ": "18.1  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, LP-E8, 7.2V, 1120mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic, Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.85 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AI Focus, One Shot, AI Servo, MF ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "+/-2 stops in 1/3- or 1/2-stop increments ", + "Exposure compensation": "+/-5 stops in 1/3- or 1/2-stop increments ", + "Drive modes": "Single, Continuous, 2-sec., 10-sec. self-timer, Continuous shooting after 10-sec. self-timer (2 to 10 shots) ", + "Buffer size": " ", + "Recording medium": "SD,\n SDHC,\nSDXC,\nCompatible with Ultra High Speed (UHS-I) memory cards and Eye-Fi cards ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV/USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 70D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 70D.txt new file mode 100644 index 0000000..b55f09b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 70D.txt @@ -0,0 +1,96 @@ +{ + "id": 895, + "price": 1199, + "year": "2013", + "brand": "Canon", + "rankDxo": 68, + "rankColor": 22.5, + "rankDyn": 11.6, + "rankLln": 926, + "rankDxo_ranking": 173, + "rankColor_ranking": 183, + "rankDyn_ranking": 211, + "rankLln_ranking": 119, + "name": "Canon EOS 70D", + "pixelDepth": 20.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Jul. 2013", + "launchDateGraph": "2013-07-02", + "sensorraw": 20.17, + "link": "/Cameras/Canon/EOS-70D", + "chapo": " Introduction Besides being this year’s update to the firm’s range of mid range APS-C EOS DSLR model,&nbsp;Canon’s EOS 70D brings unexpected yet welcome technological advances in the form of a proprietary 20.2 M-Pix Dual Pixel CMOS AF sensor. Each pixel has twin photo diodes that can be read together for image capture or separately for fast focusing during movie capture. Sensor sensitivity doesn’t appear to be adversely affected with the EOS 70D offering ISO settings up to 12,800, expandable to 25,600. In stills mode and continuous shooting up to 7fps.The EOS 70D adopts a viewfinder based", + "linkReview": "https://www.dxomark.com/canon-eos-70d-review-how-does-the-new-dual-pixel-cmos-af-sensor-perform/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_70D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Jul. 2013  ", + "Indicative price (USD)": "\n 1199  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3670  \n ", + "Sensor photo detectors (Mpix) ": "20.17  ", + "Sensor size (mm)": "15 x 22.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": "Lithium-Ion LP-E6 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.95 ", + "View finder coverage": "98 ", + "Mirror lockup": " ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Predictive AI Servo AF, AI Focus AF,*Switches between One-Shot AF and AI Servo AF,Manual focus ", + "Number of autofocus points": "19 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous L(3fps), Continuous H(7fps), Self timer (2s+remote, 10s +remote), Silent single shooting, Silent continuous shooting ", + "Buffer size": " ", + "Recording medium": "D/SDHC/SDXC ", + "Image format": "JPEG,RAW(CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB,HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 750D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 750D.txt new file mode 100644 index 0000000..a6834d2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 750D.txt @@ -0,0 +1,96 @@ +{ + "id": 1010, + "price": 750, + "year": "2015", + "brand": "Canon", + "rankDxo": 71, + "rankColor": 22.7, + "rankDyn": 12, + "rankLln": 919, + "rankDxo_ranking": 151, + "rankColor_ranking": 168, + "rankDyn_ranking": 173, + "rankLln_ranking": 121, + "name": "Canon EOS 750D", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Feb. 2015", + "launchDateGraph": "2015-02-06", + "sensorraw": 24.23, + "link": "/Cameras/Canon/EOS-750D", + "chapo": " Introduction Specifications and FeaturesAnnounced earlier in the year as the replacement to the entry-level 18-Mpix EOS 650D (known as the Rebel T5i in the US), the EOS 750D (Rebel T6i) shares many of the same features and body as the similar-looking EOS 760D (Rebel T6s) launched at the same time. The similarities don’t end there. Both models use a 24.2-Mpix APS-C size CMOS sensor with a higher pixel count than their predecessors and other current models in the range. By contrast, both the EOS 70D and high-end EOS 7D Mk II feature 20.2 Mpix sensors.One other", + "linkReview": "https://www.dxomark.com/canon-eos-750d-rebel-t6i-sensor-review-first-canon-aps-c-format-camera-to-offer-12-stop-dynamic-range/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_750D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2015  ", + "Indicative price (USD)": "\n 750  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4022  \n ", + "Sensor photo detectors (Mpix) ": "24.23  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "510", + "Battery type": "One Battery Pack LP-E8 ", + "Battery weight (gr)": "40", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.82 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF\nPredictive AI Servo AF\nAI Focus AF (*Switches between One-Shot AF and AI Servo AF)\n*Switches between One-Shot AF and AI Servo AF\nManual focus (MF) ", + "Number of autofocus points": "19 ", + "Exposure bracketing": "+/- 2 stops in 1/3- or 1/2-stop increments  ", + "Exposure compensation": "+/- 5 stops in 1/3- or 1/2-stop increments  ", + "Drive modes": "Single shooting\nContinuous shooting\nMax. approx. 5.0 fps\n* At 1/500 sec. or faster shutter speed, and at the maximum aperture (varies depending on the lens).\nSilent single shooting\nSilent continuous shooting\nMax. approx. 3.0 fps\n10-sec. self timer/remote  ", + "Buffer size": "unlimited (JPEG), 8 (RAW), 6 (RAW+JPEG) ", + "Recording medium": "SD card, SDHC card, SDXC memory card ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/NTSC-PAL/mini-HDMI/3.5mm diameter stereo mini-jack ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 760D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 760D.txt new file mode 100644 index 0000000..6fce59e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 760D.txt @@ -0,0 +1,96 @@ +{ + "id": 1011, + "price": 850, + "year": "2015", + "brand": "Canon", + "rankDxo": 70, + "rankColor": 22.6, + "rankDyn": 12, + "rankLln": 915, + "rankDxo_ranking": 156, + "rankColor_ranking": 178, + "rankDyn_ranking": 173, + "rankLln_ranking": 122, + "name": "Canon EOS 760D", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Feb. 2015", + "launchDateGraph": "2015-02-06", + "sensorraw": 24.23, + "link": "/Cameras/Canon/EOS-760D", + "chapo": " Introduction Specification and FeaturesAnnounced alongside the EOS 750D (known as the Rebel T6i in the US), the EOS 760D (Rebel T6i) is the first model from Canon at this level to feature a top-plate LCD control panel. Like its sibling, however, it shares many of the same features, including a 24.2-Mpix APS-C size CMOS sensor, DIGIC 6 processor, new light meter sensor, and built-in Wi-Fi with NFC. With a native ISO range of 100–12,800 along with expansion to ISO 25,600, the 24.2 APS-C size CMOS sensor is a new model with a greater pixel count than previous", + "linkReview": "https://www.dxomark.com/canon-eos-760d-rebel-t6s-sensor-review-on-par-with-canon-s-high-end-aps-c-models/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_760D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2015  ", + "Indicative price (USD)": "\n 850  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4022  \n ", + "Sensor photo detectors (Mpix) ": "24.23  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "510", + "Battery type": "One Battery Pack LP-E8 ", + "Battery weight (gr)": "40", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.82 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF\nPredictive AI Servo AF\nAI Focus AF (*Switches between One-Shot AF and AI Servo AF)\n*Switches between One-Shot AF and AI Servo AF\nManual focus (MF) ", + "Number of autofocus points": "19 ", + "Exposure bracketing": "+/- 2 stops in 1/3- or 1/2-stop increments  ", + "Exposure compensation": "+/- 5 stops in 1/3- or 1/2-stop increments  ", + "Drive modes": "Single shooting\nContinuous shooting\nMax. approx. 5.0 fps\n* At 1/500 sec. or faster shutter speed, and at the maximum aperture (varies depending on the lens).\nSilent single shooting\nSilent continuous shooting\nMax. approx. 3.0 fps\n10-sec. self timer/remote  ", + "Buffer size": "unlimited (JPEG), 8 (RAW), 6 (RAW+JPEG) ", + "Recording medium": "SD card, SDHC card, SDXC memory card ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/NTSC-PAL/mini-HDMI/3.5mm diameter stereo mini-jack ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 7D Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 7D Mark II.txt new file mode 100644 index 0000000..4f891fb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 7D Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 977, + "price": 1800, + "year": "2014", + "brand": "Canon", + "rankDxo": 70, + "rankColor": 22.4, + "rankDyn": 11.8, + "rankLln": 1082, + "rankDxo_ranking": 163, + "rankColor_ranking": 195, + "rankDyn_ranking": 187, + "rankLln_ranking": 96, + "name": "Canon EOS 7D Mark II", + "pixelDepth": 20.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2014", + "launchDateGraph": "2014-09-15", + "sensorraw": 20.17, + "link": "/Cameras/Canon/EOS-7D-Mark-II", + "chapo": " The new Canon 7D Mark II’s magnesium alloy body is weather sealed and boasts a 10fps burst rate and improved 65-point autofocus system with iTR tracking technologyCanon 7D Mark II Specification: Same 20.2Mp resolution from the Canon 70DStill reluctant to break through the 21Mp barrier with its APS-C DSLRs, the new Canon 7D Mark II features a 20.2Mp APS-C CMOS sensor at the heart of its redesigned shell. The new model also boasts Canon’s latest DIGIC 6 image processing engine and improved ISO sensitivity of ISO 100-16,000 (expandable to 51,200). In terms of resolution the 20.2Mp sensor", + "linkReview": "https://www.dxomark.com/canon-7d-mark-ii-preview-new-flagship-canon-aps-c-dslr-unveiled/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D_Mark_II/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2014  ", + "Indicative price (USD)": "\n 1800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3670  \n ", + "Sensor photo detectors (Mpix) ": "20.17  ", + "Sensor size (mm)": "15 x 22.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, LP-E6N (or LP-E6), 7.2V, 1800mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "1 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Predictive AI Servo AF (AI Servo AF III), AI Focus AF, Switches between One-Shot AF and AI Servo AF automatically ", + "Number of autofocus points": "65 ", + "Exposure bracketing": "+/-3 stops in 1/3-or 1/2-stop increments ", + "Exposure compensation": "+/-5 stops in 1/3-or 1/2-stop increments ", + "Drive modes": "Single, High-speed continuous, Low-speed continuous shooting, Silent single shooting, Silent continuous shooting, 10-sec self-timer/remote control, 2-sec. self-timer/remote control ", + "Buffer size": "125 (JPEG), 24 (RAW), 18 (RAW+JPEG) ", + "Recording medium": "CF Cards (Type I); Compatible with UDMA CD cards; SD, SDHC, and SDXC Memory Cards ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB 3.0, Video OUT terminal (NTSC/PAL selectable), mini-HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 59.94 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "MPEG-4 AVC / H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 7D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 7D.txt new file mode 100644 index 0000000..f5c63b1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 7D.txt @@ -0,0 +1,96 @@ +{ + "id": 619, + "price": 1974, + "year": "2009", + "brand": "Canon", + "rankDxo": 66, + "rankColor": 22, + "rankDyn": 11.7, + "rankLln": 854, + "rankDxo_ranking": 193, + "rankColor_ranking": 226, + "rankDyn_ranking": 193, + "rankLln_ranking": 136, + "name": "Canon EOS 7D", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2009", + "launchDateGraph": "2009-09-01", + "sensorraw": 18.84, + "link": "/Cameras/Canon/EOS-7D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_7D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2009  ", + "Indicative price (USD)": "\n 1974  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5360 x 3515  \n ", + "Sensor photo detectors (Mpix) ": "18.84  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "EOS EF  ", + "Weight (gr)": "820", + "Battery type": "Canon Li-Ion LP-E6 & CR1616 ", + "Battery weight (gr)": "40", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Optical  ", + "View finder magnification": "1 ", + "View finder coverage": " ", + "Mirror lockup": "Yes ", + "View finder diopter": "Pentaprism, 100% coverage ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "One-shot, AI Servo, AI Focus, Manual ", + "Autofocus modes": "TTL-CT-SIR ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "63 area Eval ", + "Exposure compensation": "-3 to +3 EV in 1/3 EV or 1/2 EV steps ", + "Drive modes": "single, continuous, self timer ", + "Buffer size": "N/A ", + "Recording medium": "Compact Flash (Type I or II), UDMA, Microdrive cards ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "-3 to +3 EV steps ", + "Connectivity": "USB, video ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS 80D.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS 80D.txt new file mode 100644 index 0000000..130fd6f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS 80D.txt @@ -0,0 +1,96 @@ +{ + "id": 1076, + "price": 1200, + "year": "2016", + "brand": "Canon", + "rankDxo": 79, + "rankColor": 23.6, + "rankDyn": 13.2, + "rankLln": 1135, + "rankDxo_ranking": 83, + "rankColor_ranking": 91, + "rankDyn_ranking": 62, + "rankLln_ranking": 85, + "name": "Canon EOS 80D", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2016", + "launchDateGraph": "2016-02-18", + "sensorraw": 25.5, + "link": "/Cameras/Canon/EOS-80D", + "chapo": " Specifications and Features The Canon EOS 80D is the latest in a long line of DSLRs using an APS-C-size sensor designed to appeal to enthusiasts. It is the replacement for the EOS 70D, and like that model, it places a strong emphasis on video as well as stills. Also like its predecessor, the EOS 80D adopts a new viewfinder-based AF system for stills, and another separate on-sensor AF system for live view and video.Canon has increased the number of viewfinder AF points from 19 on the 70D to 45, and has made them all vertical and horizontal", + "linkReview": "https://www.dxomark.com/canon-eos-80d-sensor-review-dynamic-performer/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_80D/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2016  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6288 x 4056  \n ", + "Sensor photo detectors (Mpix) ": "25.5  ", + "Sensor size (mm)": "15 x 22.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0.1 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-S  ", + "Weight (gr)": "650", + "Battery type": "Li-ion, LP-E6N, 7.2V, 1865mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.95 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Predictive AI Servo AF, AI Focus AF, MF ", + "Number of autofocus points": "45 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 5 EV in 1/3- or 1/2-stop increments ", + "Drive modes": "Single, Silent single, Silent continuous (3 fps), high-speed continuous (7 fps), low-speed continuous (3 fps), self-timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": " ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "MPEG4, H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS M.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS M.txt new file mode 100644 index 0000000..0b75867 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS M.txt @@ -0,0 +1,96 @@ +{ + "id": 819, + "price": 799, + "year": "2012", + "brand": "Canon", + "rankDxo": 65, + "rankColor": 22.1, + "rankDyn": 11.2, + "rankLln": 827, + "rankDxo_ranking": 207, + "rankColor_ranking": 209, + "rankDyn_ranking": 247, + "rankLln_ranking": 142, + "name": "Canon EOS M", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jul. 2012", + "launchDateGraph": "2012-07-23", + "sensorraw": 18.63, + "link": "/Cameras/Canon/EOS-M", + "chapo": " Introduction Yesterday, the electronics giant announced its first mirrorless camera, the Canon EOS M, with hopes of making waves in an already crowded field that includes at least half-a-dozen of Canon’s rivals: Nikon and its recently launched 1 J1 and V1 models, Panasonic and its popular Lumix DMC-G1, Sony’s NEX line, Leica’s retro-looking M series, in addition to players Pentax, Olympus, and Samsung.&nbsp;&nbsp;The EOS M is a camera that resembles a compact and lightweight DSC. But like similar mirrorless cameras, it allows for the versatility and image quality of a", + "linkReview": "https://www.dxomark.com/canon-eos-m-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jul. 2012  ", + "Indicative price (USD)": "\n 799  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5280 x 3528  \n ", + "Sensor photo detectors (Mpix) ": "18.63  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.3  ", + "Live view ": "Yes ", + "Stabilization ": " ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-M  ", + "Weight (gr)": " ", + "Battery type": "Lithium-Ion LP-E12 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus One-Shot AF or Servo AF, Manual focus, AF + MF (manual focus after One-Shot AF) ", + "Number of autofocus points": "31 ", + "Exposure bracketing": " ", + "Exposure compensation": "+ or - 3 stops in 1/3- or 1/2-stop increments ", + "Drive modes": "Single, Continuous, 10-sec. self-timer/Remote control, 2-sec. self-timer, Continuous shooting after 10-sec. self-timer (2 to 10 shots) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI/Wireless(EyeFi) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS M10.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS M10.txt new file mode 100644 index 0000000..78f911f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS M10.txt @@ -0,0 +1,96 @@ +{ + "id": 1048, + "price": 600, + "year": "2015", + "brand": "Canon", + "rankDxo": 65, + "rankColor": 22.2, + "rankDyn": 11.4, + "rankLln": 753, + "rankDxo_ranking": 201, + "rankColor_ranking": 206, + "rankDyn_ranking": 226, + "rankLln_ranking": 171, + "name": "Canon EOS M10", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2015", + "launchDateGraph": "2015-10-13", + "sensorraw": 18.1, + "link": "/Cameras/Canon/EOS-M10", + "chapo": " Introduction Together with a large APS-C imaging sensor, the new M10 also features a wide ISO sensitivity range (125 to 12,800 ISO, expandable to 25,600), HD video capture, 3.0-inch touchscreen LCD, built-in flash and Wi-Fi / NFC connectivity. The diminutive design excludes both an electronic viewfinder (EVF) and a hotshoe, however, so it’s not possible to attach either an external flash or an accessory EVF unit to the new EOS M10.For $449, the EOS M10 kit comes supplied with the new EF-M 15-45mm f/3.5-6.3 IS STM lens that features image stabilization and Canon’s “stepping” autofocus motor", + "linkReview": "https://www.dxomark.com/eos-m10-review-updated-mid-range-canon-hybrid/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M10/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2015  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5208 x 3476  \n ", + "Sensor photo detectors (Mpix) ": "18.1  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.6  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-M  ", + "Weight (gr)": " ", + "Battery type": " Li-ion, LP-E12, 1200mAh, 7.2V ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "one-shot, AI-Servo, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous, Self timer (2s, 10s, custom) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS M100.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS M100.txt new file mode 100644 index 0000000..6b03b11 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS M100.txt @@ -0,0 +1,96 @@ +{ + "id": 1179, + "price": 600, + "year": "2017", + "brand": "Canon", + "rankDxo": 78, + "rankColor": 23.5, + "rankDyn": 12.9, + "rankLln": 1272, + "rankDxo_ranking": 93, + "rankColor_ranking": 107, + "rankDyn_ranking": 84, + "rankLln_ranking": 70, + "name": "Canon EOS M100", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2017", + "launchDateGraph": "2017-08-29", + "sensorraw": 25.5, + "link": "/Cameras/Canon/EOS-M100", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M100/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2017  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6288 x 4056  \n ", + "Sensor photo detectors (Mpix) ": "25.5  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "6.1  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-M  ", + "Weight (gr)": "266", + "Battery type": "Li-ion, LP-E12, 7.2V, 875mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Servo AF, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 3 EV in 1/3-stop increments ", + "Drive modes": "Single shooting, Continuous shooting, Self-timer ", + "Buffer size": "89 (JPEG), 21 (RAW), 19 (RAW+JPEG) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 AVC / H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS M2.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS M2.txt new file mode 100644 index 0000000..914f369 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS M2.txt @@ -0,0 +1,96 @@ +{ + "id": 927, + "price": 650, + "year": "2013", + "brand": "Canon", + "rankDxo": 65, + "rankColor": 22.1, + "rankDyn": 11.4, + "rankLln": 855, + "rankDxo_ranking": 201, + "rankColor_ranking": 218, + "rankDyn_ranking": 233, + "rankLln_ranking": 134, + "name": "Canon EOS M2", + "pixelDepth": 18, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Dec. 2013", + "launchDateGraph": "2013-12-03", + "sensorraw": 18.1, + "link": "/Cameras/Canon/EOS-M2", + "chapo": " Introduction Canon was the last of the major manufacturers to introduce a mirrorless model, but rather than shy away from smaller size sensors the EOS M used the same APS-C size CMOS sensor found in the EOS Rebel range of DSLRs. &nbsp;In fact the EOS M adopted the same 18-Mpix CMOS sensor as the Rebel T4i (EOS 650D) and introduced a small number of lenses adopting a new, smaller EF-M lens mount.&nbsp;Announced late last year (December, 2013), the EOS M2 has been updated with the same Hybrid CMOS II sensor as the company’s Rebel SL1 (100D).", + "linkReview": "https://www.dxomark.com/canon-eos-m2-review-incremental-upgrade/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Dec. 2013  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5208 x 3476  \n ", + "Sensor photo detectors (Mpix) ": "18.1  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.6  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-M  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, LP-E12, 7.2V, 875mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Servo AF ", + "Number of autofocus points": "31 ", + "Exposure bracketing": "+/-2EV in 1/3 or 1/2 stop increments  ", + "Exposure compensation": "+/-3EV to 1/3 or 1/2 stop increments ", + "Drive modes": "Single, Continuous, self-timer (2 or 10 seconds), 10 seconds delay self-timer before Continuous ", + "Buffer size": "13 (JPEG Large), 17 (JPEG Fine), 5 (RAW), 3 (RAW+JPEG) ", + "Recording medium": "SD, SDHC, SDXC (compatible with UHS-I) ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV (NTSC / PAL compatible), USB 2.0 (Hi-Speed), mini HDMI (C-type), Eye-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS M3.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS M3.txt new file mode 100644 index 0000000..5950d18 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS M3.txt @@ -0,0 +1,96 @@ +{ + "id": 1019, + "price": 870, + "year": "2015", + "brand": "Canon", + "rankDxo": 72, + "rankColor": 22.8, + "rankDyn": 11.8, + "rankLln": 1169, + "rankDxo_ranking": 137, + "rankColor_ranking": 143, + "rankDyn_ranking": 188, + "rankLln_ranking": 79, + "name": "Canon EOS M3", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2015", + "launchDateGraph": "2015-02-06", + "sensorraw": 24.23, + "link": "/Cameras/Canon/EOS-M3", + "chapo": " Redesigned with a more DSLR feel, the new Canon EOS M3 features a larger and more sculpted handgrip and extra externally-mounted controls for better camera handling.Canon EOS M3 specification: Canon’s first 24.2Mp APS-C sensor and DIGIC processorIt’s fair to say Canon has been a little slow in embracing the mirrorless camera revolution, so while the likes of Panasonic and Sony have a large range of different hybrid formats available, Canon’s EOS M series is only into its third release. What’s more, with the original two versions of the EOS M somewhat underwhelming, Canon enthusiasts will be pleased", + "linkReview": "https://www.dxomark.com/canon-eos-m3-preview-a-revamp-for-canon-s-mirrorless-eos-m3/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M3/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2015  ", + "Indicative price (USD)": "\n 870  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4022  \n ", + "Sensor photo detectors (Mpix) ": "24.23  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.61 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-M  ", + "Weight (gr)": "320.5", + "Battery type": "Li-ion, LP-E17, 7.2V, 1040mAh ", + "Battery weight (gr)": "45.4", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Servo AF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "+/-2 EV (3 frames at 1/3 EV steps) ", + "Exposure compensation": "+/- 3 EV (at 1/3 EV steps) ", + "Drive modes": "Single, Continuous, Self timer (2s, 10s, remote) ", + "Buffer size": "1000 (JPEG), 5 (RAW) ", + "Recording medium": "SD, SDHC, SDXC (UHS-I compatible) ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WiFI/HDMI?External mix ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 29.97 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS M5.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS M5.txt new file mode 100644 index 0000000..ae54987 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS M5.txt @@ -0,0 +1,96 @@ +{ + "id": 1113, + "price": 980, + "year": "2016", + "brand": "Canon", + "rankDxo": 77, + "rankColor": 23.4, + "rankDyn": 12.4, + "rankLln": 1262, + "rankDxo_ranking": 106, + "rankColor_ranking": 111, + "rankDyn_ranking": 133, + "rankLln_ranking": 71, + "name": "Canon EOS M5", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2016", + "launchDateGraph": "2016-09-15", + "sensorraw": 25.5, + "link": "/Cameras/Canon/EOS-M5", + "chapo": " Reminiscent of its DSLRs in design, it is the first in the series to adopt a built-in electronic viewfinder with 2.36M-dot OLED display. With twin-command dials, as well as both mode and exposure compensation dials, it also features a much higher level of control than previously seen in the M-series.Add continuous shooting up to 9 fps (7 fps with C-AF) and digital 5-axis image stabilization (in conjunction with in-lens IS) during video capture, plus the inevitable Wi-Fi and Bluetooth connectivity, and you have a compelling addition to the lineup. Highlights (specifications)24.2-MP APS-C CMOS sensorDual Pixel AFDIGIC 7 image", + "linkReview": "https://www.dxomark.com/canon-eos-m5-sensor-review-made-for-mirrorless/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2016  ", + "Indicative price (USD)": "\n 980  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6288 x 4056  \n ", + "Sensor photo detectors (Mpix) ": "25.5  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.61 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-M  ", + "Weight (gr)": "380", + "Battery type": "Li-ion, LP-E17, 7.2V, 1040mAh ", + "Battery weight (gr)": "45.4", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1620000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-Shot AF, Servo AF, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "+/- 2 EV in 1/3-stop increments ", + "Exposure compensation": "+/- 3 EV in 1/3-stop increments ", + "Drive modes": "Single, high-speed continuous, low-speed continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 AVC / H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon EOS M6.txt b/scr/模糊专家系统/scrape/scraped/Canon EOS M6.txt new file mode 100644 index 0000000..2f161d1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon EOS M6.txt @@ -0,0 +1,96 @@ +{ + "id": 1158, + "price": 780, + "year": "2017", + "brand": "Canon", + "rankDxo": 78, + "rankColor": 23.4, + "rankDyn": 12.6, + "rankLln": 1317, + "rankDxo_ranking": 99, + "rankColor_ranking": 110, + "rankDyn_ranking": 110, + "rankLln_ranking": 65, + "name": "Canon EOS M6", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2017", + "launchDateGraph": "2017-02-15", + "sensorraw": 25.5, + "link": "/Cameras/Canon/EOS-M6", + "chapo": " What’s new is the M6’s more compact body design, intended to appeal to the “take anywhere” camera enthusiast, and doing away with the M5’s built-in electronic viewfinder (EVF). Instead, the M6 is compatible with the optional $210 EVF-DC2 accessory, which offers 2.36m-dot resolution and attaches via the M6’s hotshoe. The M6 also adds a couple of new features, including a tilting flip-up LCD screen for selfies and — in a first for Canon cameras — a built-in 5-axis image stabilization system for video (but not for stills).Compatible with the existing line up of 7 EF-M mount lenses,", + "linkReview": "https://www.dxomark.com/canon-eos-m6-sensor-review-worthy-upgrade/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EOS_M6/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2017  ", + "Indicative price (USD)": "\n 780  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6288 x 4056  \n ", + "Sensor photo detectors (Mpix) ": "25.5  ", + "Sensor size (mm)": "14.9 x 22.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.6 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Canon EF-M  ", + "Weight (gr)": "343", + "Battery type": "Li-ion, LP-E17, 7.2V, 1040mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "one-shot, AI-Servo, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "3 shots, +/- 2 EV, 1/3-stop increments ", + "Exposure compensation": "+/-3 EV in 1/3 stop increments ", + "Drive modes": "Single, High-Speed Continuous, Low-Speed Continuous, Self timer (2s, 10s, Custom, Remote) ", + "Buffer size": "17 (JPEG), 26 (RAW) ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G1 X Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G1 X Mark II.txt new file mode 100644 index 0000000..1d578ad --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G1 X Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 941, + "price": 800, + "year": "2014", + "brand": "Canon", + "rankDxo": 58, + "rankColor": 21.5, + "rankDyn": 10.8, + "rankLln": 581, + "rankDxo_ranking": 257, + "rankColor_ranking": 254, + "rankDyn_ranking": 296, + "rankLln_ranking": 215, + "name": "Canon PowerShot G1 X Mark II", + "pixelDepth": 13.1, + "sensor": "", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Feb. 2014", + "launchDateGraph": "2014-02-12", + "sensorraw": 14.74, + "link": "/Cameras/Canon/PowerShot-G1-X-Mark-II", + "chapo": " Introduction Announced in February 2014, the G1X II is a significant revision of the G1X from early 2012. Like its predecessor the G1X II has an unusually large CMOS sensor – a 1.5” type, which is somewhere between Four Thirds and APS-C - the largest currently used in a compact camera with a fixed zoom. Canon has taken an unusual route with a large sensor and lowered the pixel count slightly from 14-Mpix in the G1X to 12.8-Mpix in the Mark II. They’ve also revised the body, removing the optical viewfinder completely while using the opportunity", + "linkReview": "https://www.dxomark.com/canon-powershot-g1x-ii-sensor-review-strong-contender/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1_X_Mark_II/vignette3.png", + "Type": "High-end compact ", + "Announced": "Feb. 2014  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4432 x 3326  \n ", + "Sensor photo detectors (Mpix) ": "14.74  ", + "Sensor size (mm)": "13.4 x 17.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.85 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "5.2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "516", + "Battery type": "Li-Ion, NB-12L ", + "Battery weight (gr)": "34", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "one-shot, MF ", + "Number of autofocus points": "31 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": " Single\n Continuous\n Continuous with AF\n Self-timer (10-sec., 2-sec., custom: 0 - 15 sec. (in one-second increments), 20/25/30 sec.)  ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC/UHS-I Memory Cards ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G12.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G12.txt new file mode 100644 index 0000000..275d108 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G12.txt @@ -0,0 +1,96 @@ +{ + "id": 665, + "price": 499, + "year": "2010", + "brand": "Canon", + "rankDxo": 47, + "rankColor": 20.4, + "rankDyn": 11.2, + "rankLln": 161, + "rankDxo_ranking": 322, + "rankColor_ranking": 317, + "rankDyn_ranking": 247, + "rankLln_ranking": 327, + "name": "Canon PowerShot G12", + "pixelDepth": 10, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-14", + "sensorraw": 10, + "link": "/Cameras/Canon/PowerShot-G12", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G12/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3648 x 2736  \n ", + "Sensor photo detectors (Mpix) ": "10  ", + "Sensor size (mm)": "5.6 x 7.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.59 ", + "Aspect Ratio": "4:3, 3:2, 16:9, 1:1, 4:5 ", + "ISO latitude ": "80 - 3200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 15.0  ", + "Frame rate (fps)": "2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes (inside mounted lens) ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NB-7L, 7.4V, 1050mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": "N/A ", + "View finder type": "optical (tunnel) ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "2.8 ", + "Monitor pixel": "461000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus: Single, Continuous, Servo AF\nAF frame: Face AiAF, Center, FlexiZone, Tracking AF ", + "Number of autofocus points": " ", + "Exposure bracketing": "3 shots with amount of compensation +/- 2EV in 0.3EV increments ", + "Exposure compensation": "+/-2 stops in 1/3-stop increments ", + "Drive modes": "Single, Continuous, Continuous Shooting AF, Continuous Shooting LV, Self-timer (Delay time (0 - 15 sec. (in one-second increments), 20/25/30 sec.) and number of shots (1 - 10 shots (in one-shot increments)) can be specified) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC Memory Card, SDXC Memory Card, MultiMediaCard, MMC Plus Card, HC MMC Plus Card ", + "Image format": "JPG, RAW (CR2), DPOF ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 Hi-Speed, HDMI mini connector, AV (NTSC/PAL) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (movies with sound) ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 / 24 fps ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G16.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G16.txt new file mode 100644 index 0000000..1dbe10a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G16.txt @@ -0,0 +1,96 @@ +{ + "id": 903, + "price": 549, + "year": "2013", + "brand": "Canon", + "rankDxo": 54, + "rankColor": 21, + "rankDyn": 11.7, + "rankLln": 230, + "rankDxo_ranking": 282, + "rankColor_ranking": 288, + "rankDyn_ranking": 194, + "rankLln_ranking": 305, + "name": "Canon PowerShot G16", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Aug. 2013", + "launchDateGraph": "2013-08-22", + "sensorraw": 12.84, + "link": "/Cameras/Canon/PowerShot-G16", + "chapo": " Introduction Aimed squarely at the enthusiast, the PowerShot G16 is Canon’s update to the firm’s high-end G15 model. As with the new PowerShot S120, it has a 12.1-MPix 1/1.7-inch BSI-type CMOS sensor and new Digic 6 with sensitivity running to ISO 12,800. Although the lens is the same bright image stabilized 28-140 mm f1.8-2.8 as found on the earlier G15, the new camera gets some of the same upgrades as the S120, including 1080/60p video, faster AF operation and improved Wi-Fi connectivity, (though not NFC as with some rivals). Unlike the rival Nikon P7800, the G16", + "linkReview": "https://www.dxomark.com/canon-powershot-g16-review-small-wonder/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G16/vignette3.png", + "Type": "Compact ", + "Announced": "Aug. 2013  ", + "Indicative price (USD)": "\n 549  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4192 x 3062  \n ", + "Sensor photo detectors (Mpix) ": "12.84  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.6 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 250.0  ", + "Frame rate (fps)": "12.2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "CB-2LCE ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "922000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single, Continuous, Servo AF/AE, Trackinf AF, Manual ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Auto Drive, Continuous, Continuous with AF, Self-Timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC (UHS Speed Class 1 compatible) ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G1X.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G1X.txt new file mode 100644 index 0000000..2c684d3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G1X.txt @@ -0,0 +1,96 @@ +{ + "id": 769, + "price": 799, + "year": "2012", + "brand": "Canon", + "rankDxo": 60, + "rankColor": 21.7, + "rankDyn": 10.8, + "rankLln": 644, + "rankDxo_ranking": 249, + "rankColor_ranking": 240, + "rankDyn_ranking": 292, + "rankLln_ranking": 198, + "name": "Canon PowerShot G1X", + "pixelDepth": 14.3, + "sensor": "", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jan. 2012", + "launchDateGraph": "2012-01-09", + "sensorraw": 15.13, + "link": "/Cameras/Canon/PowerShot-G1X", + "chapo": " Introduction DxOMark measurements for the Canon PowerShot G1XLet’s turn our attention now to the DxOMark lab results for the PowerShot G1X:A DxOMark overall score of 60, (portrait) color depth at 21.7, dynamic range at 10.8, and low-light ISO at 644: clearly we are no longer in the typical world of compact cameras and their small sensors. The PowerShot G1X is achieving scores close to those for Canon’s entry-level reflex line (see the results of the Canon EOS 1100D, for example).In concrete terms, what does all this mean?You have a reflex-quality", + "linkReview": "https://www.dxomark.com/canon-powershot-g1x-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G1X/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jan. 2012  ", + "Indicative price (USD)": "\n 799  \n ", + "Sensor type ": " CMOS  ", + "Resolution ": "\n 4496 x 3366  \n ", + "Sensor photo detectors (Mpix) ": "15.13  ", + "Sensor size (mm)": "14 x 18.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.85 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "4.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "  ", + "Weight (gr)": "492", + "Battery type": "Li-ion, BP NB-10L, 7.4 V, 920 mAh ", + "Battery weight (gr)": "40", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "922000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": "+/-3 stops in 1/3-stop increments ", + "Drive modes": " Single\n Continuous\n Continuous with AF\n Self-timer (10-sec., 2-sec., custom: 0 - 15 sec. (in one-second increments), 20/25/30 sec.)  ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": " JPEG (Exif 2.3)\n RAW (CR2)\n DPOF 1.1 ", + "White balance bracketing": "No ", + "Connectivity": "USB USB 2.0 (480Mbit/sec)\nHDMI Yes (Mini)\nWireless None\nRemote control Yes (Optional (RS60-E3)) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes, Stereo ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G3 X.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G3 X.txt new file mode 100644 index 0000000..f99ca26 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G3 X.txt @@ -0,0 +1,96 @@ +{ + "id": 1037, + "price": 1000, + "year": "2015", + "brand": "Canon", + "rankDxo": 63, + "rankColor": 21.4, + "rankDyn": 12.3, + "rankLln": 521, + "rankDxo_ranking": 227, + "rankColor_ranking": 259, + "rankDyn_ranking": 156, + "rankLln_ranking": 257, + "name": "Canon PowerShot G3 X", + "pixelDepth": 20.2, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2015", + "launchDateGraph": "2015-06-18", + "sensorraw": 20.44, + "link": "/Cameras/Canon/PowerShot-G3-X", + "chapo": " Introduction Specifications and FeaturesAnnounced in the summer, the PowerShot G3 X is a premium travel zoom model with a large one-inch-type type 20.2-Mpix BSI (back-illuminated) CMOS sensor and a 24-600mm equivalent f2.8-5.6 power zoom and sonic-type focusing lens. Although it doesn’t have a built-in electronic viewfinder, it features a larger-than-average 3.2-inch high-res (1.62M-dot) tilting touchscreen LCD panel, and if you really can’t do without an EVF, the 2.36M-dot, tilting EVF-DC1 is available for an extra $240. Despite that, the G3 X boasts some unusual features, not the least is the addition of dust and water-resistant sealing,", + "linkReview": "https://www.dxomark.com/canon-powershot-g3-x-sensor-review-solid-performer/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G3_X/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2015  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5536 x 3693  \n ", + "Sensor photo detectors (Mpix) ": "20.44  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "125 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "5.9  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "690", + "Battery type": "NB-10L, Li-Ion, 7.4V, 920mAh ", + "Battery weight (gr)": "42", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1620000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "one-shot, AI-Servo, AI Focus, MF ", + "Number of autofocus points": "31 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Auto Drive, Continuous, Continuous with AF, Self-Timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": " ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G5 X.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G5 X.txt new file mode 100644 index 0000000..261250a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G5 X.txt @@ -0,0 +1,96 @@ +{ + "id": 1050, + "price": 800, + "year": "2015", + "brand": "Canon", + "rankDxo": 62, + "rankColor": 21.4, + "rankDyn": 12.3, + "rankLln": 471, + "rankDxo_ranking": 237, + "rankColor_ranking": 261, + "rankDyn_ranking": 156, + "rankLln_ranking": 280, + "name": "Canon PowerShot G5 X", + "pixelDepth": 20, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Oct. 2015", + "launchDateGraph": "2015-10-13", + "sensorraw": 20.44, + "link": "/Cameras/Canon/PowerShot-G5-X", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G5_X/vignette3.png", + "Type": "High-end compact ", + "Announced": "Oct. 2015  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5536 x 3693  \n ", + "Sensor photo detectors (Mpix) ": "20.44  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "125 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "5.9  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NB-13L, 3.6V, 1250mAh, ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single, Continuous, Servo AF/AE [6], Touch AF ", + "Number of autofocus points": "31 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Auto Drive, Continuous, Continuous with AF, Self-Timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G7 X.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G7 X.txt new file mode 100644 index 0000000..a0e021a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G7 X.txt @@ -0,0 +1,96 @@ +{ + "id": 978, + "price": 700, + "year": "2014", + "brand": "Canon", + "rankDxo": 71, + "rankColor": 23, + "rankDyn": 12.7, + "rankLln": 556, + "rankDxo_ranking": 154, + "rankColor_ranking": 134, + "rankDyn_ranking": 96, + "rankLln_ranking": 232, + "name": "Canon PowerShot G7 X", + "pixelDepth": 20.2, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2014", + "launchDateGraph": "2014-09-15", + "sensorraw": 20.89, + "link": "/Cameras/Canon/PowerShot-G7-X", + "chapo": " The new Canon G7 X’s all-metal body features a bright 24-100mm f/1.8-2.8 zoom lens with customisable lens control ring for easily adjusting aperture or shutter valuesCanon G7 X Specification: Longer 24-100mm focal length Whilst Canon has always had a good selection of high-end compact cameras in its range, think G10, S120 or more recently the G1 X, the new Canon G7 X is their first model to feature a 1-inch type sensor. It’s the same physical sensor size Sony has opted for in their RX100 series of premium compacts and boasts a similar 20.2Mp resolution, too.  Just like", + "linkReview": "https://www.dxomark.com/canon-g7-x-preview-premium-compact-with-a-1-sensor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G7_X/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2014  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5632 x 3710  \n ", + "Sensor photo detectors (Mpix) ": "20.89  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "125 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/2000 - 40.0  ", + "Frame rate (fps)": "6.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "279", + "Battery type": "Battery Pack NB-13L ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Continuous, Servo AF, Manual Focus ", + "Number of autofocus points": "31 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single\nContinuous\nContinuous with AF\nSelf-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC and UHS-I Memory Cards ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0, micro-HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G9 X Mark II.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G9 X Mark II.txt new file mode 100644 index 0000000..dad88d8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G9 X Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 1148, + "price": 530, + "year": "2017", + "brand": "Canon", + "rankDxo": 65, + "rankColor": 21.9, + "rankDyn": 12.5, + "rankLln": 522, + "rankDxo_ranking": 203, + "rankColor_ranking": 231, + "rankDyn_ranking": 120, + "rankLln_ranking": 254, + "name": "Canon PowerShot G9 X Mark II", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "compact", + "status": "TESTED", + "launchDate": "Jan. 2017", + "launchDateGraph": "2017-01-04", + "sensorraw": 20.44, + "link": "/Cameras/Canon/PowerShot-G9-X-Mark-II", + "chapo": " This new model has the same familiar body design as its predecessor and uses the same 20.1-MP sensor and 28-82mm equivalent F2-4.9 zoom. Internally, however, the new model has the new and much more powerful Digic VII processor. First seen on the G7 X Mark II, this new processor can deliver continuous RAW shooting at up to 8.2 fps for 21 captures, improved AF tracking, enhanced scene recognition, and in-camera RAW conversion. Canon has also added dual sensing image stabilization that reportedly offers up to 3.5 stops of correction. Overall image qualityFor a 1-inch sensor, the Canon G9", + "linkReview": "https://www.dxomark.com/canon-g9x-mark-ii-sensor-review-1-inch-format-compact-camera-for-enthusiasts/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X_Mark_II/vignette3.png", + "Type": "Compact ", + "Announced": "Jan. 2017  ", + "Indicative price (USD)": "\n 530  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5536 x 3693  \n ", + "Sensor photo detectors (Mpix) ": "20.44  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "2.72 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "125 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "8.2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "182", + "Battery type": "Li-ion, NB-13L, 3.6V, 1250mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "TTL Autofocus, Manual Focus ", + "Number of autofocus points": "31 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/-3 stops in 1/3-stop increments ", + "Drive modes": "Self-timer ", + "Buffer size": "38 (JPEG), 21 (RAW) ", + "Recording medium": "SD/SDHC/SDXC and UHS-I Memory Cards ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot G9 X.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G9 X.txt new file mode 100644 index 0000000..77c3a39 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot G9 X.txt @@ -0,0 +1,96 @@ +{ + "id": 1051, + "price": 500, + "year": "2015", + "brand": "Canon", + "rankDxo": 63, + "rankColor": 21.5, + "rankDyn": 12.3, + "rankLln": 495, + "rankDxo_ranking": 231, + "rankColor_ranking": 254, + "rankDyn_ranking": 153, + "rankLln_ranking": 268, + "name": "Canon PowerShot G9 X", + "pixelDepth": 20.2, + "sensor": "sensor_compact_1", + "type": "compact", + "status": "TESTED", + "launchDate": "Oct. 2015", + "launchDateGraph": "2015-10-14", + "sensorraw": 20.44, + "link": "/Cameras/Canon/PowerShot-G9-X", + "chapo": " Introduction Specifications and FeaturesFollowing Canon’s naming convention of adopting lower numbers for higher-spec models, the PowerShot G9 X sits below the G7 X in the range and foregoes the bigger bodies and bulkier, faster high-zoom ratio zoom lenses for a much more slim-line and compact design. Like those models, though, it features a one-inch 20.2-Mpix CMOS sensor with sensitivity up to ISO12,800, but this time it’s not a BSI type. It also has a more modest 28-84 mm-equivalent f/2-4.9 stabilized zoom with a customizable control ring resembling that found on the PowerShot S120. The control ring", + "linkReview": "https://www.dxomark.com/canon-powershot-g9-x-sensor-review-attractive-all-rounder/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_G9_X/vignette3.png", + "Type": "Compact ", + "Announced": "Oct. 2015  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5536 x 3693  \n ", + "Sensor photo detectors (Mpix) ": "20.44  ", + "Sensor size (mm)": "9.6 x 12.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "125 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NB-13L, 1250mAh, 3.6V ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "TTL Autofocus (Continuous, Servo AF), Manual Focus ", + "Number of autofocus points": "31 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 2 EV ", + "Drive modes": "Single, Auto Drive, Continuous, Continuous with AF, Self-Timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot S100.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S100.txt new file mode 100644 index 0000000..153c7ad --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S100.txt @@ -0,0 +1,96 @@ +{ + "id": 743, + "price": 429, + "year": "2011", + "brand": "Canon", + "rankDxo": 50, + "rankColor": 20.7, + "rankDyn": 11.6, + "rankLln": 153, + "rankDxo_ranking": 312, + "rankColor_ranking": 301, + "rankDyn_ranking": 211, + "rankLln_ranking": 330, + "name": "Canon PowerShot S100", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2011", + "launchDateGraph": "2011-09-15", + "sensorraw": 13, + "link": "/Cameras/Canon/PowerShot-S100", + "chapo": " Four years ago, Canon launched a 15-Mpix compact sensor for the Canon PowerShot G10, but the RAW image quality was quite disappointing. A year later, the Canon PowerShot G11, successor to the PowerShot G10, featured a 10 MPix sensor which was much better in low-light conditions that its predecessor.Since then and until this year, Canon's high-end compacts (Canon PowerShot S90 and Canon PowerShot S95) didn’t push their resolution any further.But today, with a 13 MPix sensor, the new Canon PowerShot S100 is a new milestone for Canon, much better this time.Indeed, even with a 3 Mpix higher resolution, Canon", + "linkReview": "https://www.dxomark.com/canon-powershot-s100-test-and-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S100/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2011  ", + "Indicative price (USD)": "\n 429  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4160 x 3124  \n ", + "Sensor photo detectors (Mpix) ": "13  ", + "Sensor size (mm)": "5.5 x 7.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.6 ", + "Aspect Ratio": "4:3, 3:2, 16:9, 4:5, 1:1 ", + "ISO latitude ": "80 - 6400 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 15.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NB-5L, 3.7V, 1120mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "461000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single, Continuous, Servo AF/AE, Tracking AF ", + "Number of autofocus points": " ", + "Exposure bracketing": "1/3 - 2 EV, 1/3 stop increments ", + "Exposure compensation": "+/-3 stops in 1/3-stop increments ", + "Drive modes": "Single, Continuous (approx. 2.3 shots/sec. (in P mode) or approx. 9.6 shots/sec. (in High-Speed Burst HQ (Maximum of 8 continuous shots per burst))), Continuous with AF (0.8fps), Self-Timer (Approx. 2 or 10 sec., Custom (Delay time (0-10 sec. (in one-seco ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC Memory Cards and Eye-Fi ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": " ", + "Connectivity": "AV (NTSC/PAL), USB 2.0 Hi-Speed (direct connection to Canon and SELPHY Compact Photo Printers, PIXMA Photo Printers and PictBridge-compatible printers), HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot S120.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S120.txt new file mode 100644 index 0000000..db9379f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S120.txt @@ -0,0 +1,96 @@ +{ + "id": 904, + "price": 449, + "year": "2013", + "brand": "Canon", + "rankDxo": 56, + "rankColor": 21.3, + "rankDyn": 11.9, + "rankLln": 246, + "rankDxo_ranking": 261, + "rankColor_ranking": 269, + "rankDyn_ranking": 180, + "rankLln_ranking": 302, + "name": "Canon PowerShot S120", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Aug. 2013", + "launchDateGraph": "2013-08-22", + "sensorraw": 12.84, + "link": "/Cameras/Canon/PowerShot-S120", + "chapo": " Introduction Canon’s update to the popular, pocket-friendly PowerShot S100 series see this year’s model, the S120, relatively unchanged save for a few minor updates. The most significant of these is a slight increase in lens brightness from f2.0-5.9 to f1.8-5.7, and bringing the S120 into line with rival high-end compacts using the relatively small 1/1.7-inch CMOS sensor. Other enhancements include, faster autofocus says Canon, along with a higher resolution rear touch screen (with AF control during video), improved WiFi connectivity, and a new 60p option for HD Video capture.Key specifications:12.2-Mpix 1/1.7-inch type CMOS SensorDIGIC 6 image", + "linkReview": "https://www.dxomark.com/canon-powershot-s120-review-pocket-marvel/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S120/vignette3.png", + "Type": "Compact ", + "Announced": "Aug. 2013  ", + "Indicative price (USD)": "\n 449  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4192 x 3062  \n ", + "Sensor photo detectors (Mpix) ": "12.84  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2500 - 15.0  ", + "Frame rate (fps)": "5.6  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "193", + "Battery type": "Battery Pack NB-6LH ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "922000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Normal, Auto/Manual, Macro AF, Quick ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 stops in 1/3-stop increments ", + "Drive modes": "Single, Continuous, Continuous with AF, Self-Timer ", + "Buffer size": "635 (JPEG) ", + "Recording medium": "SD,\nSDHC,\nSDXC,\nUHS-I ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0/WIFI/HDMI (mini) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "MPEG-4, H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot S90.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S90.txt new file mode 100644 index 0000000..8914910 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S90.txt @@ -0,0 +1,96 @@ +{ + "id": 625, + "price": 420, + "year": "2009", + "brand": "Canon", + "rankDxo": 46, + "rankColor": 20.2, + "rankDyn": 11, + "rankLln": 185, + "rankDxo_ranking": 327, + "rankColor_ranking": 322, + "rankDyn_ranking": 271, + "rankLln_ranking": 317, + "name": "Canon PowerShot S90", + "pixelDepth": 10, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2009", + "launchDateGraph": "2009-08-19", + "sensorraw": 10.42, + "link": "/Cameras/Canon/PowerShot-S90", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S90/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2009  ", + "Indicative price (USD)": "\n 420  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3744 x 2784  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "5.7 x 7.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 3200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/1600 - 15  ", + "Frame rate (fps)": "0.9  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot S95.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S95.txt new file mode 100644 index 0000000..dce4da7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot S95.txt @@ -0,0 +1,96 @@ +{ + "id": 667, + "price": 400, + "year": "2010", + "brand": "Canon", + "rankDxo": 47, + "rankColor": 20.4, + "rankDyn": 11.3, + "rankLln": 153, + "rankDxo_ranking": 321, + "rankColor_ranking": 311, + "rankDyn_ranking": 238, + "rankLln_ranking": 331, + "name": "Canon PowerShot S95", + "pixelDepth": 10, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2010", + "launchDateGraph": "2010-08-19", + "sensorraw": 10.42, + "link": "/Cameras/Canon/PowerShot-S95", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_S95/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2010  ", + "Indicative price (USD)": "\n 400  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3744 x 2784  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "5.7 x 7.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 3200 ", + "Shutter type": "mechnical ", + "Fastest - Slowest speed (s)": "1/1600 - 15.0  ", + "Frame rate (fps)": "0.98  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "170", + "Battery type": " Li-ion, NB-6L, 3.7v, 1000mAh ", + "Battery weight (gr)": "18", + "Tropicalization": " ", + "Camera material": "plastic ", + "Mount material": "plastic ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "NA ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "461000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single, Continuous (only available in Auto mode), Servo AF/Ael ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 2 EV in 1/3-stop increments ", + "Drive modes": "Single, Continuous, Self-timer (2 or 10 sec, Custom) ", + "Buffer size": "20 ", + "Recording medium": "SD/SDHC Memory Card, SDXC Memory Card, MultiMediaCard, MMCplus Card, HC MMCplus Card ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "AV/USB 2.0 (480Mbit/sec)/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot SX50 HS.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot SX50 HS.txt new file mode 100644 index 0000000..0d10546 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot SX50 HS.txt @@ -0,0 +1,96 @@ +{ + "id": 848, + "price": 480, + "year": "2012", + "brand": "Canon", + "rankDxo": 47, + "rankColor": 20.3, + "rankDyn": 11.2, + "rankLln": 179, + "rankDxo_ranking": 323, + "rankColor_ranking": 321, + "rankDyn_ranking": 259, + "rankLln_ranking": 319, + "name": "Canon PowerShot SX50 HS", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 12.79, + "link": "/Cameras/Canon/PowerShot-SX50-HS", + "chapo": " Canon’s new bridge camera, the 12.1-megapixel PowerShot SX50 HS is a portly looking thing, especially considering the miniaturization trends influencing everything from DSCs to DSLRs. Its bulky size – weighing 595 grams and measuring 122.5 x 87.3 x 105.5 mm – can partly be explained by its optical zoom, which is the industry’s first to reach a whopping 50x, or a 35mm equivalent of 24-1200mm! Despite the camera’s eye-popping telescopic-like focal length, it is slightly hindered by its aperture range of f/3.4-f/6.5. The restricting apertures could prove difficult in low light environments, but Canon provides SX50 HS", + "linkReview": "https://www.dxomark.com/preview-canon-powershot-sx50-hs/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX50_HS/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 480  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4176 x 3062  \n ", + "Sensor photo detectors (Mpix) ": "12.79  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.64 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 15.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "No  ", + "Weight (gr)": "551", + "Battery type": "Li-ion, NB-10L ", + "Battery weight (gr)": "41", + "Tropicalization": "No ", + "Camera material": "plastic ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "2.8 ", + "Monitor pixel": "461000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "\n Contrast Detect (sensor)\n Multi-area\n Selective single-point\n Tracking\n Single\n Continuous\n Face Detection\n Live View\n ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "at 1/3 EV steps ", + "Exposure compensation": "+/-3 EV (at 1/3 EV steps) ", + "Drive modes": "\n Single\n Continuous\n Continuous with AF\n Self-Timer\n ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0/mini HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": " 1920 x 1080 /24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon PowerShot SX60 HS.txt b/scr/模糊专家系统/scrape/scraped/Canon PowerShot SX60 HS.txt new file mode 100644 index 0000000..17b9347 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon PowerShot SX60 HS.txt @@ -0,0 +1,96 @@ +{ + "id": 980, + "price": 550, + "year": "2014", + "brand": "Canon", + "rankDxo": 39, + "rankColor": 19.2, + "rankDyn": 10.8, + "rankLln": 127, + "rankDxo_ranking": 342, + "rankColor_ranking": 340, + "rankDyn_ranking": 302, + "rankLln_ranking": 344, + "name": "Canon PowerShot SX60 HS", + "pixelDepth": 16.1, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2014", + "launchDateGraph": "2014-09-15", + "sensorraw": 16.76, + "link": "/Cameras/Canon/PowerShot-SX60-HS", + "chapo": " Introduction As a bridge-type (DSLR-style) model, the PowerShot SX60 HS offers a relatively small size 1/2/3”-type (6.17x 4.55mm) 16-Mpix CMOS sensor combined with a 65x optical zoom offering a 3.8-247mm f/3.4-6.5 range of focal lengths with the equivalent field of view of a 21mm ultra-wide to a 1,365mm super-telephoto. It features Canon’s most up-to-date DIGIC 6 processor offering RAW image capture with an ISO range up to 3200 at native resolution (ISO6400 at reduced resolution), continuous bursts at up to 6.4 fps, and Full HD 1080/60p video.In addition, the SX60 HS has a fully-articulated three-inch (922k-dot)", + "linkReview": "https://www.dxomark.com/canon-powershot-sx60-hs-sensor-review-powerful-model-with-competitive-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PowerShot_SX60_HS/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2014  ", + "Indicative price (USD)": "\n 550  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4768 x 3516  \n ", + "Sensor photo detectors (Mpix) ": "16.76  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 15.0  ", + "Frame rate (fps)": "6.4  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "NB-10L, 7.4V 920mAh, li-ion ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "922000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single, Continuous, Servo AF/AE, Tracking AF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Auto Drive, Continuous, Continuous with AF, Self-Timer ", + "Buffer size": " ", + "Recording medium": "SD / SDHC / SDXC ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon Powershot G10.txt b/scr/模糊专家系统/scrape/scraped/Canon Powershot G10.txt new file mode 100644 index 0000000..9f9f697 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon Powershot G10.txt @@ -0,0 +1,96 @@ +{ + "id": 247, + "price": 467, + "year": "2008", + "brand": "Canon", + "rankDxo": 37, + "rankColor": 19, + "rankDyn": 10, + "rankLln": 156, + "rankDxo_ranking": 347, + "rankColor_ranking": 346, + "rankDyn_ranking": 353, + "rankLln_ranking": 329, + "name": "Canon Powershot G10", + "pixelDepth": 14, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2008", + "launchDateGraph": "2008-09-17", + "sensorraw": 15, + "link": "/Cameras/Canon/Powershot-G10", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G10/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2008  ", + "Indicative price (USD)": "\n 467  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4480 x 3348  \n ", + "Sensor photo detectors (Mpix) ": "15  ", + "Sensor size (mm)": "6 x 8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 1600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 15  ", + "Frame rate (fps)": "1.3  ", + "Live view ": "yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon Powershot G11.txt b/scr/模糊专家系统/scrape/scraped/Canon Powershot G11.txt new file mode 100644 index 0000000..bca9805 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon Powershot G11.txt @@ -0,0 +1,96 @@ +{ + "id": 620, + "price": 523, + "year": "2009", + "brand": "Canon", + "rankDxo": 47, + "rankColor": 20.4, + "rankDyn": 11.1, + "rankLln": 169, + "rankDxo_ranking": 325, + "rankColor_ranking": 318, + "rankDyn_ranking": 263, + "rankLln_ranking": 323, + "name": "Canon Powershot G11", + "pixelDepth": 10, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2009", + "launchDateGraph": "2009-08-19", + "sensorraw": 10.42, + "link": "/Cameras/Canon/Powershot-G11", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G11/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2009  ", + "Indicative price (USD)": "\n 523  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3744 x 2784  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "5.7 x 7.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 3200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 15  ", + "Frame rate (fps)": "1.1  ", + "Live view ": "no ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon Powershot G15.txt b/scr/模糊专家系统/scrape/scraped/Canon Powershot G15.txt new file mode 100644 index 0000000..b6e78a6 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon Powershot G15.txt @@ -0,0 +1,96 @@ +{ + "id": 837, + "price": 599, + "year": "2012", + "brand": "Canon", + "rankDxo": 46, + "rankColor": 19.9, + "rankDyn": 11.5, + "rankLln": 165, + "rankDxo_ranking": 326, + "rankColor_ranking": 329, + "rankDyn_ranking": 216, + "rankLln_ranking": 325, + "name": "Canon Powershot G15", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 12.34, + "link": "/Cameras/Canon/Powershot-G15", + "chapo": " Introduction Canon is consistently among one of the most watched participants of the biennial Photokina imaging and photography fair – a six day event currently underway – hosted in the German city of Cologne.And on Monday, Canon did not disappoint Photokina attendees with the announcement of three new PowerShots, including the S110, SX50 H S, and the G15.The latter replaces the popular and high-end two-year-old PowerShot G12.The 12.1-megapixel G15 makes a number of changes from its 10-megapixel predecessor. On the outside, the most noticeable physical transformation is its scaled-down size:", + "linkReview": "https://www.dxomark.com/canon-refreshes-the-powershot-g-series-with-g15/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G15/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4048 x 3048  \n ", + "Sensor photo detectors (Mpix) ": "12.34  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 15.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": "310", + "Battery type": "Li-ion, BP NB-10L, 7.4 V, 920 mAh ", + "Battery weight (gr)": "42", + "Tropicalization": "No ", + "Camera material": "Metal & Plastic ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "922000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus: Single, Continuous, Servo AF\nAF frame: Face AiAF, Center, FlexiZone, Tracking AF ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/-3 stops in 1/3-stop increments ", + "Drive modes": "Single, High-speed continuous (10 fps), Self-timer 10-sec. 2-sec. delay/custom ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, \nSDXC Memory Card ", + "Image format": "JPEG, RAW (CR2) ", + "White balance bracketing": "No ", + "Connectivity": "AV/USB/Mini-HDMI/EyeFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon Powershot G9.txt b/scr/模糊专家系统/scrape/scraped/Canon Powershot G9.txt new file mode 100644 index 0000000..4186a80 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon Powershot G9.txt @@ -0,0 +1,96 @@ +{ + "id": 532, + "price": 606, + "year": "2007", + "brand": "Canon", + "rankDxo": 35, + "rankColor": 18.8, + "rankDyn": 10.1, + "rankLln": 146, + "rankDxo_ranking": 349, + "rankColor_ranking": 350, + "rankDyn_ranking": 348, + "rankLln_ranking": 335, + "name": "Canon Powershot G9", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2007", + "launchDateGraph": "2007-08-20", + "sensorraw": 12.19, + "link": "/Cameras/Canon/Powershot-G9", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_G9/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2007  ", + "Indicative price (USD)": "\n 606  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4032 x 3024  \n ", + "Sensor photo detectors (Mpix) ": "12.19  ", + "Sensor size (mm)": "6 x 8 ", + "Color filter array": "N/A ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": " 4:3 ", + "ISO latitude ": "80 - 1600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2500 - 15  ", + "Frame rate (fps)": "1.5  ", + "Live view ": "yes ", + "Stabilization ": "Yes. Lens ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Canon Powershot S110.txt b/scr/模糊专家系统/scrape/scraped/Canon Powershot S110.txt new file mode 100644 index 0000000..dac27fa --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Canon Powershot S110.txt @@ -0,0 +1,96 @@ +{ + "id": 838, + "price": 499, + "year": "2012", + "brand": "Canon", + "rankDxo": 48, + "rankColor": 20.6, + "rankDyn": 11.2, + "rankLln": 168, + "rankDxo_ranking": 320, + "rankColor_ranking": 307, + "rankDyn_ranking": 253, + "rankLln_ranking": 324, + "name": "Canon Powershot S110", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 12.34, + "link": "/Cameras/Canon/Powershot-S110", + "chapo": " Introduction Smooth and modern, the Canon PowerShot S110 is a subtle update over its predecessor, the S100. This high-end point-and-shoot camera maintains the small stature from its older relative, making it easy for users to slip the device into a pocket. And like the S100, it continues to provide photographers with the duel image formats of JPEG and RAW.Looking past its exoskeleton, the S110 transplants the S100’s 12.1-megapixel CMOS sensor, its DIGIC 5 image processor, and essentially the same optics that includes a 24-120mm lens equivalent. The latter allows for", + "linkReview": "https://www.dxomark.com/preview-canon-powershot-s110/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Powershot_S110/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4048 x 3048  \n ", + "Sensor photo detectors (Mpix) ": "12.34  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.62 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 15.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": "198", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "461000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "\n Contrast Detect (sensor)\n Multi-area\n Selective single-point\n Tracking\n Single\n Continuous\n Face Detection\n Live View\n ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "at 1/3 EV steps ", + "Exposure compensation": "+ ou - 3 EV (at 1/3 EV steps) ", + "Drive modes": "\n Single\n Continuous\n Continuous with AF\n Self-Timer\n ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(CR2) ", + "White balance bracketing": "No ", + "Connectivity": "USB: USB 2.0 (480 Mbit/sec)\nHDMI: Yes (Mini)\nWireless: BuiltIn\nRemote control: Yes (Optional) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": " 1920 x 1080 /24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/DJI Phantom 4.txt b/scr/模糊专家系统/scrape/scraped/DJI Phantom 4.txt new file mode 100644 index 0000000..bb00510 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/DJI Phantom 4.txt @@ -0,0 +1,96 @@ +{ + "id": 1109, + "price": 1200, + "year": "2016", + "brand": "DJI", + "rankDxo": 48, + "rankColor": 20.4, + "rankDyn": 11.8, + "rankLln": 128, + "rankDxo_ranking": 319, + "rankColor_ranking": 315, + "rankDyn_ranking": 184, + "rankLln_ranking": 343, + "name": "DJI Phantom 4", + "pixelDepth": 12.4, + "sensor": "sensor_compact_1over2.3", + "type": "drone", + "status": "TESTED", + "launchDate": "Mar. 2016", + "launchDateGraph": "2016-03-15", + "sensorraw": 12, + "link": "/Cameras/DJI/Phantom-4", + "chapo": " Specification and FeaturesWith its distinctive white aerodynamic body and rotor arms and fixed landing gear, the DJI Phantom Quadcopter is probably the most recognizable drone on the market. And as the latest in the series, the Phantom 4 has some highly desirable features for the pilot, including front facing obstacle avoidance sensors and GPS based navigation. Besides being able to view footage streamed to your smart device linked to the wireless controller from up to 3.1 miles, the Phantom 4 has two downward facing sensors that allows you to follow moving subjects automatically. The stabilized 4K camera, incidentally, is", + "linkReview": "https://www.dxomark.com/dji-phantom-4-review-lofty-ambitions/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Phantom_4/vignette3.png", + "Type": " ", + "Announced": "Mar. 2016  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12  ", + "Sensor size (mm)": "4.7 x 6.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "5.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/8000 - 8.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": " ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "  ", + "Weight (gr)": " ", + "Battery type": "LiPo, 15.2V, 5350mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic Metal ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": "0 ", + "Monitor pixel": "0 ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "3 or 5 bracketed frames at 0.7 EV Bias ", + "Exposure compensation": " ", + "Drive modes": "Single, Burst mode ", + "Buffer size": " ", + "Recording medium": "Micro-SD ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": " ", + "Connectivity": "USB/WIFI ", + "Bluetooth": " ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, MOV ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/DJI Phantom4 Pro.txt b/scr/模糊专家系统/scrape/scraped/DJI Phantom4 Pro.txt new file mode 100644 index 0000000..cd044ba --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/DJI Phantom4 Pro.txt @@ -0,0 +1,96 @@ +{ + "id": 1143, + "price": 1500, + "year": "2016", + "brand": "DJI", + "rankDxo": 65, + "rankColor": 22, + "rankDyn": 12.5, + "rankLln": 466, + "rankDxo_ranking": 205, + "rankColor_ranking": 225, + "rankDyn_ranking": 114, + "rankLln_ranking": 281, + "name": "DJI Phantom4 Pro", + "pixelDepth": 20, + "sensor": "sensor_compact_1", + "type": "drone", + "status": "TESTED", + "launchDate": "Nov. 2016", + "launchDateGraph": "2016-11-15", + "sensorraw": 19.96, + "link": "/Cameras/DJI/Phantom4-Pro", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Phantom4_Pro/vignette3.png", + "Type": " ", + "Announced": "Nov. 2016  ", + "Indicative price (USD)": "\n 1500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5472 x 3648  \n ", + "Sensor photo detectors (Mpix) ": "19.96  ", + "Sensor size (mm)": "13.2 x 8.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16.0", + "Focal length multiplier": "2.72 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 8.0  ", + "Frame rate (fps)": "14.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Drone gimbal  ", + "Weight (gr)": " ", + "Battery type": "LiPo, 15.2V, 5870mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": " ", + "Monitor size": "0 ", + "Monitor pixel": "0 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "3/5 bracketed frames at 0.7 EV Bias ", + "Exposure compensation": "Yes ", + "Drive modes": "Single, Burst mode ", + "Buffer size": " ", + "Recording medium": "Micro SD, Max Capacity 128GB ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": " ", + "Connectivity": "USB/WIFI ", + "Bluetooth": " ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 50 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, MOV ", + "Video codec": "H.264, H.265 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X4S.txt b/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X4S.txt new file mode 100644 index 0000000..4abd6b1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X4S.txt @@ -0,0 +1,96 @@ +{ + "id": 1145, + "price": 599, + "year": "2016", + "brand": "DJI", + "rankDxo": 65, + "rankColor": 22, + "rankDyn": 12.6, + "rankLln": 442, + "rankDxo_ranking": 206, + "rankColor_ranking": 224, + "rankDyn_ranking": 110, + "rankLln_ranking": 286, + "name": "DJI Zenmuse X4S", + "pixelDepth": 20, + "sensor": "sensor_compact_1", + "type": "drone", + "status": "TESTED", + "launchDate": "Nov. 2016", + "launchDateGraph": "2016-11-15", + "sensorraw": 19.96, + "link": "/Cameras/DJI/Zenmuse-X4S", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X4S/vignette3.png", + "Type": " ", + "Announced": "Nov. 2016  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5472 x 3648  \n ", + "Sensor photo detectors (Mpix) ": "19.96  ", + "Sensor size (mm)": "13.2 x 8.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16.0", + "Focal length multiplier": "2.72 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 8.0  ", + "Frame rate (fps)": "20.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Drone gimbal  ", + "Weight (gr)": "253", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": " ", + "Monitor size": "0 ", + "Monitor pixel": "0 ", + "Articulated screen": "No ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-C, MF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "3/5 bracketed frames at 0.7EV bias ", + "Exposure compensation": "Yes ", + "Drive modes": "Single, Burst mode ", + "Buffer size": " ", + "Recording medium": "Mini-SD, DJI CineSSD ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": " ", + "Connectivity": "USB/WIFI ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "H.264, H.265 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X5S.txt b/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X5S.txt new file mode 100644 index 0000000..b199c11 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X5S.txt @@ -0,0 +1,96 @@ +{ + "id": 1146, + "price": 1400, + "year": "2016", + "brand": "DJI", + "rankDxo": 74, + "rankColor": 23, + "rankDyn": 12.7, + "rankLln": 956, + "rankDxo_ranking": 118, + "rankColor_ranking": 131, + "rankDyn_ranking": 90, + "rankLln_ranking": 115, + "name": "DJI Zenmuse X5S", + "pixelDepth": 20.8, + "sensor": "sensor_micro43", + "type": "drone", + "status": "TESTED", + "launchDate": "Nov. 2016", + "launchDateGraph": "2016-11-15", + "sensorraw": 20.89, + "link": "/Cameras/DJI/Zenmuse-X5S", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X5S/vignette3.png", + "Type": " ", + "Announced": "Nov. 2016  ", + "Indicative price (USD)": "\n 1400  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5280 x 3956  \n ", + "Sensor photo detectors (Mpix) ": "20.89  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 8.0  ", + "Frame rate (fps)": "20.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Drone gimbal  ", + "Weight (gr)": "461", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": " ", + "Monitor size": "0 ", + "Monitor pixel": "0 ", + "Articulated screen": "No ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-C, MF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "3/5 bracketed frames at 0.7EV bias ", + "Exposure compensation": "+/- 3 EV (1/3 increments) ", + "Drive modes": "Single, Burst mode ", + "Buffer size": " ", + "Recording medium": "Mini-SD, DJI CineSSD ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": " ", + "Connectivity": "USB/WIFI ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "5280 x 2972 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "H.264, H.265 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X7.txt b/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X7.txt new file mode 100644 index 0000000..8e5d8db --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/DJI Zenmuse X7.txt @@ -0,0 +1,96 @@ +{ + "id": 1185, + "price": 2700, + "year": "2017", + "brand": "DJI", + "rankDxo": 86, + "rankColor": 24.6, + "rankDyn": 13.9, + "rankLln": 1482, + "rankDxo_ranking": 37, + "rankColor_ranking": 35, + "rankDyn_ranking": 27, + "rankLln_ranking": 47, + "name": "DJI Zenmuse X7", + "pixelDepth": 24, + "sensor": "sensor_apsc", + "type": "drone", + "status": "TESTED", + "launchDate": "Oct. 2017", + "launchDateGraph": "2017-10-11", + "sensorraw": 24.11, + "link": "/Cameras/DJI/Zenmuse-X7", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Zenmuse_X7/vignette3.png", + "Type": " ", + "Announced": "Oct. 2017  ", + "Indicative price (USD)": "\n 2700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4008  \n ", + "Sensor photo detectors (Mpix) ": "24.11  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "15.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 8.0  ", + "Frame rate (fps)": "20.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "DJI DL  ", + "Weight (gr)": "449", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "No monitor ", + "Monitor size": "0 ", + "Monitor pixel": "0 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-C, MF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "Exposure Bracketing (3/5 bracketed shots at 0.7 EV bias) ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Burst mode, Interval  ", + "Buffer size": " ", + "Recording medium": "MicroSD, DJI CINESSD ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "6016 x 3200 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "CINESSD: CinemaDNG, ProRes\nMicro SD: MOV, MP4 ", + "Video codec": "H264, H265 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F550EXR.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F550EXR.txt new file mode 100644 index 0000000..93b0bc3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F550EXR.txt @@ -0,0 +1,96 @@ +{ + "id": 703, + "price": 450, + "year": "2011", + "brand": "Fujifilm", + "rankDxo": 39, + "rankColor": 19.2, + "rankDyn": 10.6, + "rankLln": 158, + "rankDxo_ranking": 339, + "rankColor_ranking": 340, + "rankDyn_ranking": 316, + "rankLln_ranking": 328, + "name": "Fujifilm FinePix F550EXR", + "pixelDepth": 16, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Jan. 2011", + "launchDateGraph": "2011-01-05", + "sensorraw": 16.08, + "link": "/Cameras/Fujifilm/FinePix-F550EXR", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F550EXR/vignette3.png", + "Type": "Compact ", + "Announced": "Jan. 2011  ", + "Indicative price (USD)": "\n 450  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4613 x 3485  \n ", + "Sensor photo detectors (Mpix) ": "16.08  ", + "Sensor size (mm)": "4.8 x 6.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.5 ", + "Aspect Ratio": " 4:3, 3:2, 16:9 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 8.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "No  ", + "Weight (gr)": "195", + "Battery type": "Li-ion, NP-50, 3.7V, 1000mAh ", + "Battery weight (gr)": "18", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": "- ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No mirror ", + "View finder diopter": "- ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "No ", + "Autofocus modes": "Single AF / Continuous AF (EXR AUTO, Movie) ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 2 EV 1/3EV step ", + "Drive modes": "single, continuous (fps are chosen inside menu; modes: Top n (L : TOP- 4 / 8 frames (3 / 5 / 8 frames/sec.); M : TOP- 4 / 8 / 16 frames (3 / 5 / 8 / 11 frames/sec.); S : TOP- 4 / 8 / 16 / 32 frames (3 / 5 / 8 / 11 frames/sec.)), Final n, Best Frame Captur ", + "Buffer size": "32 (JPEG), 6 (RAW), 6 (RAW+JPEG) ", + "Recording medium": "Internal memory (Approx. 39MB)\nSD / SDHC / SDXC(UHS-I) memory card ", + "Image format": "JPEG, RAW (RAF) ", + "White balance bracketing": "No ", + "Connectivity": "Video output\n NTSC / PAL selectable with stereo sound\nDigital interface\n USB 2.0 High-Speed\nHDMI output\n HDMI Mini connector ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "mov ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F600EXR.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F600EXR.txt new file mode 100644 index 0000000..be42096 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F600EXR.txt @@ -0,0 +1,96 @@ +{ + "id": 732, + "price": 500, + "year": "2011", + "brand": "Fujifilm", + "rankDxo": 40, + "rankColor": 19.4, + "rankDyn": 10.8, + "rankLln": 153, + "rankDxo_ranking": 336, + "rankColor_ranking": 337, + "rankDyn_ranking": 307, + "rankLln_ranking": 332, + "name": "Fujifilm FinePix F600EXR", + "pixelDepth": 16, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Aug. 2011", + "launchDateGraph": "2011-08-11", + "sensorraw": 16.08, + "link": "/Cameras/Fujifilm/FinePix-F600EXR", + "chapo": " Twin camerasAt first glance, the two cameras look nearly identical, and in fact the F600EXR was launched only 3 months after the F550 - with the same body, same design, and same sensor specifications.These two cameras are compacts with a large focal range zoom lens (15x with a 24-360 mm f) and a tiny (half-inch!) sensor with a very high pixel density (a pixel pitch of only 2µm). This sensor is a BSI CMOS sensor, purportedly more sensitive than classic FSI CMOS and destined to become standard for every sensor with a pixel pitch inferior to 1.4", + "linkReview": "https://www.dxomark.com/fujifilm-f550-and-f600-exr-twin-cameras-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F600EXR/vignette3.png", + "Type": "Compact ", + "Announced": "Aug. 2011  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3262 x 2464  \n ", + "Sensor photo detectors (Mpix) ": "16.08  ", + "Sensor size (mm)": "4.8 x 6.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 8.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "  ", + "Weight (gr)": " ", + "Battery type": "Li-ion battery NP-50 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "No ", + "Autofocus modes": "Contrast Detect (sensor), Multi-area, Center, Tracking, Single, Continuous, Live View ", + "Number of autofocus points": "256 ", + "Exposure bracketing": "(at 1/3 EV, 2/3 EV, 1 EV steps) ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": "SD / SDHC / SDXC (UHS-I) memory card  ", + "Image format": "JPEG, RAW (RAF) ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Stereo ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 (30 fps) ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVIMPEG4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F800EXR.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F800EXR.txt new file mode 100644 index 0000000..8c8433f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix F800EXR.txt @@ -0,0 +1,96 @@ +{ + "id": 820, + "price": 349, + "year": "2012", + "brand": "Fujifilm", + "rankDxo": 41, + "rankColor": 19.5, + "rankDyn": 10.9, + "rankLln": 143, + "rankDxo_ranking": 332, + "rankColor_ranking": 333, + "rankDyn_ranking": 286, + "rankLln_ranking": 336, + "name": "Fujifilm FinePix F800EXR", + "pixelDepth": 16, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Jul. 2012", + "launchDateGraph": "2012-07-25", + "sensorraw": 16.08, + "link": "/Cameras/Fujifilm/FinePix-F800EXR", + "chapo": " Introduction With a 16megapixel sensor, RAW image capability and an 8fps shooting speed, not to mention full HD movie shooting and a 320fps high speed movie option, the specifications of this camera would not look out of place on a high-end DSLR camera. Compared to its immediate predecessor, the F770EXR the main difference is the inclusion of WiFi functionality to make it possible to send images directly to a smartphone or tablet. Beyond that, the FxxxEXR family resemblance is very strong in this latest release.&nbsp; With such a saturated market in compact cameras, the question is", + "linkReview": "https://www.dxomark.com/fujifilm-finepix-f800exr-review-a-full-featured-compact/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_F800EXR/vignette3.png", + "Type": "Compact ", + "Announced": "Jul. 2012  ", + "Indicative price (USD)": "\n 349  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4613 x 3485  \n ", + "Sensor photo detectors (Mpix) ": "16.08  ", + "Sensor size (mm)": "4.8 x 6.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.43 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 8.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "  ", + "Weight (gr)": "208", + "Battery type": "Li-ion battery NP-50A ", + "Battery weight (gr)": "24", + "Tropicalization": "No ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "No ", + "Autofocus modes": "Contrast Detect (sensor), Multi-area, Center, Tracking, Single, Continuous, Face Detection\n ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "at 1/3 EV, 2/3 EV, 1 EV steps ", + "Exposure compensation": "(+ or -) 2 EV (at 1/3 EV steps) ", + "Drive modes": "\n Single, Continuous, Self-timer (2 or 10 sec, Auto release, Auto shutter (Dog, Cat)\n ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC\nStorage included 30 MB ", + "Image format": " JPEG (Exif Ver 2.3 )\n RAW (RAF format)\n RAW+JPEG\n 3D still image:MPO compliant ", + "White balance bracketing": "No ", + "Connectivity": "USB USB 2.0 (480 Mbit/sec)\nHDMI Yes (mini)\nWireless BuiltIn\nRemote control No ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 /30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "\n MPEG-4\n ", + "Video codec": " H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S100fs.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S100fs.txt new file mode 100644 index 0000000..2895477 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S100fs.txt @@ -0,0 +1,96 @@ +{ + "id": 578, + "price": 713, + "year": "2008", + "brand": "Fujifilm", + "rankDxo": 43, + "rankColor": 19.6, + "rankDyn": 11.1, + "rankLln": 177, + "rankDxo_ranking": 329, + "rankColor_ranking": 332, + "rankDyn_ranking": 268, + "rankLln_ranking": 321, + "name": "Fujifilm FinePix S100fs", + "pixelDepth": 11.1, + "sensor": "sensor_compact_2over3", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-24", + "sensorraw": 11.1, + "link": "/Cameras/Fujifilm/FinePix-S100fs", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S100fs/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 713  \n ", + "Sensor type ": "Super CCD HR  ", + "Resolution ": "\n 3840 x 2880  \n ", + "Sensor photo detectors (Mpix) ": "11.1  ", + "Sensor size (mm)": "7 x 9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "3.93 ", + "Aspect Ratio": " 4:3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3 or 7  ", + "Live view ": "yes ", + "Stabilization ": "Yes. Lens ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S3 Pro.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S3 Pro.txt new file mode 100644 index 0000000..6219ebb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S3 Pro.txt @@ -0,0 +1,96 @@ +{ + "id": 528, + "price": 1190, + "year": "2004", + "brand": "Fujifilm", + "rankDxo": 60, + "rankColor": 20.9, + "rankDyn": 13.5, + "rankLln": 346, + "rankDxo_ranking": 247, + "rankColor_ranking": 295, + "rankDyn_ranking": 48, + "rankLln_ranking": 300, + "name": "Fujifilm FinePix S3 Pro", + "pixelDepth": 6.1, + "sensor": "sensor_apsc", + "type": "none", + "status": "TESTED", + "launchDate": "Feb. 2004", + "launchDateGraph": "2004-02-05", + "sensorraw": 6.1, + "link": "/Cameras/Fujifilm/FinePix-S3-Pro", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S3_Pro/vignette3.png", + "Type": " ", + "Announced": "Feb. 2004  ", + "Indicative price (USD)": "\n 1190  \n ", + "Sensor type ": "super CCD  ", + "Resolution ": "\n 3024 x 2016  \n ", + "Sensor photo detectors (Mpix) ": "6.1  ", + "Sensor size (mm)": "16 x 23 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "None  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S5 Pro.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S5 Pro.txt new file mode 100644 index 0000000..a183409 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix S5 Pro.txt @@ -0,0 +1,96 @@ +{ + "id": 511, + "price": 1200, + "year": "2006", + "brand": "Fujifilm", + "rankDxo": 65, + "rankColor": 21.6, + "rankDyn": 13.5, + "rankLln": 448, + "rankDxo_ranking": 200, + "rankColor_ranking": 244, + "rankDyn_ranking": 44, + "rankLln_ranking": 284, + "name": "Fujifilm FinePix S5 Pro", + "pixelDepth": 6.1, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2006", + "launchDateGraph": "2006-09-25", + "sensorraw": 6.1, + "link": "/Cameras/Fujifilm/FinePix-S5-Pro", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_S5_Pro/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2006  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "super CCD  ", + "Resolution ": "\n 3024 x 2016  \n ", + "Sensor photo detectors (Mpix) ": "6.1  ", + "Sensor size (mm)": "16 x 23 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X S1.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X S1.txt new file mode 100644 index 0000000..3f7a5a0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X S1.txt @@ -0,0 +1,96 @@ +{ + "id": 756, + "price": 699, + "year": "2011", + "brand": "Fujifilm", + "rankDxo": 49, + "rankColor": 20.4, + "rankDyn": 11.2, + "rankLln": 216, + "rankDxo_ranking": 315, + "rankColor_ranking": 311, + "rankDyn_ranking": 253, + "rankLln_ranking": 306, + "name": "Fujifilm FinePix X S1", + "pixelDepth": 12, + "sensor": "sensor_compact_2over3", + "type": "none", + "status": "TESTED", + "launchDate": "Nov. 2011", + "launchDateGraph": "2011-11-24", + "sensorraw": 12.21, + "link": "/Cameras/Fujifilm/FinePix-X-S1", + "chapo": " Introduction The Fujifilm FinePix X-S1 belongs to the Fuji X family of premium cameras, which are characterized by high-end specifications, high-quality optics, and an exemplary finish. The Fujifilm X-S1 offers a 26x lens that covers an ideal 24-684mm focal range. Its maximum aperture is quite generous for a bridge (f/2.8–5.6) and its optical formula incorporates four aspherical lens elements and two UD glass elements. In the field, photographers will appreciate its manual zoom ring. The Fuji X-S1 differs from all its competitors with its 2/3" CMOS sensor, slightly larger than", + "linkReview": "https://www.dxomark.com/fujifilm-finepix-x-s1-review-an-expert-compact-performance-from-a-bridge-format-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X_S1/vignette3.png", + "Type": " ", + "Announced": "Nov. 2011  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12.21  ", + "Sensor size (mm)": "6.6 x 8.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "3.93 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "  ", + "Weight (gr)": "880", + "Battery type": "Li-ion, NP-95, 3.7 V, 1800 mAh ", + "Battery weight (gr)": "36", + "Tropicalization": " ", + "Camera material": "Metal Lens Barrel ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": " ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "-5 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF / Continuous AF (EXR AUTO, Movie),\nManual AF (One-push AF mode included) ", + "Number of autofocus points": "49 ", + "Exposure bracketing": " ", + "Exposure compensation": "-2.0EV - +2.0EV 1/3EV step ", + "Drive modes": "Single, high-speed continuous (10 fps) , low-speed continuous (3 fps), self-timer 10 sec./ 2 sec. delay ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": " ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Stereo sound ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X10.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X10.txt new file mode 100644 index 0000000..e52d54e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X10.txt @@ -0,0 +1,96 @@ +{ + "id": 740, + "price": 600, + "year": "2011", + "brand": "Fujifilm", + "rankDxo": 50, + "rankColor": 20.5, + "rankDyn": 11.3, + "rankLln": 245, + "rankDxo_ranking": 305, + "rankColor_ranking": 309, + "rankDyn_ranking": 241, + "rankLln_ranking": 304, + "name": "Fujifilm FinePix X10", + "pixelDepth": 12, + "sensor": "sensor_compact_2over3", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2011", + "launchDateGraph": "2011-09-01", + "sensorraw": 12.21, + "link": "/Cameras/Fujifilm/FinePix-X10", + "chapo": " The Fuji X10 is an interesting low-cost transposition of the Fujifilm X100:Same old-fashioned metal designSmaller sensor: in place of the X100’s APS-C sensor the X10 has a tiny 2/3-inch EXR CMOS sensor. Interestingly, this sensor is still 2 times larger than the F600 EXR sensor.A 4x zoom lens: while the X100 has a fast prime wide-angle, the X10 provides a 4x zoom with a focal equivalent of 28 to 112 mm on a 24x36 sensor. Worth noting is that specific attention was paid to the aperture: the zoom is very bright from 28 mm (f/2.0) to 112mm", + "linkReview": "https://www.dxomark.com/fujifilm-x10-review-an-old-fashioned-compact-camera-with-some-surprises/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X10/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2011  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4028 x 3032  \n ", + "Sensor photo detectors (Mpix) ": "12.21  ", + "Sensor size (mm)": "6.6 x 8.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "3.93 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": " -  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "  ", + "Weight (gr)": "330", + "Battery type": "NP-50 Lithium-Ion ", + "Battery weight (gr)": "20", + "Tropicalization": " ", + "Camera material": "Magnesium Alloy ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": " ", + "View finder coverage": "85 ", + "Mirror lockup": "  ", + "View finder diopter": "Diopter adjustment -3.5 to +1.5 m-1 (dpt) ", + "Monitor type": "LCD ", + "Monitor size": "2.8 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single shot AF (S- AF), Continuous AF (C-AF), Manual focus (MF) ", + "Number of autofocus points": "49 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Super High?approx. 10fps (Size M,S), High?approx. 7fps (Size L,M,S), Middle?approx. 5fps (Size L,M,S), Low?approx. 3fps (Size L,M,S) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (RAF) ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": "Stereo ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X100.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X100.txt new file mode 100644 index 0000000..b184228 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm FinePix X100.txt @@ -0,0 +1,96 @@ +{ + "id": 695, + "price": 999, + "year": "2010", + "brand": "Fujifilm", + "rankDxo": 73, + "rankColor": 22.9, + "rankDyn": 12.4, + "rankLln": 1001, + "rankDxo_ranking": 128, + "rankColor_ranking": 139, + "rankDyn_ranking": 138, + "rankLln_ranking": 110, + "name": "Fujifilm FinePix X100", + "pixelDepth": 12.3, + "sensor": "sensor_apsc", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-19", + "sensorraw": 12.37, + "link": "/Cameras/Fujifilm/FinePix-X100", + "chapo": " Introduction Meet the NEX-5, with its impressive score in our comparison database this model is among the most popular mirrorless cameras today. This time around though, it has a worthy rival that might challenge its place, reading our overall final scores could be enough to prove it.In the final score the X100 shows a 4 point advantage over the NEX-5, it outperforms Sony’s camera in all the tested fields (Portrait and Landscape).Outstanding Sports (Low light ISO) ResultsThis is the test field where the X100 is noticeably better than the NEX-5:With", + "linkReview": "https://www.dxomark.com/fujifilm-x100-dxomark-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/FinePix_X100/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4310 x 2870  \n ", + "Sensor photo detectors (Mpix) ": "12.37  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.48 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5 or 3  ", + "Live view ": "yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "  ", + "Weight (gr)": "405", + "Battery type": "Li-ion, NP-95, 3.7 V, 1800 mAh ", + "Battery weight (gr)": "36", + "Tropicalization": " ", + "Camera material": "metal ", + "Mount material": "metal ", + "View finder type": "optical ", + "View finder magnification": "0.5 ", + "View finder coverage": "90 ", + "Mirror lockup": "NA ", + "View finder diopter": "-2 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "2.8 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 2 EV ", + "Drive modes": " Single, Continuous (5 or 3 fps) up to 10 JPEG or 8 RAW/RAW + JPEG, Self-timer (2 or 12 sec) ", + "Buffer size": "10 (JPEG), 8 (RAW), 8 (RAW+JPEG) ", + "Recording medium": " Approx 20MB internal memory, SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (RAF) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 High-Speed, HDMI Mini connector ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 pixels / 24 fps  ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Fujifilm XF1.txt b/scr/模糊专家系统/scrape/scraped/Fujifilm XF1.txt new file mode 100644 index 0000000..b1cf3e5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Fujifilm XF1.txt @@ -0,0 +1,96 @@ +{ + "id": 835, + "price": 499, + "year": "2012", + "brand": "Fujifilm", + "rankDxo": 49, + "rankColor": 20.5, + "rankDyn": 11.2, + "rankLln": 199, + "rankDxo_ranking": 317, + "rankColor_ranking": 309, + "rankDyn_ranking": 251, + "rankLln_ranking": 313, + "name": "Fujifilm XF1", + "pixelDepth": 12, + "sensor": "sensor_compact_2over3", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 12, + "link": "/Cameras/Fujifilm/XF1", + "chapo": " If looks could kill, the Fujifilm XF1 would be a successful assassin. It marries together a vintage design with modern touches, including a lightweight aluminum frame wrapped in luxurious looking imitation leather. The latter component comes in three colors: a classic black, a rustic looking brown, and a head turning shade of red. But this camera cloaked in faux leather is not meant for just faux-tographers – it packs some impressive specs to compliment its physical beauty.Peeling away the XF1’s exterior, a user will find the camera’s 12-megapixel 2/3-inch EXR-CMOS sensor. The sensor helps the XF1 achieve", + "linkReview": "https://www.dxomark.com/preview-fujifilm-xf1/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/XF1/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12  ", + "Sensor size (mm)": "6.6 x 8.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "3.93 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": " ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-50A, 3.7V ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF / Continuous AF,\nManual AF (One-push AF mode included) ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "AE Bracketing : +or-1/3EV, +or-2/3EV, +or-1EV\nFilm Simulation Bracketing : PROVIA / STANDARD, Velvia / VIVID, ASTIA / SOFT\nDynamic Range Bracketing : 100/100, 200/100, 400/100\nISO Sensitivity Bracketing : +or-1/3EV, +or-2/3EV, +or-1EV ", + "Exposure compensation": "+/- 2 EV 1/3EV step ", + "Drive modes": "Single, Continuous, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD;\nSDHC;\nSDXC(UHS-I)  ", + "Image format": "JPEG, RAW (RAF) ", + "White balance bracketing": "Automatic scene recognition\nPreset : Fine, Shade, Fluorescent light (Daylight), Fluorescent light (Warm White), Fluorescent light (Cool White), Incandescent light, Underwater, Custom, Color temperature selection ", + "Connectivity": "Video output: NTSC / PAL selectable with Monaural sound.\nDigital interface: USB 2.0 High-Speed.\nHDMI output: HDMI Mini connector. ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "H.264 (MOV) with Stereo sound ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/GoPro HERO5 Black.txt b/scr/模糊专家系统/scrape/scraped/GoPro HERO5 Black.txt new file mode 100644 index 0000000..530a9f7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/GoPro HERO5 Black.txt @@ -0,0 +1,96 @@ +{ + "id": 1144, + "price": 400, + "year": "2016", + "brand": "GoPro", + "rankDxo": 38, + "rankColor": 19, + "rankDyn": 11.2, + "rankLln": 105, + "rankDxo_ranking": 343, + "rankColor_ranking": 345, + "rankDyn_ranking": 253, + "rankLln_ranking": 348, + "name": "GoPro HERO5 Black", + "pixelDepth": 12, + "sensor": "sensor_compact_1over2.3", + "type": "actioncamera", + "status": "TESTED", + "launchDate": "Sep. 2016", + "launchDateGraph": "2016-09-19", + "sensorraw": 12, + "link": "/Cameras/GoPro/HERO5-Black", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/HERO5_Black/vignette3.png", + "Type": " ", + "Announced": "Sep. 2016  ", + "Indicative price (USD)": "\n 400  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "10.0", + "Focal length multiplier": "5.64 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": " -  ", + "Frame rate (fps)": "30.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, 1220mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Plastic ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "2 ", + "Monitor pixel": "0 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "No ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Self Timer, high-speed continuous (30 fps) ", + "Buffer size": " ", + "Recording medium": "microSD ", + "Image format": "JPEG ", + "White balance bracketing": " ", + "Connectivity": "USB-C/WIFI ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": " ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "No ", + "Video file format": " ", + "Video codec": "H264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Hasselblad H3DII 39.txt b/scr/模糊专家系统/scrape/scraped/Hasselblad H3DII 39.txt new file mode 100644 index 0000000..48d2cd0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Hasselblad H3DII 39.txt @@ -0,0 +1,96 @@ +{ + "id": 457, + "price": 22000, + "year": "2007", + "brand": "Hasselblad", + "rankDxo": 75, + "rankColor": 24.2, + "rankDyn": 12.5, + "rankLln": 532, + "rankDxo_ranking": 110, + "rankColor_ranking": 52, + "rankDyn_ranking": 116, + "rankLln_ranking": 246, + "name": "Hasselblad H3DII 39", + "pixelDepth": 39, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Nov. 2007", + "launchDateGraph": "2007-11-26", + "sensorraw": 39.46, + "link": "/Cameras/Hasselblad/H3DII-39", + "chapo": " The Hasselblad H3DII-39 is in good position for Color Depth ranking (in 4th place on the DxOMark general ranking with a score of 24.2; the average score for 4 medium format cameras is 24.1), and also for Dynamic Range (6th place on the DxOMark general ranking, with a score of 12.5; the average medium format score is 12.4). These two metrics are the most relevant for evaluating medium format sensors, since they are not designed for low-light conditions. (see “Medium-format camera ranking with respect to the DxOMark Sensor Scale”).Key sensor characteristicsThe Hasselblad H3DII-39 sensor features a very", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-hasselblad-h3dii-39/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_39/vignette3.png", + "Type": "Professional ", + "Announced": "Nov. 2007  ", + "Indicative price (USD)": "\n 22000  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 7248 x 5444  \n ", + "Sensor photo detectors (Mpix) ": "39.46  ", + "Sensor size (mm)": "36.7 x 49 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16", + "Focal length multiplier": "0.7 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/800 - 32  ", + "Frame rate (fps)": "0.7  ", + "Live view ": "No ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Hasselblad H system  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Hasselblad H3DII 50.txt b/scr/模糊专家系统/scrape/scraped/Hasselblad H3DII 50.txt new file mode 100644 index 0000000..a9b5e99 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Hasselblad H3DII 50.txt @@ -0,0 +1,96 @@ +{ + "id": 585, + "price": 20000, + "year": "2007", + "brand": "Hasselblad", + "rankDxo": 78, + "rankColor": 24.7, + "rankDyn": 12.7, + "rankLln": 574, + "rankDxo_ranking": 95, + "rankColor_ranking": 34, + "rankDyn_ranking": 96, + "rankLln_ranking": 218, + "name": "Hasselblad H3DII 50", + "pixelDepth": 50, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Nov. 2007", + "launchDateGraph": "2007-11-26", + "sensorraw": 51.68, + "link": "/Cameras/Hasselblad/H3DII-50", + "chapo": " Comparing the H3DII 50 to the new Phase One P65+ back (with its 60.5 Mpix sensor) is problematic for Hasselblad, however, in that the P65+ takes the lead in every aspect, per the table following:Camera ModelSensor SizeColor DepthDynamic RangeLow-Light ISOHasselblad H3DII51.7 Mpix24.712.7 574Phase One P65+60.5 Mpix26.013.01158Key sensor characteristicsThe Hasselblad H3DII-50 sensor features a very high resolution medium-format CCD with 51.7 Mpix manufactured by Kodak; a 16-bit Analog/Digital (A/D) converter; and an ISO range of 50 to 400.Key performance factorsWith respect to", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-hasseblad-h3dii-50/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/H3DII_50/vignette3.png", + "Type": "Professional ", + "Announced": "Nov. 2007  ", + "Indicative price (USD)": "\n 20000  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 8282 x 6240  \n ", + "Sensor photo detectors (Mpix) ": "51.68  ", + "Sensor size (mm)": "37 x 49 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "15", + "Focal length multiplier": "0.7 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/800 - 32  ", + "Frame rate (fps)": "0.9  ", + "Live view ": "No ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Hasselblad H system  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Hasselblad X1D-50c.txt b/scr/模糊专家系统/scrape/scraped/Hasselblad X1D-50c.txt new file mode 100644 index 0000000..d8765f9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Hasselblad X1D-50c.txt @@ -0,0 +1,96 @@ +{ + "id": 1114, + "price": 8995, + "year": "2016", + "brand": "Hasselblad", + "rankDxo": 102, + "rankColor": 26.2, + "rankDyn": 14.8, + "rankLln": 4489, + "rankDxo_ranking": 1, + "rankColor_ranking": 3, + "rankDyn_ranking": 1, + "rankLln_ranking": 2, + "name": "Hasselblad X1D-50c", + "pixelDepth": 50, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Jun. 2016", + "launchDateGraph": "2016-06-22", + "sensorraw": 51.4, + "link": "/Cameras/Hasselblad/X1D-50c", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/X1D-50c/vignette3.png", + "Type": "Professional ", + "Announced": "Jun. 2016  ", + "Indicative price (USD)": "\n 8995  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8280 x 6208  \n ", + "Sensor photo detectors (Mpix) ": "51.4  ", + "Sensor size (mm)": "32.9 x 43.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "15.0", + "Focal length multiplier": "0.79 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/2000 - 3600.0  ", + "Frame rate (fps)": "2.3  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.17.2-11 ", + "Dust cleaning": " ", + "Mount type": "Hasselblad X  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, 7.2V, 3200mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single\nContinuous\nTouch\nMF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Continuous ", + "Buffer size": " ", + "Recording medium": "SD, SDHC ", + "Image format": "JPG, TIFF, RAW (3FR) ", + "White balance bracketing": " ", + "Connectivity": "AV/USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Konica Minolta DYNAX 5D.txt b/scr/模糊专家系统/scrape/scraped/Konica Minolta DYNAX 5D.txt new file mode 100644 index 0000000..c9a5f9c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Konica Minolta DYNAX 5D.txt @@ -0,0 +1,96 @@ +{ + "id": 279, + "price": 500, + "year": "2005", + "brand": "Konica Minolta", + "rankDxo": 58, + "rankColor": 21.3, + "rankDyn": 11.1, + "rankLln": 605, + "rankDxo_ranking": 255, + "rankColor_ranking": 265, + "rankDyn_ranking": 267, + "rankLln_ranking": 210, + "name": "Konica Minolta DYNAX 5D", + "pixelDepth": 6, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Jul. 2005", + "launchDateGraph": "2005-07-15", + "sensorraw": 6.06, + "link": "/Cameras/Konica-Minolta/DYNAX-5D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_5D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jul. 2005  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3016 x 2008  \n ", + "Sensor photo detectors (Mpix) ": "6.06  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Konica Minolta  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Konica Minolta DYNAX 7D.txt b/scr/模糊专家系统/scrape/scraped/Konica Minolta DYNAX 7D.txt new file mode 100644 index 0000000..fde9406 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Konica Minolta DYNAX 7D.txt @@ -0,0 +1,96 @@ +{ + "id": 215, + "price": 569, + "year": "2004", + "brand": "Konica Minolta", + "rankDxo": 58, + "rankColor": 21.2, + "rankDyn": 11, + "rankLln": 613, + "rankDxo_ranking": 256, + "rankColor_ranking": 272, + "rankDyn_ranking": 273, + "rankLln_ranking": 208, + "name": "Konica Minolta DYNAX 7D", + "pixelDepth": 6, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2004", + "launchDateGraph": "2004-09-15", + "sensorraw": 6.06, + "link": "/Cameras/Konica-Minolta/DYNAX-7D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/DYNAX_7D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Sep. 2004  ", + "Indicative price (USD)": "\n 569  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3016 x 2008  \n ", + "Sensor photo detectors (Mpix) ": "6.06  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Konica Minolta  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leaf Aptus75S.txt b/scr/模糊专家系统/scrape/scraped/Leaf Aptus75S.txt new file mode 100644 index 0000000..47972d5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leaf Aptus75S.txt @@ -0,0 +1,96 @@ +{ + "id": 512, + "price": 32995, + "year": "2006", + "brand": "Leaf", + "rankDxo": 77, + "rankColor": 24.7, + "rankDyn": 12.5, + "rankLln": 538, + "rankDxo_ranking": 104, + "rankColor_ranking": 32, + "rankDyn_ranking": 126, + "rankLln_ranking": 239, + "name": "Leaf Aptus75S", + "pixelDepth": 33, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2006", + "launchDateGraph": "2006-09-26", + "sensorraw": 33.3, + "link": "/Cameras/Leaf/Aptus75S", + "chapo": " Key sensor characteristics The Leaf Aptus 75s features a very high resolution medium format CCD with 33.28 Mpix and a 14-bit Analog/Digital (A/D) converter, and its pixel pitch is larger (7.2 µm) compared to those of the latest high-resolution DSLRs. With such a large area, photographers can expect the sensor to be very sensitive and with low noise. ISO Latitude ranges from 50 to 800—the largest range provided by any medium format camera currently in the dxomark.com database.Key performance factorsWith respect to their general use, the two most significant dxomark.com rankings for medium format are Color Depth", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-leaf-aptus-75s/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Aptus75S/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2006  ", + "Indicative price (USD)": "\n 32995  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 6666 x 4992  \n ", + "Sensor photo detectors (Mpix) ": "33.3  ", + "Sensor size (mm)": "36 x 48 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16", + "Focal length multiplier": "0.72 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 800 ", + "Shutter type": "on body ", + "Fastest - Slowest speed (s)": "N/A - N/A  ", + "Frame rate (fps)": "0.83  ", + "Live view ": "N/A ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica C.txt b/scr/模糊专家系统/scrape/scraped/Leica C.txt new file mode 100644 index 0000000..591ab0e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica C.txt @@ -0,0 +1,96 @@ +{ + "id": 910, + "price": 795, + "year": "2013", + "brand": "Leica", + "rankDxo": 52, + "rankColor": 20.9, + "rankDyn": 11.6, + "rankLln": 193, + "rankDxo_ranking": 298, + "rankColor_ranking": 292, + "rankDyn_ranking": 204, + "rankLln_ranking": 314, + "name": "Leica C", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2013", + "launchDateGraph": "2013-09-10", + "sensorraw": 12.11, + "link": "/Cameras/Leica/C", + "chapo": " Introduction Specification and FeaturesLeica is well known for the iconic M-series rangefinders but they also make a range of highly desirable compacts in conjunction with Panasonic. This fetching high-end model is based on the Panasonic Lumix DMC-LF1 which includes an impressive optical image stabilized Leica DC Vario-Summicron 28-200mm equivalent f2.0-5.9 zoom, rear illuminated 12-Mpix MOS type sensor and a built-in 0.2” 200k dot electronic viewfinder (with +/-4 diopter adjustment). In addition to the EVF there’s a large 3” TFT type LCD with a high-res 921k dot panel but perhaps unsurprisingly in a compact camera as small", + "linkReview": "https://www.dxomark.com/leica-c-sensor-review-small-sensor-struggles-in-low-light/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/C/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2013  ", + "Indicative price (USD)": "\n 795  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 250.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "BP-DC14E, 3.7V, 950mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "One-shot,\nMF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 2 EV ", + "Drive modes": "Single, Continuous, Self-timer (2 or 10sec) ", + "Buffer size": " ", + "Recording medium": "SD,\nSDHC,\nSDXC ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica M Typ 240.txt b/scr/模糊专家系统/scrape/scraped/Leica M Typ 240.txt new file mode 100644 index 0000000..eff1fbf --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica M Typ 240.txt @@ -0,0 +1,96 @@ +{ + "id": 844, + "price": 6950, + "year": "2012", + "brand": "Leica", + "rankDxo": 84, + "rankColor": 24, + "rankDyn": 13.3, + "rankLln": 1860, + "rankDxo_ranking": 48, + "rankColor_ranking": 64, + "rankDyn_ranking": 57, + "rankLln_ranking": 41, + "name": "Leica M Typ 240", + "pixelDepth": 24, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 23.94, + "link": "/Cameras/Leica/M-Typ-240", + "chapo": " Introduction Retiring previous M9 and M9 P versions this latest model - known simply as the Leica M, sits alongside the Leica M-E Typ 220 as the two full frame cameras in the German manufacturer’s renowned M series. With a list price of $6950 (body only), streamlined functionality and rangefinder viewfinders Leica cameras are unusual in the digital era but they continue to hold reverence with some photojournalists.Quality engineering using brass and magnesium combined with simple controls and petite proportions make the M solid as well as portable and quick for reportage photographers. The rangefinder style", + "linkReview": "https://www.dxomark.com/leica-m-review-how-does-the-new-24-megapixel-cmos-sensor-in-leica-s-latest-rangefinder-perform/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/M_Typ_240/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 6950  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5984 x 4000  \n ", + "Sensor photo detectors (Mpix) ": "23.94  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Leica M  ", + "Weight (gr)": " ", + "Battery type": "Li-ion BP-SCL2, 7.4V, 1800 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.68 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": "to -0.5 dpt ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": "No ", + "Video file format": "Motion JPG, MOV ", + "Video codec": " ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica M-E Typ 220.txt b/scr/模糊专家系统/scrape/scraped/Leica M-E Typ 220.txt new file mode 100644 index 0000000..f8902fb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica M-E Typ 220.txt @@ -0,0 +1,96 @@ +{ + "id": 843, + "price": 5450, + "year": "2012", + "brand": "Leica", + "rankDxo": 69, + "rankColor": 22.7, + "rankDyn": 11.7, + "rankLln": 787, + "rankDxo_ranking": 170, + "rankColor_ranking": 159, + "rankDyn_ranking": 196, + "rankLln_ranking": 160, + "name": "Leica M-E Typ 220", + "pixelDepth": 18, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 18.11, + "link": "/Cameras/Leica/M-E-Typ-220", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/M-E_Typ_220/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 5450  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 5216 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "18.11  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 2500 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 4.0  ", + "Frame rate (fps)": "2.0  ", + "Live view ": "No ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Leica M  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, 3.7V, 1860 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.68 ", + "View finder coverage": "0 ", + "Mirror lockup": "- ", + "View finder diopter": "-3 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "2.5 ", + "Monitor pixel": "230000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "3/5/7 frames, 0.5 / 1 / 1.5 / 2 f-stops ", + "Exposure compensation": "-+/- 3 EV, 1/3 f-stops ", + "Drive modes": "Single, continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "SD \nSDHC ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "No ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica M10.txt b/scr/模糊专家系统/scrape/scraped/Leica M10.txt new file mode 100644 index 0000000..38f1db2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica M10.txt @@ -0,0 +1,96 @@ +{ + "id": 1207, + "price": 6895, + "year": "2017", + "brand": "Leica", + "rankDxo": 86, + "rankColor": 24.4, + "rankDyn": 13.2, + "rankLln": 2133, + "rankDxo_ranking": 38, + "rankColor_ranking": 42, + "rankDyn_ranking": 60, + "rankLln_ranking": 39, + "name": "Leica M10", + "pixelDepth": 24, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Jan. 2017", + "launchDateGraph": "2017-01-18", + "sensorraw": 23.89, + "link": "/Cameras/Leica/M10", + "chapo": "Leica M cameras boast a long and prestigious heritage, with the first analog M model dating back to 1954. The M8 was the first digital option unveiled in 2006, and Leica has experimented with different designs and specifications since. Launched in January 2017, the Leica M10 is the latest incarnation, offering a svelte mirrorless design built around a 24Mp full-frame CMOS sensor. Claimed to be the slimmest digital Leica M camera of all time, the M10 offers similar proportions to those legendary M analog versions, revered by photojournalists and street photographers alike for their petite dimensions and simple controls. Combining", + "linkReview": "https://www.dxomark.com/?p=16433", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/M10/vignette3.png", + "Type": "Professional ", + "Announced": "Jan. 2017  ", + "Indicative price (USD)": "\n 6895  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5984 x 3992  \n ", + "Sensor photo detectors (Mpix) ": "23.89  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 50000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 125.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": " ", + "Mount type": "Leica M  ", + "Weight (gr)": "590", + "Battery type": " Li-Ion, BP-SCL5, 7.4V, 1300mAh ", + "Battery weight (gr)": "70", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.73 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "-3 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1036800 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-3EV ", + "Drive modes": "Single, Continuous, Interval, Self-Timer ", + "Buffer size": "16 (JPEG) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "No ", + "Connectivity": "Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "No ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": "No ", + "Live autofocus": "No ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica M8.txt b/scr/模糊专家系统/scrape/scraped/Leica M8.txt new file mode 100644 index 0000000..336c533 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica M8.txt @@ -0,0 +1,96 @@ +{ + "id": 250, + "price": 5495, + "year": "2006", + "brand": "Leica", + "rankDxo": 59, + "rankColor": 21.1, + "rankDyn": 11.3, + "rankLln": 663, + "rankDxo_ranking": 252, + "rankColor_ranking": 283, + "rankDyn_ranking": 237, + "rankLln_ranking": 192, + "name": "Leica M8", + "pixelDepth": 10.3, + "sensor": "sensor_apsh", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2006", + "launchDateGraph": "2006-09-14", + "sensorraw": 10.34, + "link": "/Cameras/Leica/M8", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/M8/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2006  ", + "Indicative price (USD)": "\n 5495  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3920 x 2638  \n ", + "Sensor photo detectors (Mpix) ": "10.34  ", + "Sensor size (mm)": "18 x 27 ", + "Color filter array": "N/A ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.33 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "160 - 2500 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/8000 - 4  ", + "Frame rate (fps)": "2  ", + "Live view ": "no ", + "Stabilization ": "NO ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Leica M  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica M9 P.txt b/scr/模糊专家系统/scrape/scraped/Leica M9 P.txt new file mode 100644 index 0000000..aeddfe8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica M9 P.txt @@ -0,0 +1,96 @@ +{ + "id": 721, + "price": 6950, + "year": "2011", + "brand": "Leica", + "rankDxo": 68, + "rankColor": 22.5, + "rankDyn": 11.6, + "rankLln": 854, + "rankDxo_ranking": 174, + "rankColor_ranking": 187, + "rankDyn_ranking": 208, + "rankLln_ranking": 135, + "name": "Leica M9 P", + "pixelDepth": 18, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Jan. 2011", + "launchDateGraph": "2011-01-21", + "sensorraw": 18.11, + "link": "/Cameras/Leica/M9-P", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/M9_P/vignette3.png", + "Type": "Professional ", + "Announced": "Jan. 2011  ", + "Indicative price (USD)": "\n 6950  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 5216 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "18.11  ", + "Sensor size (mm)": "23.9 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 2500 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 8.0  ", + "Frame rate (fps)": "2.0  ", + "Live view ": "No ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Leica M  ", + "Weight (gr)": " ", + "Battery type": "1 lithium ion battery, nominal voltage 3.7 V, capacity 1900 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.68 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "2.5 ", + "Monitor pixel": "230000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": " + or - 3 EV (at 1/3 EV steps)  ", + "Drive modes": "Single, continuous, self-timer ", + "Buffer size": "8.0 ", + "Recording medium": "SD cards up to 2 GB/SDHC cards up to 32 GB ", + "Image format": "DNG (raw data), choice of uncompressed or slightly compressed (by non-linear reduction of color depth),\n2 JPEG compression levels. ", + "White balance bracketing": "No ", + "Connectivity": "USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "No ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica M9.txt b/scr/模糊专家系统/scrape/scraped/Leica M9.txt new file mode 100644 index 0000000..1251a28 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica M9.txt @@ -0,0 +1,96 @@ +{ + "id": 640, + "price": 5500, + "year": "2009", + "brand": "Leica", + "rankDxo": 69, + "rankColor": 22.5, + "rankDyn": 11.7, + "rankLln": 884, + "rankDxo_ranking": 172, + "rankColor_ranking": 183, + "rankDyn_ranking": 199, + "rankLln_ranking": 131, + "name": "Leica M9", + "pixelDepth": 18, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2009", + "launchDateGraph": "2009-09-09", + "sensorraw": 18.11, + "link": "/Cameras/Leica/M9", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/M9/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2009  ", + "Indicative price (USD)": "\n 5500  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 5216 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "18.11  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 2500 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/4000 - 4.0  ", + "Frame rate (fps)": "2.0  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Leica M  ", + "Weight (gr)": "545", + "Battery type": "3.7V 1900 mAh Lithium-Ion rechargeable ", + "Battery weight (gr)": "46", + "Tropicalization": "N/A ", + "Camera material": " ", + "Mount material": "N/A ", + "View finder type": "optical ", + "View finder magnification": "0.68 ", + "View finder coverage": "0 ", + "Mirror lockup": "N/A ", + "View finder diopter": "Rangefinder ", + "Monitor type": "LCD ", + "Monitor size": "2.5 ", + "Monitor pixel": "230000 ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Manual ", + "Autofocus modes": "NO ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "yes ", + "Exposure compensation": "-3 to +3 EV in 0.3 EV steps ", + "Drive modes": "single, continuous, self timer ", + "Buffer size": "N/A ", + "Recording medium": "SD/SDHC card ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "N/A ", + "Connectivity": "USB 2.0 ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": "NO ", + "External micro": "N/A ", + "Histogram": "N/A ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica Q Typ 116.txt b/scr/模糊专家系统/scrape/scraped/Leica Q Typ 116.txt new file mode 100644 index 0000000..efdf84d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica Q Typ 116.txt @@ -0,0 +1,96 @@ +{ + "id": 1032, + "price": 4250, + "year": "2015", + "brand": "Leica", + "rankDxo": 85, + "rankColor": 24.3, + "rankDyn": 12.7, + "rankLln": 2221, + "rankDxo_ranking": 45, + "rankColor_ranking": 47, + "rankDyn_ranking": 90, + "rankLln_ranking": 38, + "name": "Leica Q Typ 116", + "pixelDepth": 24.2, + "sensor": "sensor_fullframe", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2015", + "launchDateGraph": "2015-06-10", + "sensorraw": 24.16, + "link": "/Cameras/Leica/Q-Typ-116", + "chapo": " Introduction Leica is arguably best known as a manufacturer of rangefinder cameras, and the design and layout of the Leica Q takes its cue from the Leica M series. Although the Leica Q shuns the rangefinder mechanism for focusing, like its sibling the Leica M, it is a full-frame model with a new 24-Mpix CMOS sensor sans AA filter and a fixed 28mm f1.7 ASPH lens. Developed specifically for the Leica Q, the f1.7 Summilux lens features both aperture and focus rings and focuses to just 17cm in macro mode.With no rangefinder or optical viewfinder, the", + "linkReview": "https://www.dxomark.com/leica-q-sensor-review-leica-s-best-low-light-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Q_Typ_116/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2015  ", + "Indicative price (USD)": "\n 4250  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 50000 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.03 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "590", + "Battery type": "Li-ion, BC-DC12 7,2V, 1200 mAh ", + "Battery weight (gr)": "50", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (shutter release only after successful focusing), AFC (shutter release possible at any time), AF setting can be\nsaved, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV (at 1/3 EV steps) ", + "Drive modes": "Single, continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC, multimedia cards, speed class: UHS-1 ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "No ", + "Connectivity": "Micro USB socket (2.0)/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": " ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica S.txt b/scr/模糊专家系统/scrape/scraped/Leica S.txt new file mode 100644 index 0000000..d9475df --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica S.txt @@ -0,0 +1,96 @@ +{ + "id": 847, + "price": 21950, + "year": "2012", + "brand": "Leica", + "rankDxo": 76, + "rankColor": 23.9, + "rankDyn": 12.2, + "rankLln": 824, + "rankDxo_ranking": 108, + "rankColor_ranking": 67, + "rankDyn_ranking": 163, + "rankLln_ranking": 144, + "name": "Leica S", + "pixelDepth": 37.5, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 37.6, + "link": "/Cameras/Leica/S", + "chapo": " Introduction Launched at Photokina in 2012, the Leica S is a revised version of the original Leica S2, the firm’s professional medium format camera intended for both field use and studio photography. Like the original, it adopts a custom made Truesense Imaging 45 x 30 mm (3:2 aspect ratio) 37.5-Mpix CCD but features improved image processing with increased sensitivity from ISO100-1600 including an auto ISO selection option. Other upgrades include a larger buffer (now 2GB) and faster transfer rates, allowing consecutive capture of up to 32 lossely compressed DNG files.Although the environmentally sealed magnesium alloy shell", + "linkReview": "https://www.dxomark.com/leica-s-sensor-review-consummate-performer/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/S/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 21950  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 7520 x 5000  \n ", + "Sensor photo detectors (Mpix) ": "37.6  ", + "Sensor size (mm)": "30 x 45 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "0.8 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 32.0  ", + "Frame rate (fps)": "1.5  ", + "Live view ": "No ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Leica S  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, 7.4V, 2100mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Cast magnesium solid metal chassis with non-slip plastic finish, magnesium top panel, fiberglass reinforced polycarbonate base ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.87 ", + "View finder coverage": "98 ", + "Mirror lockup": "Yes ", + "View finder diopter": "from -3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFs (single), AFc (continuous) ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "3 or 5 pictures with choice of 1/2 EV, 1EV, 2EV, 3EV ", + "Exposure compensation": " +/- 3 EV (exposure values) adjustable in half steps ", + "Drive modes": "Single, continuous, self-timer (2 or 12s) ", + "Buffer size": "28 (uncompressed RAW), 32 (compressed RAW) ", + "Recording medium": "CF (max. UDMA7), SD up to 2GB, SDHC up to 32GB, SDXC ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": " ", + "Connectivity": "LEMO USB 2.0, HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "No ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica SL (Typ 601).txt b/scr/模糊专家系统/scrape/scraped/Leica SL (Typ 601).txt new file mode 100644 index 0000000..9f035dc --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica SL (Typ 601).txt @@ -0,0 +1,96 @@ +{ + "id": 1058, + "price": 7450, + "year": "2015", + "brand": "Leica", + "rankDxo": 88, + "rankColor": 25, + "rankDyn": 13.4, + "rankLln": 1821, + "rankDxo_ranking": 28, + "rankColor_ranking": 22, + "rankDyn_ranking": 53, + "rankLln_ranking": 42, + "name": "Leica SL (Typ 601)", + "pixelDepth": 24, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2015", + "launchDateGraph": "2015-10-20", + "sensorraw": 24.16, + "link": "/Cameras/Leica/SL-Typ-601", + "chapo": " Introduction Specifications and featuresLeica is well-known and rightly popular for its rangefinders and SLR-based S-system cameras, and now with the introduction of the new full-frame mirrorless Leica SL (Typ 601), the company must be hoping that they finally have a platform for the maker’s legendary R-system of SLR lenses. In fact, the Leica SL has been introduced alongside mount adapters for the M-, S-, and R-series lenses, and while it seems like the Leica SL has a new lens mount, it is in fact the same mount used on the Leica T. Although that camera was", + "linkReview": "https://www.dxomark.com/leica-sl-sensor-review-best-performing-leica-to-date/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SL_(Typ_601)/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2015  ", + "Indicative price (USD)": "\n 7450  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 50000 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 60.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.2 ", + "Dust cleaning": "Yes ", + "Mount type": "Leica L  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BP-SCL4, 8.4V, 1860mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.8 ", + "View finder coverage": "10 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +2 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (focus priority), AF-C (shutter priority), MF, Touch-AF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous slow S (4 fps), Continuous medium M (7 fps), Continuous fast F (11 fps), Self timer, Interval, Exposure Bracketing, Time exposures up to 30 min ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica T.txt b/scr/模糊专家系统/scrape/scraped/Leica T.txt new file mode 100644 index 0000000..31f9f30 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica T.txt @@ -0,0 +1,96 @@ +{ + "id": 954, + "price": 1850, + "year": "2014", + "brand": "Leica", + "rankDxo": 75, + "rankColor": 23, + "rankDyn": 12.7, + "rankLln": 1082, + "rankDxo_ranking": 112, + "rankColor_ranking": 127, + "rankDyn_ranking": 96, + "rankLln_ranking": 95, + "name": "Leica T", + "pixelDepth": 16, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2014", + "launchDateGraph": "2014-04-24", + "sensorraw": 16.21, + "link": "/Cameras/Leica/T", + "chapo": " Introduction With an overall DxOMark Sensor Score of 75, the Leica T ranks 71st on the DxOMark database for all camera sensors and 32nd for all cameras featuring an APS-C-sized sensor. Closer analysis of the three sub-scores indicates that Dynamic Range and ISO are slightly stronger aspects of sensor performance. A Dynamic Range score of 12.7 EVs and Low Light ISO score of 1082 come in at 63rd and 57th place, respectively, whereas a slightly weaker result of 23 bits for Color Depth impacts the Leica T’s overall performance. ", + "linkReview": "https://www.dxomark.com/leica-t-sensor-review-scores-for-leica-s-first-mirrorless-hybrid-unveiled/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/T/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2014  ", + "Indicative price (USD)": "\n 1850  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4944 x 3278  \n ", + "Sensor photo detectors (Mpix) ": "16.21  ", + "Sensor size (mm)": "15.7 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.52 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12500 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Leica T  ", + "Weight (gr)": "339", + "Battery type": "Leica BP-DC13 li-ion, 7.4V, 1040mAh ", + "Battery weight (gr)": "45", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3.7 ", + "Monitor pixel": "1300000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single\nContinuous\nMF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "+/- 3 EV (3 frames at 1/3 EV) ", + "Exposure compensation": "+/- 3 EV in 1/3 EV increments ", + "Drive modes": "\nSingle Self timer 2 or 12 s ", + "Buffer size": " ", + "Recording medium": "16 GB internal memory,\n SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "No ", + "Connectivity": "Micro USB port (2.0 High Speed), IEEE 802.11b/g/n ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": " 1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "MPEG ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Leica X Vario.txt b/scr/模糊专家系统/scrape/scraped/Leica X Vario.txt new file mode 100644 index 0000000..d1de4a0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Leica X Vario.txt @@ -0,0 +1,96 @@ +{ + "id": 944, + "price": 2850, + "year": "2013", + "brand": "Leica", + "rankDxo": 78, + "rankColor": 23.4, + "rankDyn": 12.7, + "rankLln": 1320, + "rankDxo_ranking": 96, + "rankColor_ranking": 108, + "rankDyn_ranking": 95, + "rankLln_ranking": 63, + "name": "Leica X Vario", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2013", + "launchDateGraph": "2013-06-11", + "sensorraw": 16.19, + "link": "/Cameras/Leica/X-Vario", + "chapo": " Introduction After the success of the APS-C Leica X and revised X2 compacts with their 23mm (35mm equivalent) f2.8 fixed lens, it was still somewhat surprising to see the firm launch the X Vario – an X derived body complete with a fixed Leica Vario-Elmar zoom. Although the 18-46mm (28-70mm equivalent) Leica Vario-Elmar ASPH has only a modest maximum f3.5-6.4 variable aperture, with 9 elements in 8 groups (with 2 aspherical elements) optical quality is promising.&nbsp; As well as a manual focus ring (apertures are set using a dial on the body), it has autofocus using", + "linkReview": "https://www.dxomark.com/leica-x-vario-sensor-review-formidable-low-light-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/X_Vario/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2013  ", + "Indicative price (USD)": "\n 2850  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4944 x 3274  \n ", + "Sensor photo detectors (Mpix) ": "16.19  ", + "Sensor size (mm)": "15.7 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12500 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BP-DC8, 3.7V, 1600mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal, Leather ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF, MF ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "Three pictures in graduations up to 3 EV, adjustable in 1/3 EV increments ", + "Exposure compensation": "+/-3 EV in 1/3 EV increments ", + "Drive modes": "Single, Continuous ", + "Buffer size": "8 (RAW+JPEG) ", + "Recording medium": "SD,\nSDHC,\nSDXC ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "No ", + "Connectivity": "Mini USB 2.0, HDMI, special socket exclusively for external Leica EVF 2 electronic viewfinder ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Mamiya ZD Back.txt b/scr/模糊专家系统/scrape/scraped/Mamiya ZD Back.txt new file mode 100644 index 0000000..579beb5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Mamiya ZD Back.txt @@ -0,0 +1,96 @@ +{ + "id": 484, + "price": 6999, + "year": "2008", + "brand": "Mamiya", + "rankDxo": 64, + "rankColor": 23.4, + "rankDyn": 11.7, + "rankLln": 245, + "rankDxo_ranking": 211, + "rankColor_ranking": 116, + "rankDyn_ranking": 200, + "rankLln_ranking": 303, + "name": "Mamiya ZD Back", + "pixelDepth": 21.5, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2008", + "launchDateGraph": "2008-09-01", + "sensorraw": 21.46, + "link": "/Cameras/Mamiya/ZD-Back", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/ZD_Back/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2008  ", + "Indicative price (USD)": "\n 6999  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 5344 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "21.46  ", + "Sensor size (mm)": "36 x 48 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "0.7 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "N/A - N/A  ", + "Frame rate (fps)": "1.2  ", + "Live view ": "No ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 AW1.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 AW1.txt new file mode 100644 index 0000000..9df46d9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 AW1.txt @@ -0,0 +1,96 @@ +{ + "id": 912, + "price": 800, + "year": "2013", + "brand": "Nikon", + "rankDxo": 51, + "rankColor": 20.2, + "rankDyn": 10.9, + "rankLln": 428, + "rankDxo_ranking": 303, + "rankColor_ranking": 324, + "rankDyn_ranking": 287, + "rankLln_ranking": 288, + "name": "Nikon 1 AW1", + "pixelDepth": 14.2, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2013", + "launchDateGraph": "2013-09-19", + "sensorraw": 14.24, + "link": "/Cameras/Nikon/1-AW1", + "chapo": " Introduction Nikon were one of the last major camera maker’s to introduce a mirrorless model and while the Nikon 1 V1 garnered praise initially later models from the firm failed to induce the same levels of curiosity. Fast-forward to the AW1 and Nikon has clearly given the system a new lease of life. The AW1 borrows on the internal components of the land-based Nikon 1 system with its 14.2-Mpix 1-inch type (13.2mm x 8.8mm) CMOS complete with fast focusing from its hybrid AF system and wraps it in a freeze-proof, shockproof and fully submersible shell.Sealed and", + "linkReview": "https://www.dxomark.com/nikon-1-aw1-review-1-system-reborn/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_AW1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2013  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4620 x 3082  \n ", + "Sensor photo detectors (Mpix) ": "14.24  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "160 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": "313", + "Battery type": "Li-ion, EN-EL20, 7.4V, 900mAh ", + "Battery weight (gr)": "39.7", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Auto (AF)\nAuto AF-S/AF-C selection (AF-A)\nSingle-Servo AF (AF-S)\nContinuous-Servo (AF-C)\nFull-time Servo (AF-F)\nManual Focus (MF) ", + "Number of autofocus points": "135 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 3 EV in increments of 1/3EV ", + "Drive modes": "Single, Continuous (at full resolution\n15 frames per second with AF; 30/60 fps with focus locked on first frame); Self-timer(2, 5, 10 sec.) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC card ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB USB 2.0 (480 Mbit/sec)\nHDMI Yes (mini-HDMI)\nWireless Optional\nWireless notes via WU-1b wireless adapter\nRemote control Yes (Optional ML-L3) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264,MPEG4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 J1.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 J1.txt new file mode 100644 index 0000000..70700b4 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 J1.txt @@ -0,0 +1,96 @@ +{ + "id": 744, + "price": 700, + "year": "2011", + "brand": "Nikon", + "rankDxo": 56, + "rankColor": 21.5, + "rankDyn": 11, + "rankLln": 372, + "rankDxo_ranking": 264, + "rankColor_ranking": 253, + "rankDyn_ranking": 272, + "rankLln_ranking": 296, + "name": "Nikon 1 J1", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2011", + "launchDateGraph": "2011-09-21", + "sensorraw": 10.17, + "link": "/Cameras/Nikon/1-J1", + "chapo": " Introduction With this new product, Nikon is a late arrival in a market in which Panasonic, Olympus and&nbsp; Sony have already carved out their places. Nikon has made a very important technological effort in order to succeed... the question is, does this effort correspond to market demands? As a response to the problem of bulkiness, the answer appears to be yes. As for image quality, the analysis of the Nikon J1 sensor below provides at least an initial response. (We will be reviewing the Nikon V1 shortly)Nikon J1: a small", + "linkReview": "https://www.dxomark.com/nikon-1-series-the-tests/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_J1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2011  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3904 x 2606  \n ", + "Sensor photo detectors (Mpix) ": "10.17  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical and Electronic ", + "Fastest - Slowest speed (s)": "\n1/16000 - \n30  ", + "Frame rate (fps)": "13.0  ", + "Live view ": "Yes ", + "Stabilization ": " ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": "234", + "Battery type": "MH-27 Battery Charger ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Magnesium ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Auto (AF)\nAuto AF-S/AF-C selection (AF-A)\nSingle-servo AF (AF-S)\nContinuous-servo (AF-C)\nFull-time Servo (AF-F)\nManual Focus (MF) ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3 EV, 1/3 EV steps ", + "Drive modes": "Single frame, continuous, Electronic (Hi), Self-timer, delayed remote, quick-response remote, interval timer shooting ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "NEF (RAW), JPEG ", + "White balance bracketing": " ", + "Connectivity": "\nUSB: Hi-speed USB\nHDMI output: Type C mini-pin HDMI connector ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 X 1080/60i ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 J2.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 J2.txt new file mode 100644 index 0000000..c4a8836 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 J2.txt @@ -0,0 +1,96 @@ +{ + "id": 824, + "price": 700, + "year": "2012", + "brand": "Nikon", + "rankDxo": 54, + "rankColor": 21.3, + "rankDyn": 10.8, + "rankLln": 363, + "rankDxo_ranking": 281, + "rankColor_ranking": 270, + "rankDyn_ranking": 290, + "rankLln_ranking": 297, + "name": "Nikon 1 J2", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2012", + "launchDateGraph": "2012-08-09", + "sensorraw": 10.17, + "link": "/Cameras/Nikon/1-J2", + "chapo": " Introduction Launched in September 2011, the Nikon 1 system is based on a CX sensor (harkening back to the Nikon DX and FX DSLR sensors). Its 13.2 x 8.8mm size is smaller than micro 4:3 and APS-C sensors, however, the J1’s DxOMark scores were surprisingly honorable for a sensor of this size. With a DxOMark overall score of 56, the Nikon compact managed to compete with larger sensors, including 4:3 formats. Its good performance in terms of color depth and dynamic range at its lowest ISO was likewise surprising. Nevertheless, it was penalized in terms of", + "linkReview": "https://www.dxomark.com/nikon-1-j2-review-all-quiet-on-the-eastern-front/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_J2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2012  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3904 x 2604  \n ", + "Sensor photo detectors (Mpix) ": "10.17  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical and Electronic ", + "Fastest - Slowest speed (s)": "\n1/16000 - 30.0  ", + "Frame rate (fps)": "\n5 frames per second 10, 30 or 60 fps using Electronic (Hi) shutter  ", + "Live view ": "Yes ", + "Stabilization ": " ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": " ", + "Battery type": "EN-EL 20 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Magnesium ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Auto (AF)\nAuto AF-S/AF-C selection (AF-A)\nSingle-servo AF (AF-S)\nContinuous-servo (AF-C)\nFull-time Servo (AF-F)\nManual Focus (MF) ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3 EV, 1/3 EV steps ", + "Drive modes": "Single frame, continuous, Electronic (Hi), Self-timer, delayed remote, quick-response remote, interval timer shooting ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "NEF (RAW), JPEG ", + "White balance bracketing": " ", + "Connectivity": "\nUSB: Hi-speed USB\nHDMI output: Type C mini-pin HDMI connector ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 X 1080/60i ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 J3.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 J3.txt new file mode 100644 index 0000000..4bd90ab --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 J3.txt @@ -0,0 +1,96 @@ +{ + "id": 852, + "price": 600, + "year": "2013", + "brand": "Nikon", + "rankDxo": 52, + "rankColor": 20.4, + "rankDyn": 11, + "rankLln": 420, + "rankDxo_ranking": 295, + "rankColor_ranking": 314, + "rankDyn_ranking": 273, + "rankLln_ranking": 290, + "name": "Nikon 1 J3", + "pixelDepth": 14.2, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2013", + "launchDateGraph": "2013-01-08", + "sensorraw": 14.24, + "link": "/Cameras/Nikon/1-J3", + "chapo": " Introduction Though five months is a relatively short cycle time for updating an interchangeable lens digital camera, the J3’s predecessor was not a particularly impressive performer or popular camera, so it makes sense that Nikon would want to update it relatively quickly.Unfortunately, not that much has changed in the new model to make it any more appealing. Externally, the J3 looks virtually identical to the J2 (which is still priced at $549.95 with the 10-30mm lens), with the exception of the mode dial, which has been moved to the top of the camera. Internally, however, the", + "linkReview": "https://www.dxomark.com/nikon-1-j3-review-a-new-midrange-offering-doesn-t-shine/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_J3/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2013  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4620 x 3082  \n ", + "Sensor photo detectors (Mpix) ": "14.24  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "160 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "60.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL20, 7.2V, 1020mAh, 7.4Wh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Autofocus (AF):\n single AF (AF-S);\n continuous AF (AF-C);\n auto AF-S/AF-C selection (AF-A);\n fulltime AF (AF-F).\nManual focus (MF) ", + "Number of autofocus points": "135 ", + "Exposure bracketing": " ", + "Exposure compensation": "-3 to +3 EV in increments of 1/3 EV ", + "Drive modes": "Single frame, continuous\nSelf-timer ", + "Buffer size": " ", + "Recording medium": "SD;\nSDHC;\nSDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": " ", + "Connectivity": "USB/HDMI (Type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 / MPEG-4 Advanced Video Coding ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 J4.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 J4.txt new file mode 100644 index 0000000..b54fb3a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 J4.txt @@ -0,0 +1,96 @@ +{ + "id": 950, + "price": 599, + "year": "2014", + "brand": "Nikon", + "rankDxo": 53, + "rankColor": 20.8, + "rankDyn": 10.7, + "rankLln": 426, + "rankDxo_ranking": 292, + "rankColor_ranking": 299, + "rankDyn_ranking": 309, + "rankLln_ranking": 289, + "name": "Nikon 1 J4", + "pixelDepth": 18.4, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2014", + "launchDateGraph": "2014-04-10", + "sensorraw": 18.38, + "link": "/Cameras/Nikon/1-J4", + "chapo": " Although aimed more towards the mass consumer market the new Nikon 1 J4 boasts a similar specification to the ‘pro’ Nikon 1 V3, but without the EVF or hotshoe.Nikon 1 J4 Specification – Impressive features in a consumer bodyCompetition is rife in the mirrorless hybrid market with lots of small, lightweight cameras boasting large image sensors available from all the main manufacturers. The Nikon 1 range offers 3 tiers, including the mass consumer oriented Nikon 1 J series, the more enthusiast Nikon 1 V range, as well as Nikon 1 AW waterproof options. The new Nikon 1", + "linkReview": "https://www.dxomark.com/nikon-1-j4-preview-nikon-overhaul-their-entry-level-mirrorless-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_J4/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2014  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5248 x 3502  \n ", + "Sensor photo detectors (Mpix) ": "18.38  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "160 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "60.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL22 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (AF-S); continuous AF (AF-C); auto AF-S/AF-C selection (AF-A); fulltime AF (AF-F) ", + "Number of autofocus points": "171 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3 EV in increments of 1/3 EV ", + "Drive modes": "Single, Continuous, Self-timer (2s, 10s) ", + "Buffer size": "20 (RAW) ", + "Recording medium": "microSD (micro Secure Digital), microSDHC and microSDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 (Hi-Speed), HDMI output (Type D HDMI connector), Wi-Fi (802.11b/g) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 J5.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 J5.txt new file mode 100644 index 0000000..fe90a2b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 J5.txt @@ -0,0 +1,96 @@ +{ + "id": 1025, + "price": 500, + "year": "2015", + "brand": "Nikon", + "rankDxo": 65, + "rankColor": 22.1, + "rankDyn": 12, + "rankLln": 479, + "rankDxo_ranking": 208, + "rankColor_ranking": 217, + "rankDyn_ranking": 169, + "rankLln_ranking": 275, + "name": "Nikon 1 J5", + "pixelDepth": 20.8, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2015", + "launchDateGraph": "2015-04-02", + "sensorraw": 20.79, + "link": "/Cameras/Nikon/1-J5", + "chapo": " Introduction The highest resolution Nikon hybrid model to date, the new Nikon 1 J5 features a 20.8Mp back-illuminated CX-format 1-inch sensor with no Optical Low Pass Filter. Nikon 1 J5 Specification: Tilting touch-screen LCD and 20fps burst shootingNikon 1 J5 Specification: CX-format lagging behind the hybrid competition Nikon 1 J5 Specification: Tilting touch-screen LCD and 20fps burst shootingDespite being a little slow off the blocks releasing hybrid cameras, Nikon are well up and running now with the J5 representing their 11th release in less than four years. The", + "linkReview": "https://www.dxomark.com/nikon-1-j5-preview-new-20-8mp-sensor-and-4k-video/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_J5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2015  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5584 x 3724  \n ", + "Sensor photo detectors (Mpix) ": "20.79  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "160 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL24, 7.2V, 850mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (AF-S); continuous AF (AF-C); auto AF-S/AF-C selection (AF-A); fulltime AF (AF-F) ", + "Number of autofocus points": "171 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/-3 EV in increments of 1/3 EV ", + "Drive modes": "Single frame, Continuous, Self-timer (2 or 10 sec), Interval timer shooting ", + "Buffer size": " ", + "Recording medium": "microSD, SDHC, SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0, WiFi (IEEE 802.11b, IEEE 802.11g) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 15 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 S1.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 S1.txt new file mode 100644 index 0000000..09cd7c8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 S1.txt @@ -0,0 +1,96 @@ +{ + "id": 853, + "price": 499, + "year": "2013", + "brand": "Nikon", + "rankDxo": 56, + "rankColor": 21.4, + "rankDyn": 11.1, + "rankLln": 397, + "rankDxo_ranking": 261, + "rankColor_ranking": 260, + "rankDyn_ranking": 268, + "rankLln_ranking": 293, + "name": "Nikon 1 S1", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2013", + "launchDateGraph": "2013-01-08", + "sensorraw": 10.27, + "link": "/Cameras/Nikon/1-S1", + "chapo": " Introduction Late to the Mirrorless Hybrid party Nikon launched their first models, the V1 and J1, in 2011 and keen to catch up, updated V2 and J2 versions quickly followed in 2012. Then January 2013 saw the release of the new Nikon 1 S1 with the same size 1-inch Nikon CX sensor used in their previous Hybrids, which is physically smaller than the Micro Four Thirds or APS-C sensors in most of the competition.The advantage of the smaller CX sensor however is that Nikon can design tiny lenses and their 1 Nikkor range is great for", + "linkReview": "https://www.dxomark.com/nikon-1-s1-review-a-new-product-line-for-the-nikon-hybrid-system/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_S1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2013  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3948 x 2602  \n ", + "Sensor photo detectors (Mpix) ": "10.27  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "60.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL20, 7.2V, 1020mAh, 7.4Wh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF):\n single AF (AF-S);\n continuous AF (AF-C);\n auto AF-S/AF-C selection (AF-A);\n fulltime AF (AF-F).\nManual focus (MF) ", + "Number of autofocus points": "135 ", + "Exposure bracketing": " ", + "Exposure compensation": "-3 to +3 EV in increments of 1/3 EV ", + "Drive modes": "Single frame, continuous\nSelf-timer\n\n ", + "Buffer size": " ", + "Recording medium": "SD;\nSDHC;\nSDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": " ", + "Connectivity": "USB/HDMI (Type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 V1.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 V1.txt new file mode 100644 index 0000000..b9b9afa --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 V1.txt @@ -0,0 +1,96 @@ +{ + "id": 745, + "price": 1000, + "year": "2011", + "brand": "Nikon", + "rankDxo": 54, + "rankColor": 21.3, + "rankDyn": 11, + "rankLln": 346, + "rankDxo_ranking": 280, + "rankColor_ranking": 270, + "rankDyn_ranking": 280, + "rankLln_ranking": 299, + "name": "Nikon 1 V1", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2011", + "launchDateGraph": "2011-09-21", + "sensorraw": 10.17, + "link": "/Cameras/Nikon/1-V1", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_V1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2011  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3904 x 2606  \n ", + "Sensor photo detectors (Mpix) ": "10.17  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical and Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "34.0  ", + "Live view ": "Yes ", + "Stabilization ": " ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": "293", + "Battery type": "MH-25 Battery Charger ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Magnesium ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": " ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-3 to +1 m ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-point AF: 135 focus areas, Auto-area AF: 41 focus areas, Subject tracking, Face-priority AF ", + "Number of autofocus points": "135 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single frame, continuous, Mechanical, Electronic, Electronic (Hi), Self-timer, delayed remote, quick-response remote, interval timer shooting ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "NEF (RAW), JPEG ", + "White balance bracketing": " ", + "Connectivity": "\nUSB: Hi-speed USB\nHDMI output: Type C mini-pin HDMI connector\nAccessory hot shoe used for designated accessories\nVideo output: NTSC/PAL\nAudio input: Stereo mini-pin jack (3.5mm diameter) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": " ", + "GPS": "\nOptional GP-N100 GPS uni ", + "Video": "Yes ", + "Maximum format image video": "1920 X 1080/60i ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 V2.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 V2.txt new file mode 100644 index 0000000..d8d13bb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 V2.txt @@ -0,0 +1,96 @@ +{ + "id": 849, + "price": 899, + "year": "2012", + "brand": "Nikon", + "rankDxo": 50, + "rankColor": 20.2, + "rankDyn": 10.8, + "rankLln": 403, + "rankDxo_ranking": 306, + "rankColor_ranking": 324, + "rankDyn_ranking": 290, + "rankLln_ranking": 292, + "name": "Nikon 1 V2", + "pixelDepth": 14.2, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2012", + "launchDateGraph": "2012-10-24", + "sensorraw": 14.24, + "link": "/Cameras/Nikon/1-V2", + "chapo": " Another high-end digital compact with interchangeable lenses (CX-mount as opposed to DX and FX for Nikon DSLRs), the Nikon 1 V2 has been extensively revised with respect to the V1 so as to respond to the needs of the passionate photographers for whom it is intended.850 million pixels per secondAccording to Nikon, speed is the compact hybrid’s trump card, and indeed, speed seems to be at the heart of the 1 V2’s operation with a new 1-inch, 14.2-megapixel CMOS sensor endowed with high-speed data transfer and a new EXPEED 3a processor.The Nikon 1 V2 can shoot photos", + "linkReview": "https://www.dxomark.com/nikon-1-v2-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_V2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2012  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4620 x 3082  \n ", + "Sensor photo detectors (Mpix) ": "14.24  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": " 3:2 ", + "ISO latitude ": "160 - 6400 ", + "Shutter type": "Mechanical and Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "15.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": "278", + "Battery type": "Lithium-Ion EN-EL21 ", + "Battery weight (gr)": "57", + "Tropicalization": "Yes, \nTemperature \n0C to 40C/+32F to 104F\nHumidity \n85 procent or less (no condensation) ", + "Camera material": "Magnesium ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-3 to +2 m-1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor)\n Phase Detect\n Multi-area\n Selective single-point\n Tracking ", + "Number of autofocus points": "135 ", + "Exposure bracketing": "No ", + "Exposure compensation": "-3-5 EV (at 1/3 EV steps) ", + "Drive modes": "Single frame, continuous (15 fps),\n Self-timer (2 s, 10 s), remote ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG\n RAW (NEF)\nMNS (MOV + JPG) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 (480 Mbit/sec)\nYes, Type C mini-pin HDMI connector\nWireless : Optional\nRemote control: Yes (Optional ML-L3) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " \nMOV ", + "Video codec": " \nH.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon 1 V3.txt b/scr/模糊专家系统/scrape/scraped/Nikon 1 V3.txt new file mode 100644 index 0000000..5eef4c2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon 1 V3.txt @@ -0,0 +1,96 @@ +{ + "id": 947, + "price": 999, + "year": "2014", + "brand": "Nikon", + "rankDxo": 52, + "rankColor": 20.8, + "rankDyn": 10.7, + "rankLln": 384, + "rankDxo_ranking": 296, + "rankColor_ranking": 298, + "rankDyn_ranking": 309, + "rankLln_ranking": 295, + "name": "Nikon 1 V3", + "pixelDepth": 18.4, + "sensor": "sensor_compact_1", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Mar. 2014", + "launchDateGraph": "2014-03-13", + "sensorraw": 18.38, + "link": "/Cameras/Nikon/1-V3", + "chapo": " The Nikon 1 V3 boasts a more aesthetically pleasing design compared to the V2, but at the expense of the built-in Electronic Viewfinder (EVF), which has been removed.The Master of SpeedThe V3’s strap line “I AM THE MASTER OF SPEED” tells us the big news is its performance capabilities. Appealing to action photography enthusiasts who want to travel light, the small bodied V3 offers burst shooting at 20fps with continuous AF, making it almost twice as fast as Nikon’s pro DSLRs. If you need even more speed though with focus locked to the first frame, the V3", + "linkReview": "https://www.dxomark.com/nikon-1-v3-setting-new-standards-for-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/1_V3/vignette3.png", + "Type": "Hybrid ", + "Announced": "Mar. 2014  ", + "Indicative price (USD)": "\n 999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5248 x 3502  \n ", + "Sensor photo detectors (Mpix) ": "18.38  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "160 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 30.0  ", + "Frame rate (fps)": "30.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon 1 CX  ", + "Weight (gr)": "324", + "Battery type": "Li-ion, EN-EL20a, 7.4V, 900mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Auto (AF)\nAuto AF-S/AF-C selection (AF-A)\nSingle-Servo AF (AF-S)\nContinuous-Servo (AF-C)\nFull-time Servo (AF-F) \nManual Focus (MF) ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/-3 EV in increments of 1/3EV ", + "Drive modes": "Single-frame (S) mode\nContinuous\nSelf-timer mode\nDelayed remote\nQuick Response Remote\nInterval Timer Shooting ", + "Buffer size": " ", + "Recording medium": "microSD\nSDHC\nSDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB/Type D mini-pin HDMI  ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264,MPEG4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix A.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix A.txt new file mode 100644 index 0000000..7e950ad --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix A.txt @@ -0,0 +1,96 @@ +{ + "id": 867, + "price": 1100, + "year": "2013", + "brand": "Nikon", + "rankDxo": 80, + "rankColor": 23.4, + "rankDyn": 13.8, + "rankLln": 1164, + "rankDxo_ranking": 77, + "rankColor_ranking": 108, + "rankDyn_ranking": 32, + "rankLln_ranking": 81, + "name": "Nikon Coolpix A", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Mar. 2013", + "launchDateGraph": "2013-03-04", + "sensorraw": 16.37, + "link": "/Cameras/Nikon/Coolpix-A", + "chapo": " No optical low-pass filterThe Coolpix A utilizes the same 16.2-megapixel Nikon DX (23.6 x 15.6mm) CMOS sensor found in the D7000, so we expect the sensor measurements to be very close to Nikon’s DSLR. The Coolpix A sensor unit does not incorporate an optical low pass filter, however, which could have an impact on the Sensor Scores. Historically used to smooth out the unwelcome colored pattern effect of Moiré, which is caused by very tiny details such as fibers that are too fine for the sensor to record, an optical low-pass filter applies a gentle Gaussian blur", + "linkReview": "https://www.dxomark.com/nikon-coolpix-a-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_A/vignette3.png", + "Type": "High-end compact ", + "Announced": "Mar. 2013  ", + "Indicative price (USD)": "\n 1100  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4992 x 3280  \n ", + "Sensor photo detectors (Mpix) ": "16.37  ", + "Sensor size (mm)": "15.6 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic / Mechanical ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, EN-EL20, 7.2V, 1020mAh, 7.4Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S\nAF-C\nMF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5 EV for images and +/-2 for movies in steps of 1/3 EV ", + "Drive modes": "Best Shot Selector\nContinuous\nMulti-shot 16\nSingle ", + "Buffer size": " ", + "Recording medium": "SD / SDHC / SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": " ", + "Connectivity": "AV / USB / Wi-Fi (optional) / HDMI (Type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920x1080p / 30fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": " MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P330.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P330.txt new file mode 100644 index 0000000..d94b948 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P330.txt @@ -0,0 +1,96 @@ +{ + "id": 869, + "price": 380, + "year": "2013", + "brand": "Nikon", + "rankDxo": 54, + "rankColor": 21, + "rankDyn": 11.7, + "rankLln": 213, + "rankDxo_ranking": 286, + "rankColor_ranking": 287, + "rankDyn_ranking": 196, + "rankLln_ranking": 308, + "name": "Nikon Coolpix P330", + "pixelDepth": 12.2, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Mar. 2013", + "launchDateGraph": "2013-03-04", + "sensorraw": 12.19, + "link": "/Cameras/Nikon/Coolpix-P330", + "chapo": " Introduction Nikon have several segments in their range of cameras, the P in the title P330 stands for ‘Performance’, a name that seems justified here. With a 12.2MPix sensor the image files are not huge but should suffice for all normal uses. The lens is a 5X optical zoom: 5.1mm – 25.5mm f1.8 – 5.6. The 35mm full frame equivalent would be 24mm – 120mm. Optically the design is 7 elements in 6 groups. There is a wide range of functionality: vibration reduction, built in GPS, HDR capture, high speed", + "linkReview": "https://www.dxomark.com/coolpix-p330-review-performance-above-its-paygrade/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P330/vignette3.png", + "Type": "Compact ", + "Announced": "Mar. 2013  ", + "Indicative price (USD)": "\n 380  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4032 x 3024  \n ", + "Sensor photo detectors (Mpix) ": "12.19  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.65 ", + "Aspect Ratio": " 4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "No  ", + "Weight (gr)": "200", + "Battery type": "Li-Ion, EN-EL12, 3.7V, 1050mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, MF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "at 1/3 EV steps ", + "Exposure compensation": " +/- 2 (at 1/3 EV steps) ", + "Drive modes": "\n Single\n Continuous L\n Continuous H\n Continuous H -60 (60fps)\n Continuous H -120 (120fps)\n Pre-shooting cache\n Best Shot Selector\n Multi-shot 16\n Interval time shooting\nContinuous drive Yes (10 fps)\nSelf-timer Yes (2 or 10 se ", + "Buffer size": " ", + "Recording medium": " SD/SDHC/SDXC  ", + "Image format": "JPEG, RAW (NRW), 3D images: MPO ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 (480 Mbit/sec)\nWireless: Optional  ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H264, MPEG4 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P340.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P340.txt new file mode 100644 index 0000000..cc33cc3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P340.txt @@ -0,0 +1,96 @@ +{ + "id": 939, + "price": 380, + "year": "2014", + "brand": "Nikon", + "rankDxo": 54, + "rankColor": 20.7, + "rankDyn": 11.9, + "rankLln": 273, + "rankDxo_ranking": 279, + "rankColor_ranking": 305, + "rankDyn_ranking": 178, + "rankLln_ranking": 301, + "name": "Nikon Coolpix P340", + "pixelDepth": 12.2, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Feb. 2014", + "launchDateGraph": "2014-02-06", + "sensorraw": 12.19, + "link": "/Cameras/Nikon/Coolpix-P340", + "chapo": " Introduction After last year’s more substantial update to the firm’s enthusiast oriented Coolpix P330 model, this year’s iteration is a less ambitious revamp. The Coolpix P340 shares seemingly the same, larger than average 1/1.7-inch type 12-Mpix BSI CMOS sensor and stabilized 24-120mm equivalent f1.8-5.6 Nikkor lens as its predecessor. It also adopts the cameras shell and similar rear 3.0" 921k-dot LCD, though now it has an antireflective coating.The main difference between the two, however, is the inclusion of WiFi for both remote control and file transfer to app-driven smartphones. This replaces the GPS function of its", + "linkReview": "https://www.dxomark.com/nikon-coolpix-p340-sensor-review-modest-revamp/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P340/vignette3.png", + "Type": "Compact ", + "Announced": "Feb. 2014  ", + "Indicative price (USD)": "\n 380  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4032 x 3024  \n ", + "Sensor photo detectors (Mpix) ": "12.19  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "15.0", + "Focal length multiplier": "4.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "EN-EL12 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, MF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous L, Continuous H, Best Shot Selector, Multi-shot 16, Continuous 120fps, Continuous 60fps, Pre-shooting cache ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(NRW) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P6000.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P6000.txt new file mode 100644 index 0000000..926ff4a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P6000.txt @@ -0,0 +1,96 @@ +{ + "id": 248, + "price": 439, + "year": "2008", + "brand": "Nikon", + "rankDxo": 35, + "rankColor": 19, + "rankDyn": 10.2, + "rankLln": 129, + "rankDxo_ranking": 348, + "rankColor_ranking": 348, + "rankDyn_ranking": 340, + "rankLln_ranking": 341, + "name": "Nikon Coolpix P6000", + "pixelDepth": 13.5, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2008", + "launchDateGraph": "2008-08-07", + "sensorraw": 13.46, + "link": "/Cameras/Nikon/Coolpix-P6000", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P6000/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2008  ", + "Indicative price (USD)": "\n 439  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4240 x 3174  \n ", + "Sensor photo detectors (Mpix) ": "13.46  ", + "Sensor size (mm)": "6 x 7 ", + "Color filter array": "N/A ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": "4:3  ", + "ISO latitude ": "64 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30  ", + "Frame rate (fps)": "N/A  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7000.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7000.txt new file mode 100644 index 0000000..569967b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7000.txt @@ -0,0 +1,96 @@ +{ + "id": 681, + "price": 500, + "year": "2010", + "brand": "Nikon", + "rankDxo": 39, + "rankColor": 19.1, + "rankDyn": 10.8, + "rankLln": 147, + "rankDxo_ranking": 340, + "rankColor_ranking": 343, + "rankDyn_ranking": 308, + "rankLln_ranking": 333, + "name": "Nikon Coolpix P7000", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-08", + "sensorraw": 10.05, + "link": "/Cameras/Nikon/Coolpix-P7000", + "chapo": " Introduction The leader in this market segment is Canon, with its G series competing with Nikon Coolpix’s P series, and more recently with Samsung, a true newcomer. While Canon had good success with its G11, Nikon missed the target —the P6000 did not seduce, mostly because of its so-so image quality. For Samsung, things are easier: they have to make their first entry as perfect as possible to stand a chance in an “expert” and demanding segment. Thus, the Canon G12, the Nikon Coolpix P7000, and the Samsung EX1 were the most anticipated launches for this", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-samsung-ex1-canon-powershot-g12-nikon-coolpix-p7000/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7000/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3664 x 2742  \n ", + "Sensor photo detectors (Mpix) ": "10.05  ", + "Sensor size (mm)": "5.7 x 7.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": "4/3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical and charge-coupled electronic shutter ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "1.3  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Rechargeable Li-ion Battery EN-EL14 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": " ", + "View finder coverage": "80 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor), Multi-area, Center, Selective single-point, Tracking, Single, Continuous, Face Detection, Live View ", + "Number of autofocus points": "99 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": "Internal memory (approx. 79 MB), SD/SDHC/SDXC memory cards ", + "Image format": "JPEG, RAW (NRW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (WAV) ", + "External micro": "External microphone connector (Stereo mini-pin jack (3.5 mm diameter), input impedance 2kOm, sensitivity -42dB or less, plug-in power type) ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 / 30 fps ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "MPEG ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7100.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7100.txt new file mode 100644 index 0000000..8a6c993 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7100.txt @@ -0,0 +1,96 @@ +{ + "id": 733, + "price": 715, + "year": "2011", + "brand": "Nikon", + "rankDxo": 41, + "rankColor": 19.4, + "rankDyn": 10.7, + "rankLln": 165, + "rankDxo_ranking": 334, + "rankColor_ranking": 335, + "rankDyn_ranking": 312, + "rankLln_ranking": 326, + "name": "Nikon Coolpix P7100", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2011", + "launchDateGraph": "2011-08-24", + "sensorraw": 10.05, + "link": "/Cameras/Nikon/Coolpix-P7100", + "chapo": " At first look, the specifications are very similar: same 10 MPixels sensor and same lens. And very logically, apart from some design improvements, Nikon focused on the main weaknesses of the P7000. So, the main improvements are:a better responsiveness with a new processor, the Expeed C2.a better usability with a front command wheel and a flip screen (same 3" 0.9 MPixels display as the P7000)Let’s now see what level of image quality the P7100 can reach.P7100 vs its predecessor and its competitorFirst of all, it’s interesting to compare the P7100 with the P7000, its predecessor and the", + "linkReview": "https://www.dxomark.com/nikon-coolpix-p7100-a-new-high-end-compact-by-nikon/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7100/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2011  ", + "Indicative price (USD)": "\n 715  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3664 x 2744  \n ", + "Sensor photo detectors (Mpix) ": "10.05  ", + "Sensor size (mm)": "5.7 x 7.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": "4/3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "1.3  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "  ", + "Weight (gr)": "395", + "Battery type": "Rechargeable Li-ion Battery EN-EL14 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": " ", + "View finder coverage": "80 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor), Multi-area, Center, Selective single-point, Tracking, Single, Continuous, Face Detection, Live View ", + "Number of autofocus points": "99 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": "Internal memory (approx. 79 MB), SD/SDHC/SDXC memory cards ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (WAV) ", + "External micro": "External microphone connector (Stereo mini-pin jack (3.5 mm diameter), input impedance 2kOm, sensitivity -42dB or less, plug-in power type) ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 (30 fps), 640 x 480 (30 fps), 320 x 240 (30 fps) ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "MPEG ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7700.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7700.txt new file mode 100644 index 0000000..cd5922a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7700.txt @@ -0,0 +1,96 @@ +{ + "id": 825, + "price": 499, + "year": "2012", + "brand": "Nikon", + "rankDxo": 53, + "rankColor": 21.1, + "rankDyn": 11.7, + "rankLln": 191, + "rankDxo_ranking": 289, + "rankColor_ranking": 281, + "rankDyn_ranking": 195, + "rankLln_ranking": 315, + "name": "Nikon Coolpix P7700", + "pixelDepth": 12.2, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2012", + "launchDateGraph": "2012-08-22", + "sensorraw": 12.19, + "link": "/Cameras/Nikon/Coolpix-P7700", + "chapo": " Introduction The Nikon Coolpix P7700 was launched in August 2012, it is a well featured, high-end compact camera designed for the discerning amateur and for professionals looking for a camera to have with them all the time. The zoom lens has a range of 6mm through to 42.8mm (which is equivalent to 28mm-200mm in ‘full frame’ format), it has a bright maximum aperture of f/2 at the wide end and f/4 in telephoto. The screen is fully articulated, 7.5cm (3”) across and has 921k dots. In terms of performance the camera will capture stills at a", + "linkReview": "https://www.dxomark.com/nikon-coolpix-p7700-review-best-nikon-compact-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7700/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2012  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4032 x 3024  \n ", + "Sensor photo detectors (Mpix) ": "12.19  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.67 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Rechargeable Li-ion Battery EN-EL14, 7.4V, 1030mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": "NA ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Auto (9-area automatic selection), Center, Face priority, Subject tracking ", + "Number of autofocus points": "99 ", + "Exposure bracketing": "Yes (up to 5 shots) ", + "Exposure compensation": "-3.0 to +3.0 EV in steps of 1/3 EV ", + "Drive modes": "single, continuous: Best Shot Selector, Continuous H 8fps up to 6 frames, Continuous M 4fps up to 6 frames, Continuous S 1fps up to 30 frames, Continuous H 120, 120 fps up to 60 frames with resolution 1280 x 960, Continuous H 60, Interval Timer, Multi-sho ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC, internal memory approx. 86Mb ", + "Image format": "JPEG, RAW (NRW), MPO ", + "White balance bracketing": " ", + "Connectivity": "USB 2.0 (480 Mbit/sec)/AV-OUT, HDMI mini ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7800.txt b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7800.txt new file mode 100644 index 0000000..9f7f8f2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Coolpix P7800.txt @@ -0,0 +1,96 @@ +{ + "id": 908, + "price": 550, + "year": "2013", + "brand": "Nikon", + "rankDxo": 54, + "rankColor": 21.2, + "rankDyn": 11.7, + "rankLln": 200, + "rankDxo_ranking": 284, + "rankColor_ranking": 274, + "rankDyn_ranking": 189, + "rankLln_ranking": 312, + "name": "Nikon Coolpix P7800", + "pixelDepth": 12.2, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2013", + "launchDateGraph": "2013-09-05", + "sensorraw": 12.19, + "link": "/Cameras/Nikon/Coolpix-P7800", + "chapo": " Introduction The Coolpix 7800 is this years update the firm’s high-end compact stills camera featuring a relatively small 1/1.7-inch BSI-CMOS sensor and stabilized 28-200mm f/2.0-4.0 equivalent collapsible zoom. It replaces the flagship Coolpix 7700 and remains similar in specification bar for the inclusion of a 921K dot resolution electronic viewfinder. That model was the first to drop the cramped optical viewfinder of its forerunners, and include a fully articulated 3-inch rear LCD.The new model sees a return of the finder, albeit an electronic one with a 100-percent coverage but drops the rear control dial of the", + "linkReview": "https://www.dxomark.com/nikon-coolpix-p7800-review-competitive-price-competitive-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Coolpix_P7800/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2013  ", + "Indicative price (USD)": "\n 550  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4032 x 3024  \n ", + "Sensor photo detectors (Mpix) ": "12.19  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 6400 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "300", + "Battery type": "EN-EL14 Rechargeable Li-ion Battery, 7.4V, 1030mAh ", + "Battery weight (gr)": "99", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic, Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Auto (9-area automatic selection) \nFace priority \nManual with 99 focus areas \nSubject tracking \nTarget Finding AF \nCenter (wide, normal) ", + "Number of autofocus points": "99 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV in steps of 1/3 EV (Still pictures) ", + "Drive modes": "Single\nContinuous H, M, L\nBest Shot Selector\nMulti-shot 16\nInterval Timer\nSelf-timer 1, 2 or 10 seconds duration ", + "Buffer size": " ", + "Recording medium": "SD memory card\nSDHC memory card\nSDXC memory card ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "Audio/video (A/V) output, Digital I/O (USB) \nHDMI mini connector (Type C) (HDMI output) \nAccessory terminal ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D200.txt b/scr/模糊专家系统/scrape/scraped/Nikon D200.txt new file mode 100644 index 0000000..f5ad036 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D200.txt @@ -0,0 +1,96 @@ +{ + "id": 203, + "price": 1000, + "year": "2005", + "brand": "Nikon", + "rankDxo": 64, + "rankColor": 22.3, + "rankDyn": 11.5, + "rankLln": 583, + "rankDxo_ranking": 214, + "rankColor_ranking": 203, + "rankDyn_ranking": 224, + "rankLln_ranking": 214, + "name": "Nikon D200", + "pixelDepth": 10, + "sensor": "sensor_apsc", + "type": "semiprodslr ", + "status": "TESTED", + "launchDate": "Nov. 2005", + "launchDateGraph": "2005-11-01", + "sensorraw": 10.21, + "link": "/Cameras/Nikon/D200", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D200/vignette3.png", + "Type": " ", + "Announced": "Nov. 2005  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3904 x 2616  \n ", + "Sensor photo detectors (Mpix) ": "10.21  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D2H.txt b/scr/模糊专家系统/scrape/scraped/Nikon D2H.txt new file mode 100644 index 0000000..64a617a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D2H.txt @@ -0,0 +1,96 @@ +{ + "id": 206, + "price": 900, + "year": "2003", + "brand": "Nikon", + "rankDxo": 40, + "rankColor": 18.9, + "rankDyn": 10, + "rankLln": 352, + "rankDxo_ranking": 337, + "rankColor_ranking": 349, + "rankDyn_ranking": 355, + "rankLln_ranking": 298, + "name": "Nikon D2H", + "pixelDepth": 4, + "sensor": "sensor_apsc", + "type": "professional", + "status": "TESTED", + "launchDate": "Jul. 2003", + "launchDateGraph": "2003-07-22", + "sensorraw": 4.11, + "link": "/Cameras/Nikon/D2H", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D2H/vignette3.png", + "Type": "Professional ", + "Announced": "Jul. 2003  ", + "Indicative price (USD)": "\n 900  \n ", + "Sensor type ": "JFET  ", + "Resolution ": "\n 2496 x 1648  \n ", + "Sensor photo detectors (Mpix) ": "4.11  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "8  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D2X.txt b/scr/模糊专家系统/scrape/scraped/Nikon D2X.txt new file mode 100644 index 0000000..1b8c4f8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D2X.txt @@ -0,0 +1,96 @@ +{ + "id": 207, + "price": 2000, + "year": "2004", + "brand": "Nikon", + "rankDxo": 59, + "rankColor": 22.1, + "rankDyn": 10.9, + "rankLln": 476, + "rankDxo_ranking": 254, + "rankColor_ranking": 212, + "rankDyn_ranking": 284, + "rankLln_ranking": 276, + "name": "Nikon D2X", + "pixelDepth": 12.2, + "sensor": "sensor_apsc", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2004", + "launchDateGraph": "2004-09-16", + "sensorraw": 12.39, + "link": "/Cameras/Nikon/D2X", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D2X/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2004  ", + "Indicative price (USD)": "\n 2000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4320 x 2868  \n ", + "Sensor photo detectors (Mpix) ": "12.39  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D2Xs.txt b/scr/模糊专家系统/scrape/scraped/Nikon D2Xs.txt new file mode 100644 index 0000000..4e2cb41 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D2Xs.txt @@ -0,0 +1,96 @@ +{ + "id": 533, + "price": 4250, + "year": "2006", + "brand": "Nikon", + "rankDxo": 59, + "rankColor": 22.2, + "rankDyn": 10.9, + "rankLln": 489, + "rankDxo_ranking": 253, + "rankColor_ranking": 207, + "rankDyn_ranking": 283, + "rankLln_ranking": 272, + "name": "Nikon D2Xs", + "pixelDepth": 12.2, + "sensor": "sensor_apsc", + "type": "professional", + "status": "TESTED", + "launchDate": "Jun. 2006", + "launchDateGraph": "2006-06-01", + "sensorraw": 12.8, + "link": "/Cameras/Nikon/D2Xs", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D2Xs/vignette3.png", + "Type": "Professional ", + "Announced": "Jun. 2006  ", + "Indicative price (USD)": "\n 4250  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4288 x 2848  \n ", + "Sensor photo detectors (Mpix) ": "12.8  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3.txt new file mode 100644 index 0000000..6bef37a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3.txt @@ -0,0 +1,96 @@ +{ + "id": 438, + "price": 4300, + "year": "2007", + "brand": "Nikon", + "rankDxo": 81, + "rankColor": 23.5, + "rankDyn": 12.2, + "rankLln": 2290, + "rankDxo_ranking": 68, + "rankColor_ranking": 105, + "rankDyn_ranking": 160, + "rankLln_ranking": 36, + "name": "Nikon D3", + "pixelDepth": 12.1, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Aug. 2007", + "launchDateGraph": "2007-08-23", + "sensorraw": 12.2, + "link": "/Cameras/Nikon/D3", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3/vignette3.png", + "Type": "Professional ", + "Announced": "Aug. 2007  ", + "Indicative price (USD)": "\n 4300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4288 x 2844  \n ", + "Sensor photo detectors (Mpix) ": "12.2  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "9  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D300.txt b/scr/模糊专家系统/scrape/scraped/Nikon D300.txt new file mode 100644 index 0000000..a1e8f12 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D300.txt @@ -0,0 +1,96 @@ +{ + "id": 440, + "price": 1540, + "year": "2007", + "brand": "Nikon", + "rankDxo": 67, + "rankColor": 22.1, + "rankDyn": 12, + "rankLln": 679, + "rankDxo_ranking": 182, + "rankColor_ranking": 219, + "rankDyn_ranking": 169, + "rankLln_ranking": 189, + "name": "Nikon D300", + "pixelDepth": 12.3, + "sensor": "sensor_apsc", + "type": "semiprodslr ", + "status": "TESTED", + "launchDate": "Aug. 2007", + "launchDateGraph": "2007-08-23", + "sensorraw": 12.48, + "link": "/Cameras/Nikon/D300", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D300/vignette3.png", + "Type": " ", + "Announced": "Aug. 2007  ", + "Indicative price (USD)": "\n 1540  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4352 x 2868  \n ", + "Sensor photo detectors (Mpix) ": "12.48  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "6  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3000.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3000.txt new file mode 100644 index 0000000..f6daad9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3000.txt @@ -0,0 +1,96 @@ +{ + "id": 623, + "price": 730, + "year": "2009", + "brand": "Nikon", + "rankDxo": 62, + "rankColor": 22.3, + "rankDyn": 11.1, + "rankLln": 563, + "rankDxo_ranking": 232, + "rankColor_ranking": 202, + "rankDyn_ranking": 263, + "rankLln_ranking": 225, + "name": "Nikon D3000", + "pixelDepth": 12.3, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Apr. 2009", + "launchDateGraph": "2009-04-14", + "sensorraw": 12.36, + "link": "/Cameras/Nikon/D3000", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3000/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Apr. 2009  ", + "Indicative price (USD)": "\n 730  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4310 x 2868  \n ", + "Sensor photo detectors (Mpix) ": "12.36  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "No ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion EN-EL9a ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.78 ", + "View finder coverage": "95 ", + "Mirror lockup": " ", + "View finder diopter": "(- 1.7 to + 0.5 diopters) ", + "Monitor type": "LCD ", + "Monitor size": "2.7 ", + "Monitor pixel": "230000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, AF-A ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "-5 to +5 EV in 1/2 or 1/3 EV steps ", + "Drive modes": "Single, Continuous, Self timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC card ", + "Image format": "NEF (RAW), JPEG ", + "White balance bracketing": "Yes ", + "Connectivity": "USB, Video ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D300s.txt b/scr/模糊专家系统/scrape/scraped/Nikon D300s.txt new file mode 100644 index 0000000..74c702c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D300s.txt @@ -0,0 +1,96 @@ +{ + "id": 614, + "price": 1815, + "year": "2009", + "brand": "Nikon", + "rankDxo": 70, + "rankColor": 22.5, + "rankDyn": 12.2, + "rankLln": 787, + "rankDxo_ranking": 164, + "rankColor_ranking": 180, + "rankDyn_ranking": 166, + "rankLln_ranking": 159, + "name": "Nikon D300s", + "pixelDepth": 12.3, + "sensor": "sensor_apsc", + "type": "semiprodslr ", + "status": "TESTED", + "launchDate": "Jul. 2009", + "launchDateGraph": "2009-07-30", + "sensorraw": 12.48, + "link": "/Cameras/Nikon/D300s", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D300s/vignette3.png", + "Type": " ", + "Announced": "Jul. 2009  ", + "Indicative price (USD)": "\n 1815  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4352 x 2868  \n ", + "Sensor photo detectors (Mpix) ": "12.48  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "7  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3100.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3100.txt new file mode 100644 index 0000000..58d7628 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3100.txt @@ -0,0 +1,96 @@ +{ + "id": 664, + "price": 699, + "year": "2010", + "brand": "Nikon", + "rankDxo": 67, + "rankColor": 22.5, + "rankDyn": 11.3, + "rankLln": 919, + "rankDxo_ranking": 180, + "rankColor_ranking": 186, + "rankDyn_ranking": 245, + "rankLln_ranking": 120, + "name": "Nikon D3100", + "pixelDepth": 14.8, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Oct. 2010", + "launchDateGraph": "2010-10-01", + "sensorraw": 14.41, + "link": "/Cameras/Nikon/D3100", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3100/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Oct. 2010  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4672 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "14.41  ", + "Sensor size (mm)": "15.4 x 23.1 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "NO ", + "Firmware": "1 ", + "Dust cleaning": "Anti Dust/self cleaning ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3200.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3200.txt new file mode 100644 index 0000000..0735839 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3200.txt @@ -0,0 +1,96 @@ +{ + "id": 801, + "price": 699, + "year": "2012", + "brand": "Nikon", + "rankDxo": 81, + "rankColor": 24.1, + "rankDyn": 13.2, + "rankLln": 1131, + "rankDxo_ranking": 65, + "rankColor_ranking": 54, + "rankDyn_ranking": 61, + "rankLln_ranking": 86, + "name": "Nikon D3200", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Apr. 2012", + "launchDateGraph": "2012-04-19", + "sensorraw": 24.39, + "link": "/Cameras/Nikon/D3200", + "chapo": " Introduction The Nikon D3200 versus its competitorsThe Nikon D3200 vs the Sony NEX-7 and the Sony SLT Alpha 77Is the Nikon D3200’s sensor the same Sony APS-C Exmor HD Sony found in the NEX-7 and the SLT-A77 SLR? There is little doubt that this is the case, but let’s look at all the measurements to be sure.With its DxOmark Score of 81, the D3200 is on the exact same footing as the NEX-7, sharing the same 24.1-bit measurement for color depth as the Sony hybrid (with the SLT-A77 coming in", + "linkReview": "https://www.dxomark.com/nikon-d3200-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3200/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Apr. 2012  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4012  \n ", + "Sensor photo detectors (Mpix) ": "24.39  ", + "Sensor size (mm)": "15.4 x 23.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": "455", + "Battery type": "Li-Ion, EN-EL14, 7.4V, 1030mAh, 7.7Wh ", + "Battery weight (gr)": "50", + "Tropicalization": "No ", + "Camera material": "Mixed plastic/metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.78 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-1.7 to +0.7 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-servo AF (AF-S),\nFull-time-servo AF (AF-F),\nManual focus (MF). ", + "Number of autofocus points": "11 ", + "Exposure bracketing": " ", + "Exposure compensation": "-5 to +5 EV in increments of 1/3 EV ", + "Drive modes": "single frame,\ncontinuous (4fps),\nself-timer(2s, 5s, 20s),\ndelayed remote,\nquick-response remote,\nquiet shutter release ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB: \nHi-Speed USB.\n\nVideo output: \nNTSC,\nPAL.\n\nHDMI output:\nType C mini-pin HDMI connector. ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30p ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "Yes (for the lens with stabilizer) " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3300.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3300.txt new file mode 100644 index 0000000..1501bcb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3300.txt @@ -0,0 +1,96 @@ +{ + "id": 928, + "price": 650, + "year": "2014", + "brand": "Nikon", + "rankDxo": 82, + "rankColor": 24.3, + "rankDyn": 12.8, + "rankLln": 1385, + "rankDxo_ranking": 61, + "rankColor_ranking": 48, + "rankDyn_ranking": 88, + "rankLln_ranking": 54, + "name": "Nikon D3300", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2014", + "launchDateGraph": "2014-01-07", + "sensorraw": 24.16, + "link": "/Cameras/Nikon/D3300", + "chapo": " Introduction Nikon’s yearly incremental upgrading program has been very ambitious in the last few years. And nowhere is it more noticeable than in the firm’s entry-level D3000 series. Last year’s model, the D3200 showed several worthy improvements over the previous D3100 model, not the least being a 24-Mpix CMOS sensor, and the Expeed 3 processor allowing a maximum sensitivity as high as ISO 6,400 (expandable to 12,800). Faster continuous shooting up to 4 fps was also added.For this year Nikon has expanded the capability yet again, and perhaps enough now to tempt professional photographers looking for", + "linkReview": "https://www.dxomark.com/nikon-d3300-sensor-review-revised-entry-level-model/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3300/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2014  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "15.4 x 23.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL14a, 7.2V, 1230mAh, 8.9Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.85 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-1.7 to +0.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A); manual focus (MF) ", + "Number of autofocus points": "11 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/-5EV in increments of 1/3EV ", + "Drive modes": "Continuous\nDelayed remote\nQuick Response Remote Mode\nQuiet shutter-release\nSelf-timer Mode\nSingle-frame [S] mode ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC, UHS-I ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "AV (NTSC, PAL), hi-speed USB, HDMI (Type C mini-pin HDMI connector) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 60fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3400.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3400.txt new file mode 100644 index 0000000..be17fb7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3400.txt @@ -0,0 +1,96 @@ +{ + "id": 1105, + "price": 650, + "year": "2016", + "brand": "Nikon", + "rankDxo": 86, + "rankColor": 24.8, + "rankDyn": 13.9, + "rankLln": 1192, + "rankDxo_ranking": 40, + "rankColor_ranking": 28, + "rankDyn_ranking": 31, + "rankLln_ranking": 77, + "name": "Nikon D3400", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Aug. 2016", + "launchDateGraph": "2016-08-17", + "sensorraw": 24.16, + "link": "/Cameras/Nikon/D3400", + "chapo": " Specifications and features In most respects, the Nikon D3400 has the same features as its predecessor. Apart from some slight exterior styling changes, the new model has the same or a related 24-Mpix APS-C CMOS sensor without OLPF; however, its EXPEED 4 processor has a new top ISO value of 25600, up a stop from 12800. Adjustments to the processor have also resulted in extended battery life and improved recording of Full HD (1080/60p) videos; however, the frame rate options and 5fps continuous shooting for stills remain unchanged.It also uses the same Multi-CAM 1000 11-point AF system focus", + "linkReview": "https://www.dxomark.com/nikon-d3400-sensor-review-new-class-leader/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3400/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2016  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.54 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.1 ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, EN-EL14a, 7.2V, 1230mAh, 8.9Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic / Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.85 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-1.7 to +0.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF): Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A); predictive focus tracking activated automatically according to subject status.\nManual focus (MF): Electronic rangefinder can be used ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/-5 EV in increments of 1/3 EV in P, S, A, M, Scene, and Night Vision modes ", + "Drive modes": "Auto AF-S/AF-C selection (AF-A)\nContinuous-servo (AF-C)\nFace-Priority AF available in Live View only and D-Movie only\nFull-time Servo (AF-A) available in Live View only and D-Movie only\nManual (M) with electronic rangefinder\nNormal area available in Live  ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3X.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3X.txt new file mode 100644 index 0000000..46c9abb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3X.txt @@ -0,0 +1,96 @@ +{ + "id": 485, + "price": 9172, + "year": "2008", + "brand": "Nikon", + "rankDxo": 88, + "rankColor": 24.7, + "rankDyn": 13.7, + "rankLln": 1992, + "rankDxo_ranking": 29, + "rankColor_ranking": 31, + "rankDyn_ranking": 36, + "rankLln_ranking": 40, + "name": "Nikon D3X", + "pixelDepth": 24.5, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Dec. 2008", + "launchDateGraph": "2008-12-01", + "sensorraw": 24.59, + "link": "/Cameras/Nikon/D3X", + "chapo": " Key sensor characteristicsThe Nikon D3X features a very high resolution full-frame format CMOS sensor with 24.6Mpix. The D3X and the Sony A900 are the only two cameras at that level of resolution within the professional D-SLR category, but the D3X features a 14-bit Analog/Digital (A/D) converter which, as shown below, plays a significant role in boosting its capture performance when compared to the Sony A900 (with only a 12-bit A/D converter).The D3X’s lower ISO setting (down to ISO 78) compared to other Nikons certainly help as some dxomark metrics such as dynamic range are considered at lowest", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-nikon-d3x/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3X/vignette3.png", + "Type": "Professional ", + "Announced": "Dec. 2008  ", + "Indicative price (USD)": "\n 9172  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4044  \n ", + "Sensor photo detectors (Mpix) ": "24.59  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D3s.txt b/scr/模糊专家系统/scrape/scraped/Nikon D3s.txt new file mode 100644 index 0000000..ab91a80 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D3s.txt @@ -0,0 +1,96 @@ +{ + "id": 628, + "price": 5510, + "year": "2009", + "brand": "Nikon", + "rankDxo": 82, + "rankColor": 23.5, + "rankDyn": 12, + "rankLln": 3253, + "rankDxo_ranking": 56, + "rankColor_ranking": 99, + "rankDyn_ranking": 171, + "rankLln_ranking": 9, + "name": "Nikon D3s", + "pixelDepth": 12.1, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Oct. 2009", + "launchDateGraph": "2009-10-14", + "sensorraw": 12.2, + "link": "/Cameras/Nikon/D3s", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D3s/vignette3.png", + "Type": "Professional ", + "Announced": "Oct. 2009  ", + "Indicative price (USD)": "\n 5510  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4288 x 2844  \n ", + "Sensor photo detectors (Mpix) ": "12.2  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 102400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1.01 ", + "Dust cleaning": "yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": "1240", + "Battery type": "EN-EL4a Lithium-Ion ", + "Battery weight (gr)": "113.4", + "Tropicalization": " ", + "Camera material": "metal ", + "Mount material": "metal ", + "View finder type": "Optical  ", + "View finder magnification": "0.7 ", + "View finder coverage": "0 ", + "Mirror lockup": "yes ", + "View finder diopter": "Pentaprism, 100% coverage, -3 to +1 diopters ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Single,Continuous, Automatic (AF-S/AF-C), Focus Tracking automatically activated, Manual ", + "Autofocus modes": "Multi-CAM 3500FX ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "51 focus points ", + "Exposure compensation": "-5 to +5 EV in 1/3 EV, in 1/2 EV or 1 EV ", + "Drive modes": "single, continuous (high or law speed), self timer (20, 10, 5 or 2 s), live view, MUP ", + "Buffer size": "48 (RAW) or 130 (large JPEGs) ", + "Recording medium": "CF (I - II) and Microdrive cards ", + "Image format": "RAW, JPEG, TIFF ", + "White balance bracketing": "2 to 9 frames ", + "Connectivity": "USB, video, HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": " ", + "Maximum format image video": "1280 x 720 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVI ", + "Video codec": " MotionJPEG  ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D4.txt b/scr/模糊专家系统/scrape/scraped/Nikon D4.txt new file mode 100644 index 0000000..70a77c0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D4.txt @@ -0,0 +1,96 @@ +{ + "id": 767, + "price": 5999, + "year": "2012", + "brand": "Nikon", + "rankDxo": 89, + "rankColor": 24.7, + "rankDyn": 13.1, + "rankLln": 2965, + "rankDxo_ranking": 24, + "rankColor_ranking": 32, + "rankDyn_ranking": 69, + "rankLln_ranking": 17, + "name": "Nikon D4", + "pixelDepth": 16.2, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Jan. 2012", + "launchDateGraph": "2012-01-06", + "sensorraw": 16.43, + "link": "/Cameras/Nikon/D4", + "chapo": " Introduction This new model features impressive specs: a new 16-Mpix FX sensor with sensitivity up to 200,000 ISO, uncompressed Full HD video recording with autofocus, 11 fps burst mode, improved 51-point autofocus module, face detection, wireless control...Nikon D4 PreviewNikon D4 Hands-on ReviewNikon D4 versus CompetitionNikon D4 Sensor PerformanceNikon D4 Lens Recommendations &nbsp;Let's have a closer look at these promising specs.There has been a lot of excitement about the upcoming new Nikon models in the past several days, particularly with respect to a hypothetical successor to the aging", + "linkReview": "https://www.dxomark.com/nikon-d4-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D4/vignette3.png", + "Type": "Professional ", + "Announced": "Jan. 2012  ", + "Indicative price (USD)": "\n 5999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4992 x 3292  \n ", + "Sensor photo detectors (Mpix) ": "16.43  ", + "Sensor size (mm)": "23.9 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 204800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F  ", + "Weight (gr)": "1340", + "Battery type": "Lithium-Ion EN-EL18 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "Optical (pentaprism) ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 diopters ", + "Monitor type": "Wide Viewing Angle TFT-LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF):\nSingle-servo autofocus (AF-S);\ncontinuous-servo autofocus (AF-C);\npredictive focus tracking automatically activated according to subject status.\n\nManual focus (M):\nElectronic rangefinder can be used ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "2 to 9 frames in steps of 1/3, 1/2, 2/3 or 1 EV ", + "Exposure compensation": " +/-5 EV in increments of 1/3, 1/2 or 1 EV ", + "Drive modes": "S (single frame),\nCL (continuous low speed) (1-10fps),\nCH (continuous high speed) (1-10fps, 11 with AE/AF locked on first frame),\nQ (quiet shutter-release),\n(self-timer),\nMUP (mirror up) ", + "Buffer size": " ", + "Recording medium": "CompactFlash (CF) (Type I, compliant with UDMA)\nXQD Type Memory ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "2 to 9 exposures in increments of 1, 2 or 3 EV\n  ", + "Connectivity": "USB/HDMI/Stereo mini-pin jack/RJ-45 connector ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Built-in microphone, monaural\nExternal stereo microphone (optional) ", + "External micro": "External stereo microphone (optional) ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "HD 1920x1080 / 30 fps ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": "mov ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D40.txt b/scr/模糊专家系统/scrape/scraped/Nikon D40.txt new file mode 100644 index 0000000..8510585 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D40.txt @@ -0,0 +1,96 @@ +{ + "id": 229, + "price": 400, + "year": "2006", + "brand": "Nikon", + "rankDxo": 56, + "rankColor": 21, + "rankDyn": 11, + "rankLln": 561, + "rankDxo_ranking": 263, + "rankColor_ranking": 290, + "rankDyn_ranking": 277, + "rankLln_ranking": 228, + "name": "Nikon D40", + "pixelDepth": 6, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Nov. 2006", + "launchDateGraph": "2006-11-16", + "sensorraw": 6.12, + "link": "/Cameras/Nikon/D40", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D40/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Nov. 2006  ", + "Indicative price (USD)": "\n 400  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3040 x 2014  \n ", + "Sensor photo detectors (Mpix) ": "6.12  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D40X.txt b/scr/模糊专家系统/scrape/scraped/Nikon D40X.txt new file mode 100644 index 0000000..6dd8cbe --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D40X.txt @@ -0,0 +1,96 @@ +{ + "id": 514, + "price": 998, + "year": "2007", + "brand": "Nikon", + "rankDxo": 63, + "rankColor": 22.4, + "rankDyn": 11.4, + "rankLln": 516, + "rankDxo_ranking": 220, + "rankColor_ranking": 194, + "rankDyn_ranking": 231, + "rankLln_ranking": 260, + "name": "Nikon D40X", + "pixelDepth": 10, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Mar. 2007", + "launchDateGraph": "2007-03-06", + "sensorraw": 10.21, + "link": "/Cameras/Nikon/D40X", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D40X/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2007  ", + "Indicative price (USD)": "\n 998  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3904 x 2616  \n ", + "Sensor photo detectors (Mpix) ": "10.21  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D4s.txt b/scr/模糊专家系统/scrape/scraped/Nikon D4s.txt new file mode 100644 index 0000000..f5a20ab --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D4s.txt @@ -0,0 +1,96 @@ +{ + "id": 945, + "price": 6500, + "year": "2014", + "brand": "Nikon", + "rankDxo": 89, + "rankColor": 24.4, + "rankDyn": 13.3, + "rankLln": 3074, + "rankDxo_ranking": 26, + "rankColor_ranking": 41, + "rankDyn_ranking": 55, + "rankLln_ranking": 12, + "name": "Nikon D4s", + "pixelDepth": 16.2, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Feb. 2014", + "launchDateGraph": "2014-02-25", + "sensorraw": 16.23, + "link": "/Cameras/Nikon/D4s", + "chapo": " Introduction Nikon’s refresh of its top-flight professional camera follows a predictable cycle, and two years on from the announcement of the D4, the revamped model is now finally with us in the form of the Nikon D4s. Like earlier refreshes, externally the new model looks much the same as its predecessor but although there have been some slight modifications to the rear of the camera most of the changes take place inside the alloy shell.Although the sensor is the same 16.2-Mpix type CMOS device as the D4s perhaps the most significant change is the upgrading of", + "linkReview": "https://www.dxomark.com/nikon-d4s-sensor-review-master-of-darkness/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D4s/vignette3.png", + "Type": "Professional ", + "Announced": "Feb. 2014  ", + "Indicative price (USD)": "\n 6500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4936 x 3288  \n ", + "Sensor photo detectors (Mpix) ": "16.23  ", + "Sensor size (mm)": "23.9 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 409600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL 18a, 10.8V, 2500mAh, 27Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF): Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A); predictive focus tracking activated automatically according to subject status\nManual focus (MF): Electronic rangefinder can be used ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "2 to 9 frames in steps of 1/3, 1/2, 2/3 or 1 EV  ", + "Exposure compensation": "5 EV in increments of 1/3, 1/2 or 1 EV ", + "Drive modes": "Continuous low-speed [CL] mode; 1-10 fps\nContinuous high-speed [CH] mode; 10 fps\nMirror-up [Mup] mode\nQuiet Shutter Release\nSelf-timer Mode\nSingle-frame [S] mode ", + "Buffer size": " ", + "Recording medium": "CF (Type I, compliant with UDMA), XQD Type Memory ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "2 to 9 exposures in increments of 1, 2 or 3 EV ", + "Connectivity": "HDMI output (Type C mini-pin HDMI connector), Hi-speed USB, NTSC, Ethernet: 1000 Base-T (Gigabit) Wired LAN ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D5.txt b/scr/模糊专家系统/scrape/scraped/Nikon D5.txt new file mode 100644 index 0000000..0b19477 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D5.txt @@ -0,0 +1,96 @@ +{ + "id": 1062, + "price": 6500, + "year": "2016", + "brand": "Nikon", + "rankDxo": 88, + "rankColor": 25.1, + "rankDyn": 12.3, + "rankLln": 2434, + "rankDxo_ranking": 31, + "rankColor_ranking": 19, + "rankDyn_ranking": 155, + "rankLln_ranking": 29, + "name": "Nikon D5", + "pixelDepth": 20.8, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Jan. 2016", + "launchDateGraph": "2016-01-06", + "sensorraw": 20.82, + "link": "/Cameras/Nikon/D5", + "chapo": " Specifications and featuresTargeting sports and wildlife photographers, the Nikon D5 has a new 20.8-Mpix full-frame CMOS sensor with ISOs from 100 to 102,400 natively and extensible up to 3,280,000. According to Nikon, the higher ISOs benefit from the use of a filter array with improved light transmission. The D5 also boasts continuous shooting at up to 12 fps, with a 200-shot buffer in 14-bit RAW (+JPEG Fine — D5a / XQD model only) with continuous AF and AE, and up to 14 fps without continuous AF and AE. The new camera also boasts an all-new 153-point AF", + "linkReview": "https://www.dxomark.com/nikon-d5-sensor-review-a-worthy-successor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D5/vignette3.png", + "Type": "Professional ", + "Announced": "Jan. 2016  ", + "Indicative price (USD)": "\n 6500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5584 x 3728  \n ", + "Sensor photo detectors (Mpix) ": "20.82  ", + "Sensor size (mm)": "23.9 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 3280000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "14.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": "1225", + "Battery type": "Li-Ion, EN-EL18a, 10.8V, 2500mAh, 27Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.72 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "2359000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF): Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A); predictive focus tracking activated automatically according to subject status.\nManual focus (MF): Electronic rangefinder can be used. ", + "Number of autofocus points": "153 ", + "Exposure bracketing": "2 to 9 frames in steps of 1/3, 1/2, 2/3 or 1 EV ", + "Exposure compensation": "+/-5 EV in increments of 1/3, 1/2 or 1 EV ", + "Drive modes": "Continuous low-speed [CL] mode, Continuous high-speed [CH] mode, Mirror-up [Mup] mode, Quiet Shutter Release, Self-timer Mode, Single-frame [S] mode ", + "Buffer size": " ", + "Recording medium": "CF (Type I, compliant with UDMA), XQD Type Memory ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "2 to 9 exposures in increments of 1, 2 or 3 EV ", + "Connectivity": "USB (USB 3.0 Micro-B connector) / Ethernet (1000 Base-T (Gigabit) Wired LAN) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "3840x2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D50.txt b/scr/模糊专家系统/scrape/scraped/Nikon D50.txt new file mode 100644 index 0000000..8cd60f7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D50.txt @@ -0,0 +1,96 @@ +{ + "id": 195, + "price": 1000, + "year": "2005", + "brand": "Nikon", + "rankDxo": 55, + "rankColor": 20.9, + "rankDyn": 10.8, + "rankLln": 560, + "rankDxo_ranking": 274, + "rankColor_ranking": 294, + "rankDyn_ranking": 292, + "rankLln_ranking": 230, + "name": "Nikon D50", + "pixelDepth": 6, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Apr. 2005", + "launchDateGraph": "2005-04-20", + "sensorraw": 6.12, + "link": "/Cameras/Nikon/D50", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D50/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Apr. 2005  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3040 x 2014  \n ", + "Sensor photo detectors (Mpix) ": "6.12  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D500.txt b/scr/模糊专家系统/scrape/scraped/Nikon D500.txt new file mode 100644 index 0000000..e0749b8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D500.txt @@ -0,0 +1,96 @@ +{ + "id": 1061, + "price": 2000, + "year": "2016", + "brand": "Nikon", + "rankDxo": 84, + "rankColor": 24.1, + "rankDyn": 14, + "rankLln": 1324, + "rankDxo_ranking": 49, + "rankColor_ranking": 56, + "rankDyn_ranking": 22, + "rankLln_ranking": 62, + "name": "Nikon D500", + "pixelDepth": 20.9, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Jan. 2016", + "launchDateGraph": "2016-01-06", + "sensorraw": 20.87, + "link": "/Cameras/Nikon/D500", + "chapo": " Specifications and features With much of the attention on developing full-frame models, Nikon has been slow to address the need for a small APS-C crop camera for semi-professional use. However, some eight years after it introduced the 12-Mpix D300s, Nikon has finally unveiled its successor, the D500. Like its predecessor, it adopts a durable metal casing; however, the D500 is the first APS-C crop camera from Nikon to break away from convention by not including a built-in flash (typically found over the pentaprism).The new camera also eschews the expected 24-Mpix sensor found in all of the latest Nikon", + "linkReview": "https://www.dxomark.com/nikon-d500-sensor-review-performance-redefined/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D500/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Jan. 2016  ", + "Indicative price (USD)": "\n 2000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5599 x 3728  \n ", + "Sensor photo detectors (Mpix) ": "20.87  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 1640000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": "670", + "Battery type": "Li-Ion, EN-EL15, 7V, 1900mAh, 14Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "1 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "2359000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF): Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A); predictive focus tracking activated automatically according to subject status.\nManual focus (MF): Electronic rangefinder can be used. ", + "Number of autofocus points": "153 ", + "Exposure bracketing": "2 to 9 frames in steps of 1/3, 1/2, 2/3 or 1 EV ", + "Exposure compensation": "+/-5 EV in increments of 1/3, 1/2 or 1 EV ", + "Drive modes": " Continuous low-speed [CL] mode, Continuous high-speed [CH] mode, Mirror-up [Mup] mode, Quiet Shutter Release, Quiet Continuous Release, Self-timer Mode, Single-frame [S] mode ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC, XQD ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "2 to 9 exposures in increments of 1, 2 or 3 EV ", + "Connectivity": "USB (USB 3.0 Micro-B connector) / Wi-Fi ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "3840x2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D5000.txt b/scr/模糊专家系统/scrape/scraped/Nikon D5000.txt new file mode 100644 index 0000000..e500448 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D5000.txt @@ -0,0 +1,96 @@ +{ + "id": 587, + "price": 730, + "year": "2009", + "brand": "Nikon", + "rankDxo": 72, + "rankColor": 22.7, + "rankDyn": 12.5, + "rankLln": 868, + "rankDxo_ranking": 139, + "rankColor_ranking": 161, + "rankDyn_ranking": 120, + "rankLln_ranking": 133, + "name": "Nikon D5000", + "pixelDepth": 12.3, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr ", + "status": "TESTED", + "launchDate": "Apr. 2009", + "launchDateGraph": "2009-04-14", + "sensorraw": 12.36, + "link": "/Cameras/Nikon/D5000", + "chapo": " MetricNikon D90Nikon D5000Overall score72.672Color Depth22.722.7Dynamic Range12.512.5Low-Light ISO977868As with the Nikon D90 (currently number one on the the dxomark scale for APS-C cameras), the D5000 has very good results for low ISO settings (see dxomark results for Dynamic Range, SNR 18%, and Color Sensitivity at ISO 100 and 200). High ISO is also good (second place in Low-Light ISO APS-C ranking), but other manufacturers provide similar results.Key sensor characteristics:The Nikon D5000 features a 12.9 megapixel DX-format CMOS sensor with a 12-bit A/D converter. The same type of sensor is mounted on the Nikon D90.Key performance factorsAs shown in", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-nikon-d5000/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D5000/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Apr. 2009  ", + "Indicative price (USD)": "\n 730  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4310 x 2868  \n ", + "Sensor photo detectors (Mpix) ": "12.36  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "4  ", + "Live view ": "yes ", + "Stabilization ": "NO ", + "Firmware": " ", + "Dust cleaning": "Anti Dust/self cleaning ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D5100.txt b/scr/模糊专家系统/scrape/scraped/Nikon D5100.txt new file mode 100644 index 0000000..c2bc1c2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D5100.txt @@ -0,0 +1,96 @@ +{ + "id": 698, + "price": 799, + "year": "2011", + "brand": "Nikon", + "rankDxo": 80, + "rankColor": 23.5, + "rankDyn": 13.6, + "rankLln": 1183, + "rankDxo_ranking": 79, + "rankColor_ranking": 100, + "rankDyn_ranking": 42, + "rankLln_ranking": 78, + "name": "Nikon D5100", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr ", + "status": "TESTED", + "launchDate": "Apr. 2011", + "launchDateGraph": "2011-04-05", + "sensorraw": 16.37, + "link": "/Cameras/Nikon/D5100", + "chapo": " Introduction As we expected, in all measures the D5100 is better than the D5000. The Overall score jumps from 72 to 80. Portrait, Landscape and Sports scores are all increased. The dynamic range is improved by more than one stop, and the Sports score is improved by 1/3 stop, jumping from 868 ISO for the D5000 to 1183 for the D5100.Nikon D5000 vs Nikon D5100\n\nThe SNR measured for the D5100 sensor is better than that of the D5000, and the difference increases with the ISO sensitivity. \n\n\n\n\n\nAs expected the Dynamic", + "linkReview": "https://www.dxomark.com/nikon-d5100-dxomark-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D5100/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Apr. 2011  ", + "Indicative price (USD)": "\n 799  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4992 x 3280  \n ", + "Sensor photo detectors (Mpix) ": "16.37  ", + "Sensor size (mm)": "15.6 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D5200.txt b/scr/模糊专家系统/scrape/scraped/Nikon D5200.txt new file mode 100644 index 0000000..40fe0e3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D5200.txt @@ -0,0 +1,96 @@ +{ + "id": 850, + "price": 897, + "year": "2012", + "brand": "Nikon", + "rankDxo": 84, + "rankColor": 24.2, + "rankDyn": 13.9, + "rankLln": 1284, + "rankDxo_ranking": 50, + "rankColor_ranking": 53, + "rankDyn_ranking": 29, + "rankLln_ranking": 69, + "name": "Nikon D5200", + "pixelDepth": 24.1, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Nov. 2012", + "launchDateGraph": "2012-11-06", + "sensorraw": 24.26, + "link": "/Cameras/Nikon/D5200", + "chapo": " 24-megapixel APS-C sensorThe D5200 most certainly uses the same 24Mpix APS-C CMOS sensor as the D3200 (thus a change from the D5100 which it replaces), placing it right in the middle of entry-level and advanced DSLRs.This new DSLR can shoot in Full HD up to 50i/60i (no progressive scan at 50p) and retains the ergonomic appeal of its predecessor – a 3-inch, 921,000-point articulated screen – and offers some new artistic filters.The Nikon D5200, heir of the D5100, moves into high gear by incorporating the autofocus and exposure measurement of the D7000. A new camera of reference.Enhanced", + "linkReview": "https://www.dxomark.com/nikon-d5200-review-a-move-up/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D5200/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Nov. 2012  ", + "Indicative price (USD)": "\n 897  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6036 x 4020  \n ", + "Sensor photo detectors (Mpix) ": "24.26  ", + "Sensor size (mm)": "15.7 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Lithium-Ion EN-EL14 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": " ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.78 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-1.7 to +0.7 m-1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor), Phase Detect, Multi-area, Selective single-point, Tracking, Single, Continuous, Face Detection, Live View ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": " ", + "Drive modes": "Single frame, Continuous, Self-timer, 2s Delayed remote, Quick-response remote, Quiet shutter release ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(NEF) ", + "White balance bracketing": "Yes (3 frames in either blue/amber or magenta/green axis) ", + "Connectivity": "USB/HDMI/Eye-Fi Connected ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Optional ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D5300.txt b/scr/模糊专家系统/scrape/scraped/Nikon D5300.txt new file mode 100644 index 0000000..48618cc --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D5300.txt @@ -0,0 +1,96 @@ +{ + "id": 919, + "price": 800, + "year": "2013", + "brand": "Nikon", + "rankDxo": 83, + "rankColor": 24, + "rankDyn": 13.9, + "rankLln": 1338, + "rankDxo_ranking": 53, + "rankColor_ranking": 63, + "rankDyn_ranking": 29, + "rankLln_ranking": 60, + "name": "Nikon D5300", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-17", + "sensorraw": 24.16, + "link": "/Cameras/Nikon/D5300", + "chapo": " Introduction At $799 body only or $1,399 complete with the AF-S Nikkor 18-140mm f3.5-5.6G ED VR, the mid-to-high-end DX format Nikon D5300 is an upgrade of last year’s D5200.The new model features the same 24-Mpix CMOS sensor minus the optical low pass filter (OLPF) for improved fine-detail rendering and image sharpness. It also has sensitivity settings running from 100 to 12,800 ISO plus expansion to 25600, and a slightly larger 3.2-inch articulated rear TFT display.This new model also has the 39-point AF module and metering system from D7000 and is the first DSLR from the firm", + "linkReview": "https://www.dxomark.com/nikon-d5300-review-filter-less-dslr-with-promise/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D5300/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL14a or EN-EL14, 7.4V, 1030mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.82 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-1.7 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A) ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "3 frames in steps of 1/3 or 1/2 EV ", + "Exposure compensation": "+/-5 EV in increments of 1/3 or 1/2 EV ", + "Drive modes": "Single-frame [S] mode; Continuous low-speed [CL] mode (1-3 frames per second); Continuous high-speed [CH] mode (1-5 frames per second); Delayed remote (ML-L3); Interval timer photography supported; Quick-response remote (ML-L3); Quiet shutter-release; Sel ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "3 shots in steps of 1 ", + "Connectivity": "USB 2.0, HDMI (Type C mini-pin HDMI connector) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D5500.txt b/scr/模糊专家系统/scrape/scraped/Nikon D5500.txt new file mode 100644 index 0000000..cfe406e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D5500.txt @@ -0,0 +1,96 @@ +{ + "id": 998, + "price": 900, + "year": "2015", + "brand": "Nikon", + "rankDxo": 84, + "rankColor": 24.1, + "rankDyn": 14, + "rankLln": 1438, + "rankDxo_ranking": 47, + "rankColor_ranking": 57, + "rankDyn_ranking": 21, + "rankLln_ranking": 49, + "name": "Nikon D5500", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2015", + "launchDateGraph": "2015-01-06", + "sensorraw": 24.16, + "link": "/Cameras/Nikon/D5500", + "chapo": " The new Nikon D5500 features the same 24.2Mp DX format sensor as its predecessor with the Optical Low Pass Filter removed for sharper and crisper images.Nikon D5500 Specification: New Touch-Fn button with finger swipe controlThe new Nikon D5500 is the latest model in Nikon's range of DX format DSLRs and sits in between their entry-level D3300 model and flagship DX offering, the D7100. The big news on the D5500 is the inclusion of a touch screen LCD, which is a first on a Nikon DX format camera and brings Nikon up to speed with the Canon who", + "linkReview": "https://www.dxomark.com/nikon-d5500-preview-first-nikon-dx-format-dslr-with-a-touch-screen-lcd/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D5500/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2015  ", + "Indicative price (USD)": "\n 900  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, EN-EL14a, 7.2V, 1230mAh, 8.9Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic / Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.82 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-1.7 to +0.5 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF): Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A); predictive focus tracking activated automatically according to subject status\nManual focus (MF): Electronic rangefinder can be used ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "3 frames in steps of 1/3 or 1/2 EV ", + "Exposure compensation": "+/-5 EV in increments of 1/3 or 1/2 EV ", + "Drive modes": "Auto AF-S/AF-C selection (AF-A)\nContinuous-servo (AF-C)\nFace-Priority AF available in Live View only\nFull-time Servo (AF-A) available in Live View only\nManual (M) with electronic rangefinder\nNormal area\nSingle-servo AF (AF-S)\nWide area ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "3 shots in steps of 1 ", + "Connectivity": "AV / USB / Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D5600.txt b/scr/模糊专家系统/scrape/scraped/Nikon D5600.txt new file mode 100644 index 0000000..e4c576d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D5600.txt @@ -0,0 +1,96 @@ +{ + "id": 1139, + "price": 700, + "year": "2016", + "brand": "Nikon", + "rankDxo": 84, + "rankColor": 24.1, + "rankDyn": 14, + "rankLln": 1306, + "rankDxo_ranking": 51, + "rankColor_ranking": 61, + "rankDyn_ranking": 20, + "rankLln_ranking": 68, + "name": "Nikon D5600", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Nov. 2016", + "launchDateGraph": "2016-11-10", + "sensorraw": 24.16, + "link": "/Cameras/Nikon/D5600", + "chapo": " Specifications and featuresAs the sixth-generation model in the series, the D5600 shares a lot in common with its predecessor, the D5500. It features the same or similar DX-format 24-MP (APS-C) CMOS sensor without AA filter and Expeed 4 processor that delivers 14-bit compressed NEFs at up to 4fps (5fps at 12-bit), as well as Full HD video up to 60 fps at up to 29 min 59 seconds.It also features the same mature and reliable multi-cam 4800DX 39-point phase-detection AF system (with 9 cross-type focus points), but the D5600 has no internal AF motor (like other recent models in", + "linkReview": "https://www.dxomark.com/nikon-d5600-sensor-review-solid-performer/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D5600/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Nov. 2016  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL14a, 7.2V, 1230mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Composite ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.82 ", + "View finder coverage": "95 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-1.7 to +0.5 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, AF-P, MF ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5EV, in steps of 1/3 or 1/2 EV ", + "Drive modes": "S (single frame), CL (continuous low speed), CH (continuous high speed), Q (quiet shutter-release), Self-timer; interval timer photography supported ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D60.txt b/scr/模糊专家系统/scrape/scraped/Nikon D60.txt new file mode 100644 index 0000000..889df87 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D60.txt @@ -0,0 +1,96 @@ +{ + "id": 196, + "price": 470, + "year": "2008", + "brand": "Nikon", + "rankDxo": 65, + "rankColor": 22.5, + "rankDyn": 11.4, + "rankLln": 562, + "rankDxo_ranking": 209, + "rankColor_ranking": 183, + "rankDyn_ranking": 228, + "rankLln_ranking": 227, + "name": "Nikon D60", + "pixelDepth": 10.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-29", + "sensorraw": 10.21, + "link": "/Cameras/Nikon/D60", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D60/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 470  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3904 x 2616  \n ", + "Sensor photo detectors (Mpix) ": "10.21  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D600.txt b/scr/模糊专家系统/scrape/scraped/Nikon D600.txt new file mode 100644 index 0000000..319d42b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D600.txt @@ -0,0 +1,96 @@ +{ + "id": 834, + "price": 2100, + "year": "2012", + "brand": "Nikon", + "rankDxo": 94, + "rankColor": 25.1, + "rankDyn": 14.2, + "rankLln": 2980, + "rankDxo_ranking": 12, + "rankColor_ranking": 16, + "rankDyn_ranking": 13, + "rankLln_ranking": 15, + "name": "Nikon D600", + "pixelDepth": 24.3, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-13", + "sensorraw": 24.49, + "link": "/Cameras/Nikon/D600", + "chapo": " Introduction Nikon D600: Full-frame sensor for the budget mindedA growing chorus of amateur and enthusiast photographers have been wondering aloud if a full-frame sensor would ever find its way into a more compact, intuitive, and consumer-oriented camera body – and equally important, a price range that won’t induce heartburn.Nikon and Canon both seem to have their fingers on the pulse of consumer preferences. On Sept. 13, Nikon announced the arrival of the D600, a consumer-targeted DSLR that includes a 24.3-megapixel full-frame CMOS sensor. And on Sept. 17, Canon rebuffed Nikon’s", + "linkReview": "https://www.dxomark.com/nikon-d600-sets-high-bar-for-sensor-image-quality/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D600/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 2100  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4028  \n ", + "Sensor photo detectors (Mpix) ": "24.49  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.5  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL15, 7.0V, 1900mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Magnesium alloy top and rear, polycarbonate front-plate ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Auto AF-S/AF-C selection (AF-A); Continuous-servo (AF-C); Face-Priority AF available in Live View only and D-Movie only; Normal area; Single-servo AF (AF-S); Wide area ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "2 or 3 frames in steps of 1/3, 1/2, 2/3, 1 or 2 EV ", + "Exposure compensation": " ", + "Drive modes": "Continuous low-speed [CL] mode; 1-5 frames per second; Continuous high-speed [CH] mode; 5.5 frames per second; Mirror-up [Mup] mode; Quiet Shutter Release; Self-timer mode (2, 5, 10, 20 sec; timer duration electronically controlled); Single-frame [S] mode ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "2 or 3 exposures ", + "Connectivity": "Accessory Terminal: Remote Cord: MC-DC2 (available separately); GPS unit: GP-1 (available separately); HDMI output: Type C mini-pin HDMI connector; Headphone Connector; Hi-speed USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D610.txt b/scr/模糊专家系统/scrape/scraped/Nikon D610.txt new file mode 100644 index 0000000..3983440 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D610.txt @@ -0,0 +1,96 @@ +{ + "id": 915, + "price": 1999, + "year": "2013", + "brand": "Nikon", + "rankDxo": 94, + "rankColor": 25.1, + "rankDyn": 14.4, + "rankLln": 2925, + "rankDxo_ranking": 13, + "rankColor_ranking": 17, + "rankDyn_ranking": 10, + "rankLln_ranking": 19, + "name": "Nikon D610", + "pixelDepth": 24, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-08", + "sensorraw": 24.49, + "link": "/Cameras/Nikon/D610", + "chapo": " Introduction When Nikon announced the D600 in the days leading up to Photokina 2012, the $2,000 full frame 24-mix camera looked destined to become one the most popular models in the firm's line up. Twelve months later, the camera has been replaced by the D610, a slightly revamped model that bears all of the original's specification plus a few new minor features, including a faster continuous framing rate along with a ‘quiet’ burst shooting option.Naturally, the new model retains the full-frame 24-Mpix CMOS sensor of the original with ISO 100-6400 (expandable to ISO 50-25,600 equivalent) sensitivity", + "linkReview": "https://www.dxomark.com/nikon-d610-review-what-s-new/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D610/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 1999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4028  \n ", + "Sensor photo detectors (Mpix) ": "24.49  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": " ", + "Battery type": "Lithium-Ion EN-EL15 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF, AF-S, AF-F, MF ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "S (single frame), CL (continuous low speed), CH (continuous high speed), Q (quiet shutter-release), QC (quiet continuous shutter-release), (self-timer), (remote control), MUP (mirror up) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC x 2 slots ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D70.txt b/scr/模糊专家系统/scrape/scraped/Nikon D70.txt new file mode 100644 index 0000000..aba1479 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D70.txt @@ -0,0 +1,96 @@ +{ + "id": 197, + "price": 400, + "year": "2004", + "brand": "Nikon", + "rankDxo": 50, + "rankColor": 20.4, + "rankDyn": 10.3, + "rankLln": 529, + "rankDxo_ranking": 307, + "rankColor_ranking": 318, + "rankDyn_ranking": 337, + "rankLln_ranking": 250, + "name": "Nikon D70", + "pixelDepth": 6, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2004", + "launchDateGraph": "2004-01-28", + "sensorraw": 6.12, + "link": "/Cameras/Nikon/D70", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D70/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2004  ", + "Indicative price (USD)": "\n 400  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3040 x 2014  \n ", + "Sensor photo detectors (Mpix) ": "6.12  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D700.txt b/scr/模糊专家系统/scrape/scraped/Nikon D700.txt new file mode 100644 index 0000000..c2a7fd9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D700.txt @@ -0,0 +1,96 @@ +{ + "id": 441, + "price": 2699, + "year": "2008", + "brand": "Nikon", + "rankDxo": 80, + "rankColor": 23.5, + "rankDyn": 12.2, + "rankLln": 2303, + "rankDxo_ranking": 69, + "rankColor_ranking": 103, + "rankDyn_ranking": 167, + "rankLln_ranking": 34, + "name": "Nikon D700", + "pixelDepth": 12.1, + "sensor": "sensor_fullframe", + "type": "semiprodslr ", + "status": "TESTED", + "launchDate": "Jul. 2008", + "launchDateGraph": "2008-07-01", + "sensorraw": 12.2, + "link": "/Cameras/Nikon/D700", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D700/vignette3.png", + "Type": " ", + "Announced": "Jul. 2008  ", + "Indicative price (USD)": "\n 2699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4288 x 2844  \n ", + "Sensor photo detectors (Mpix) ": "12.2  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Focal Plane with electronic control ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5 or 8  ", + "Live view ": "yes ", + "Stabilization ": "NO ", + "Firmware": " ", + "Dust cleaning": "Anti Dust/self cleaning ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D7000.txt b/scr/模糊专家系统/scrape/scraped/Nikon D7000.txt new file mode 100644 index 0000000..c6c6f64 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D7000.txt @@ -0,0 +1,96 @@ +{ + "id": 680, + "price": 1200, + "year": "2010", + "brand": "Nikon", + "rankDxo": 80, + "rankColor": 23.5, + "rankDyn": 13.9, + "rankLln": 1167, + "rankDxo_ranking": 72, + "rankColor_ranking": 101, + "rankDyn_ranking": 27, + "rankLln_ranking": 80, + "name": "Nikon D7000", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-15", + "sensorraw": 16.37, + "link": "/Cameras/Nikon/D7000", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D7000/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4991 x 3280  \n ", + "Sensor photo detectors (Mpix) ": "16.37  ", + "Sensor size (mm)": "15.6 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F  ", + "Weight (gr)": "690", + "Battery type": "One Rechargeable Li-ion Battery EN-EL15 ", + "Battery weight (gr)": "88", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.94 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Autofocus (AF): Single-servo AF (AF-S); full-time-servo AF (AF-F)\n Manual focus (M)\n\n ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "2 to 3 frames in steps of 1/3, 1/2, 2/3, 1 or 2 EV ", + "Exposure compensation": "-5 to +5 EV in increments of 1/3 or 1/2 EV ", + "Drive modes": "S (single frame), CL (continuous low speed), CH (continuous high speed), Q (quiet shutter-release), self-timer(self-timer), remote control(remote control), MUP (mirror up) ", + "Buffer size": "31 (JPEG), 10 (RAW) ", + "Recording medium": "SD (Secure Digital), SDHC and SDXC memory cards ", + "Image format": " NEF (RAW): 12 or 14 bit, lossless compressed or compressed\n JPEG: JPEG-Baseline compliant with fine (approx. 1:4), normal (approx. 1:8) or basic (approx. 1:16) compression (Size priority); Optimal quality compression available\n NEF (RAW) + JPEG: ", + "White balance bracketing": "2 to 3 frames in steps of 1, 2 or 3 ", + "Connectivity": "Hi-Speed USB, Video output NTSC, PAL; images can be displayed on external device while camera monitor is on, HDMI output Type C mini-pin HDMI connector; camera monitor turns off when HDMI cable is connected ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Built-in monaural or external stereo microphone; sensitivity adjustable ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D70s.txt b/scr/模糊专家系统/scrape/scraped/Nikon D70s.txt new file mode 100644 index 0000000..af7bca8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D70s.txt @@ -0,0 +1,96 @@ +{ + "id": 238, + "price": 700, + "year": "2005", + "brand": "Nikon", + "rankDxo": 50, + "rankColor": 20.4, + "rankDyn": 10.3, + "rankLln": 529, + "rankDxo_ranking": 307, + "rankColor_ranking": 318, + "rankDyn_ranking": 337, + "rankLln_ranking": 250, + "name": "Nikon D70s", + "pixelDepth": 6.1, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Apr. 2005", + "launchDateGraph": "2005-04-20", + "sensorraw": 6.12, + "link": "/Cameras/Nikon/D70s", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D70s/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Apr. 2005  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3040 x 2014  \n ", + "Sensor photo detectors (Mpix) ": "6.12  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D7100.txt b/scr/模糊专家系统/scrape/scraped/Nikon D7100.txt new file mode 100644 index 0000000..bdd4598 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D7100.txt @@ -0,0 +1,96 @@ +{ + "id": 865, + "price": 1200, + "year": "2013", + "brand": "Nikon", + "rankDxo": 83, + "rankColor": 24.2, + "rankDyn": 13.7, + "rankLln": 1256, + "rankDxo_ranking": 52, + "rankColor_ranking": 49, + "rankDyn_ranking": 34, + "rankLln_ranking": 73, + "name": "Nikon D7100", + "pixelDepth": 24.1, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2013", + "launchDateGraph": "2013-02-21", + "sensorraw": 24.26, + "link": "/Cameras/Nikon/D7100", + "chapo": " SENSORThe most obvious, and indeed forward thinking, difference between the D7000 and the D7100 is the complete removal of the optical low-pass filter (OLPF) from in front of the sensor. These filters are traditionally used to help combat moiré patterning seen when photographing patterns or fine detail. However, the trade-off is that they also reduce the clarity, or sharpness, of your images and HD video. It’s similar to the trick Nikon pulled with the D800 and the D800E, except where they had two models, one with the filter and one effectively without a filter (D800 and D800E", + "linkReview": "https://www.dxomark.com/nikon-d7100-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D7100/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2013  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6036 x 4020  \n ", + "Sensor photo detectors (Mpix) ": "24.26  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": "675", + "Battery type": "Li-Ion, EN-EL15, 7.0V, 1900mAh, 14Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal (Magnesium alloy) ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.94 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF):\n Single-servo AF (AF-S);\n Continuous-servo AF (AF-C);\n auto AF-S/AF-C selection (AF-A);\n predictive focus tracking activated automatically according to subject status.\nManual focus (MF):\n Electronic rangefinder can be used ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "2 to 5 frames in steps of 1/3, 1/2, 2/3, 1, 2, or 3 EV ", + "Exposure compensation": "+/- 5 EV in increments of 1/3 or 1/2 EV ", + "Drive modes": "Continuous low-speed [CL] mode; 1-6 frames per second\nContinuous high-speed [CH] mode; 6 frames per second\nInterval timer photography supported\nMirror-up [Mup] mode\nQuiet Shutter Release\nSelf-timer mode\nSingle-frame [S] mode ", + "Buffer size": " ", + "Recording medium": "SD\nSDHC\nSDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "3 shots in steps of 1 ", + "Connectivity": "USB/Wi-Fi/HDMI (Type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 30fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D7200.txt b/scr/模糊专家系统/scrape/scraped/Nikon D7200.txt new file mode 100644 index 0000000..4e40c08 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D7200.txt @@ -0,0 +1,96 @@ +{ + "id": 1020, + "price": 1200, + "year": "2015", + "brand": "Nikon", + "rankDxo": 87, + "rankColor": 24.5, + "rankDyn": 14.6, + "rankLln": 1333, + "rankDxo_ranking": 33, + "rankColor_ranking": 39, + "rankDyn_ranking": 7, + "rankLln_ranking": 61, + "name": "Nikon D7200", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Mar. 2015", + "launchDateGraph": "2015-03-02", + "sensorraw": 24.16, + "link": "/Cameras/Nikon/D7200", + "chapo": " The new Nikon D7200 DSLR features a 24.2Mp DX-format sensor with no Optical Low Pass Filter, a weather-resistant shell, and improved autofocus and image buffer performance.Nikon D7200 specifications: Enhanced autofocus and bigger image bufferThe new Nikon D7200 DSLR will replace its predecessor, the D7100, as the new Nikon flagship DX-format DSLR featuring an APS-C sensor. Despite offering  similar resolution — a minor change in the number of pixels, now 24.2Mp compared to 24.1Mp for the D7100 — Nikon has opted for a change of sensor in this updated model. Given the same 24.2Mp resolution without an Optical Low", + "linkReview": "https://www.dxomark.com/nikon-d7200-preview-performance-boost-for-nikon-s-flagship-aps-c-dslr/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D7200/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Mar. 2015  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6016 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 102400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": "675", + "Battery type": "EN-EL15 Lithium-ion Battery ", + "Battery weight (gr)": "88", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.94 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Auto AF-S/AF-C selection (AF-A)\nContinuous-servo (AF-C)\nFace-Priority AF available in Live View only\nFull-time Servo (AF-A) available in Live View only\nManual (M) with electronic rangefinder\nNormal area\nSingle-servo AF (AF-S)\nWide area ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Continuous low-speed [CL] mode\nContinuous high-speed [CH] mode\nMirror-up [Mup] mode\nQuiet Shutter Release\nSelf-timer Mode\nSingle-frame [S] mode ", + "Buffer size": "18 (RAW), 100 (JPEG) ", + "Recording medium": "SD\nSDHC\nSDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "Yes ", + "Connectivity": "HDMI output: Type C mini-pin HDMI connector\nHi-speed USB\nStereo Microphone Input ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D750.txt b/scr/模糊专家系统/scrape/scraped/Nikon D750.txt new file mode 100644 index 0000000..a940a88 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D750.txt @@ -0,0 +1,96 @@ +{ + "id": 975, + "price": 2300, + "year": "2014", + "brand": "Nikon", + "rankDxo": 93, + "rankColor": 24.8, + "rankDyn": 14.5, + "rankLln": 2956, + "rankDxo_ranking": 14, + "rankColor_ranking": 26, + "rankDyn_ranking": 8, + "rankLln_ranking": 18, + "name": "Nikon D750", + "pixelDepth": 24.3, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2014", + "launchDateGraph": "2014-09-12", + "sensorraw": 24.32, + "link": "/Cameras/Nikon/D750", + "chapo": " The new Nikon D750 offers serious enthusiast photographers the design and build quality of their pro D810 camera with the lower resolution 24.3Mp sensor similar to the D610Nikon D750 Specification: Same resolution but greater sensitivity than the D610The new D750 is Nikon’s 3rd full-frame FX format camera released so far in 2014, following in the footsteps of the professional grade D4s and D810. The new Nikon D750 is targeted more towards the consumer market however and offers some mouth-watering specs for the serious enthusiast. For photographers who don’t need the 36Mp resolution from the D810, the D750", + "linkReview": "https://www.dxomark.com/nikon-d750-preview-new-nikon-24-3mp-full-frame-consumer-dslr/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D750/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2014  ", + "Indicative price (USD)": "\n 2300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6032 x 4032  \n ", + "Sensor photo detectors (Mpix) ": "24.32  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "6.5  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL 15, 7V, 1900mAh, 14Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1229000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-C, AF-S, M ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "\n2 to 5 frames in steps of 2 or 3 EV\n2 to 9 frames in steps of 1/3, 1/2, 2/3 or 1 EV  ", + "Exposure compensation": "+/- EV in increments of 1/3 or 1/2 in P, S, A, and M modes  ", + "Drive modes": "Continuous low-speed [CL];\nContinuous high-speed [CH];\nMirror-up [Mup];\nQuiet Shutter Release\nQuiet Continuous Release\nSelf-timer;\nSingle-frame [S] ", + "Buffer size": " ", + "Recording medium": "SD; SDHC; SDXC ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "\n2 to 9 exposures in increments of 1, 2 or 3 EV ", + "Connectivity": "AV/USB/WIFI/HDMI/NTSC ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "\nH.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D7500.txt b/scr/模糊专家系统/scrape/scraped/Nikon D7500.txt new file mode 100644 index 0000000..f9eb7e2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D7500.txt @@ -0,0 +1,96 @@ +{ + "id": 1161, + "price": 1250, + "year": "2017", + "brand": "Nikon", + "rankDxo": 86, + "rankColor": 24.3, + "rankDyn": 14, + "rankLln": 1483, + "rankDxo_ranking": 41, + "rankColor_ranking": 46, + "rankDyn_ranking": 19, + "rankLln_ranking": 46, + "name": "Nikon D7500", + "pixelDepth": 20.9, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Apr. 2017", + "launchDateGraph": "2017-04-12", + "sensorraw": 20.88, + "link": "/Cameras/Nikon/D7500", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D7500/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Apr. 2017  ", + "Indicative price (USD)": "\n 1250  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5600 x 3728  \n ", + "Sensor photo detectors (Mpix) ": "20.88  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1640000 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, EN-EL15a ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.94 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "922000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Continuous-servo AF (AF-C), Auto AF-S/AF-C selection (AF-A), predictive focus tracking activated automatically according to subject status, Manual focus (M) ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5 EV, in steps of 1/3 or 1/2 EV ", + "Drive modes": "S (single frame), CL (continuous low speed), CH (continuous high speed), Q (quiet shutter-release), QC (quiet continuous shutter-release), Self-timer, MUP (mirror up) ", + "Buffer size": "100 (JPEG), 50 (RAW) ", + "Recording medium": "SD, SDHC (UHS-I compliant), SDXC (UHS-I compliant) ", + "Image format": "JPEG, RAW (NEF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "H.264, MPEG-4 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D80.txt b/scr/模糊专家系统/scrape/scraped/Nikon D80.txt new file mode 100644 index 0000000..e9508b3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D80.txt @@ -0,0 +1,96 @@ +{ + "id": 518, + "price": 730, + "year": "2006", + "brand": "Nikon", + "rankDxo": 61, + "rankColor": 22.1, + "rankDyn": 11.2, + "rankLln": 524, + "rankDxo_ranking": 242, + "rankColor_ranking": 212, + "rankDyn_ranking": 252, + "rankLln_ranking": 253, + "name": "Nikon D80", + "pixelDepth": 10, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr ", + "status": "TESTED", + "launchDate": "Aug. 2006", + "launchDateGraph": "2006-08-09", + "sensorraw": 10.19, + "link": "/Cameras/Nikon/D80", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D80/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2006  ", + "Indicative price (USD)": "\n 730  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3900 x 2613  \n ", + "Sensor photo detectors (Mpix) ": "10.19  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": "1 ", + "Dust cleaning": "no ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D800.txt b/scr/模糊专家系统/scrape/scraped/Nikon D800.txt new file mode 100644 index 0000000..fa3bd52 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D800.txt @@ -0,0 +1,96 @@ +{ + "id": 792, + "price": 2999, + "year": "2012", + "brand": "Nikon", + "rankDxo": 95, + "rankColor": 25.3, + "rankDyn": 14.4, + "rankLln": 2853, + "rankDxo_ranking": 11, + "rankColor_ranking": 14, + "rankDyn_ranking": 9, + "rankLln_ranking": 21, + "name": "Nikon D800", + "pixelDepth": 36.3, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2012", + "launchDateGraph": "2012-02-07", + "sensorraw": 36.56, + "link": "/Cameras/Nikon/D800", + "chapo": "

In this final section of the Nikon D800 lens test review, we’ll be looking at the wide-angle lenses. For clarity, we are classing any lens with a focal length up to 35mm as wide-angle. Within this we have broken lenses down into the ultra-wides with focal lengths below 21mm, wide-angle between 21mm and 35mm and zoom wide-angles with a focal length up to 35mm.

", + "linkReview": "/Reviews/The-Nikon-D800-and-wide-angle-lenses.-UPDATED", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D800/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2012  ", + "Indicative price (USD)": "\n 2999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 7424 x 4924  \n ", + "Sensor photo detectors (Mpix) ": "36.56  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "4 or 6  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": "820", + "Battery type": "Lithium-Ion EN-EL15 ", + "Battery weight (gr)": "80", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, MF, Live View ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "2 to 9 frames in steps of 1/3, 1/2, 2/3 or 1 EV ", + "Exposure compensation": "-5 to +5 ", + "Drive modes": "single frame, continuous low speed, continuous high speed, quiet shutter-release, mirror up, Self-timer. ", + "Buffer size": " ", + "Recording medium": "Compact Flash (Type I), SD/SDHC/SDXC UHS-I compliant ", + "Image format": "JPEG, RAW(NEF) ", + "White balance bracketing": "2 to 9 frames in steps of 1, 2 or 3 ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D800E.txt b/scr/模糊专家系统/scrape/scraped/Nikon D800E.txt new file mode 100644 index 0000000..3a2bdce --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D800E.txt @@ -0,0 +1,96 @@ +{ + "id": 814, + "price": 3300, + "year": "2012", + "brand": "Nikon", + "rankDxo": 96, + "rankColor": 25.6, + "rankDyn": 14.3, + "rankLln": 2979, + "rankDxo_ranking": 9, + "rankColor_ranking": 10, + "rankDyn_ranking": 11, + "rankLln_ranking": 16, + "name": "Nikon D800E", + "pixelDepth": 36.3, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Feb. 2012", + "launchDateGraph": "2012-02-07", + "sensorraw": 36.56, + "link": "/Cameras/Nikon/D800E", + "chapo": " Introduction Quick Sensor Summary: Nikon D800E is new king in sensor qualityThe Nikon D800E received an overall DxOMark score of 96 points, making it the best camera ever tested at DxOMark. It edged out the D800 – which was crowned king of camera quality back in March – by a single point.This small one-point difference illustrates how remarkably close the two cameras are in quality. Much like its sibling, the D800E’s sensor is unrivaled in its ability to: capture rich and varied color, perform well in extreme lowlight environments, and", + "linkReview": "https://www.dxomark.com/nikon-d800e-nabs-top-ranking-from-d800/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D800E/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Feb. 2012  ", + "Indicative price (USD)": "\n 3300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 7424 x 4924  \n ", + "Sensor photo detectors (Mpix) ": "36.56  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, EN-EL15, 7V, 1900mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "2 to 9 frames in steps of 1/3, 1/2, 2/3 or 1 EV ", + "Exposure compensation": "-5 to +5 EV in increments of 1/3, 1/2 or 1 EV ", + "Drive modes": "S (single frame), CL (continuous low speed), CH (continuous high speed), Q (quiet shutter-release), Self-timer (2 s, 5 s, 10 s, 20 s; 1 to 9 exposures at intervals of 0.5, 1, 2 or 3 s) ", + "Buffer size": " ", + "Recording medium": "Compact Flash (Type I), SD/SDHC/SDXC UHS-I compliant ", + "Image format": "JPEG, RAW(NEF), TIFF ", + "White balance bracketing": "2 to 9 frames in steps of 1, 2 or 3 ", + "Connectivity": "USB 3.0 Micro-B connector, Type C mini-pin HDMI connector ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D810.txt b/scr/模糊专家系统/scrape/scraped/Nikon D810.txt new file mode 100644 index 0000000..dce4926 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D810.txt @@ -0,0 +1,96 @@ +{ + "id": 963, + "price": 3300, + "year": "2014", + "brand": "Nikon", + "rankDxo": 97, + "rankColor": 25.7, + "rankDyn": 14.8, + "rankLln": 2853, + "rankDxo_ranking": 6, + "rankColor_ranking": 9, + "rankDyn_ranking": 3, + "rankLln_ranking": 22, + "name": "Nikon D810", + "pixelDepth": 36.3, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Jun. 2014", + "launchDateGraph": "2014-06-26", + "sensorraw": 36.37, + "link": "/Cameras/Nikon/D810", + "chapo": " Introduction The Nikon D800 has been one of the most successful cameras for the company in recent times, despite the relative high price and lofty aspirations. What’s perhaps even more remarkable is the more specialist more expensive version, the D800E with its unusual optical low pass filter sans anti aliasing properties has seen demand outstrip supply since its introduction two years ago. Although not unexpected, this new mid-term upgrade consolidates the two previous offerings with the familiar exterior and 36-Mpix FX format sensor into a single model but does away with the image blurring optical low-pass", + "linkReview": "https://www.dxomark.com/nikon-d810-sensor-review-new-dxomark-leader/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D810/vignette3.png", + "Type": "Professional ", + "Announced": "Jun. 2014  ", + "Indicative price (USD)": "\n 3300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 7380 x 4928  \n ", + "Sensor photo detectors (Mpix) ": "36.37  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "64 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": "880", + "Battery type": "Li-ion, EN-EL15, 7V, 1900mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1229000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Auto AF-S/AF-C selection (AF-A)\nContinuous-servo (AF-C)\nFace-Priority AF available in Live View only and D-Movie only\nFull-time Servo (AF-A) available in Live View only\nManual (M) with electronic rangefinder\nNormal area\nSingle-servo AF (AF-S)\nWide area ", + "Number of autofocus points": "51 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single-frame\nContinuous low-speed [CL]\nContinuous high-speed [CH]\nQuiet Shutter Release\nQuiet Continuous Release\nSelf-timer\nMirror-up ", + "Buffer size": " ", + "Recording medium": "CompactFlash (CF) (Type I, compliant with UDMA)\nSD\nSDHC\nSDXC ", + "Image format": "JPEG, RAW(NEF) ", + "White balance bracketing": "Yes ", + "Connectivity": "HDMI output: Type C mini-pin HDMI connector\nHeadphone Connector\nNTSC\nStereo Microphone Input\nSuper Speed USB 3.0 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D850.txt b/scr/模糊专家系统/scrape/scraped/Nikon D850.txt new file mode 100644 index 0000000..c00564f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D850.txt @@ -0,0 +1,96 @@ +{ + "id": 1177, + "price": 3300, + "year": "2017", + "brand": "Nikon", + "rankDxo": 100, + "rankColor": 26.4, + "rankDyn": 14.8, + "rankLln": 2660, + "rankDxo_ranking": 3, + "rankColor_ranking": 2, + "rankDyn_ranking": 2, + "rankLln_ranking": 25, + "name": "Nikon D850", + "pixelDepth": 45.7, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2017", + "launchDateGraph": "2017-08-23", + "sensorraw": 45.75, + "link": "/Cameras/Nikon/D850", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D850/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Aug. 2017  ", + "Indicative price (USD)": "\n 3300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8288 x 5520  \n ", + "Sensor photo detectors (Mpix) ": "45.75  ", + "Sensor size (mm)": "23.9 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "32 - 102400 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": "915", + "Battery type": "Li-ion, EN-EL15a, 7.0V, 1900mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.75 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "2359000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " \nSingle-servo AF (AF-S), Full-time-servo AF (AF-F), Continuous-servo AF (AF-C): predictive focus tracking automatically activated according to subject status, Manual focus (M) ", + "Number of autofocus points": "153 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5 EV, in increments of 1/3, 1/2, or 1 EV ", + "Drive modes": " \nS (single frame), CL (continuous low speed), CH (continuous high speed), Q (quiet shutter-release), QC (quiet continuous shutter-release), Self-timer, MUP (mirror up) ", + "Buffer size": " ", + "Recording medium": "XQD, SD, SDHC (UHS-II compliant), SDXC (UHS-II compliant) ", + "Image format": "JPEG, RAW (NEF), TIFF ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4 ", + "Video codec": "H.264/MPEG-4 Advanced Video Coding ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon D90.txt b/scr/模糊专家系统/scrape/scraped/Nikon D90.txt new file mode 100644 index 0000000..529b438 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon D90.txt @@ -0,0 +1,96 @@ +{ + "id": 439, + "price": 1235, + "year": "2008", + "brand": "Nikon", + "rankDxo": 73, + "rankColor": 22.7, + "rankDyn": 12.5, + "rankLln": 977, + "rankDxo_ranking": 135, + "rankColor_ranking": 168, + "rankDyn_ranking": 116, + "rankLln_ranking": 111, + "name": "Nikon D90", + "pixelDepth": 12.3, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr ", + "status": "TESTED", + "launchDate": "Aug. 2008", + "launchDateGraph": "2008-08-27", + "sensorraw": 12.4, + "link": "/Cameras/Nikon/D90", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/D90/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2008  ", + "Indicative price (USD)": "\n 1235  \n ", + "Sensor type ": "CMOS Nikon DX format  ", + "Resolution ": "\n 4310 x 2868  \n ", + "Sensor photo detectors (Mpix) ": "12.4  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "4.5 (CH) or 1-4 (CL)  ", + "Live view ": "yes ", + "Stabilization ": "NO ", + "Firmware": " ", + "Dust cleaning": "Anti Dust/self cleaning ", + "Mount type": "Nikon F DX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nikon Df.txt b/scr/模糊专家系统/scrape/scraped/Nikon Df.txt new file mode 100644 index 0000000..349ed02 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nikon Df.txt @@ -0,0 +1,96 @@ +{ + "id": 925, + "price": 2749, + "year": "2013", + "brand": "Nikon", + "rankDxo": 89, + "rankColor": 24.6, + "rankDyn": 13.1, + "rankLln": 3279, + "rankDxo_ranking": 23, + "rankColor_ranking": 38, + "rankDyn_ranking": 70, + "rankLln_ranking": 8, + "name": "Nikon Df", + "pixelDepth": 16.2, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Nov. 2013", + "launchDateGraph": "2013-11-05", + "sensorraw": 16.43, + "link": "/Cameras/Nikon/Df", + "chapo": " Introduction Following a series of TV teaser spots filmed in the Scottish Highlands, the somewhat controversially styled ‘retro’ Nikon Df was finally launched in October. Although the Df is a fully-fledged digital AF camera on the inside, the exterior is reminiscent of the firm’s earlier film-era models of the 70s and 80s.Despite the retro-appearance with the top plate bristling with metal dials and levers, the Df has a 39-point AF system using the Multi-Cam 4800 AF module from the D610 and the 16-Mpix CMOS sensor and image pipeline from the flagship D4.Like that model sensitivity runs", + "linkReview": "https://www.dxomark.com/nikon-df-review-new-low-light-champion/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Df/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Nov. 2013  ", + "Indicative price (USD)": "\n 2749  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4992 x 3292  \n ", + "Sensor photo detectors (Mpix) ": "16.43  ", + "Sensor size (mm)": "23.9 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 204800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.5  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Nikon F FX  ", + "Weight (gr)": "710", + "Battery type": "Li-ion, EN-EL14a, 7.4V, 1030mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Autofocus (AF): Single-servo AF (AF-S); Continuous-servo AF (AF-C); auto AF-S/AF-C selection (AF-A); predictive focus tracking activated automatically according to subject status\nManual focus (MF): Electronic rangefinder can be used ", + "Number of autofocus points": "39 ", + "Exposure bracketing": "2 to 5 frames in steps of 1/3, 2/3, 1, 2, or 3 EV ", + "Exposure compensation": "+/-3 EV in increments of 1/3EV ", + "Drive modes": "Single-frame (S) mode\nContinuous low-speed (CL) mode; 1-5 frames per second\nContinuous high-speed (CH] mode; 5.5 frames per second\nMirror-up [Mup] mode\nQuiet Shutter Release\nSelf-timer Mode ", + "Buffer size": " ", + "Recording medium": "SD\nSDHC\nSDXC ", + "Image format": "JPEG, RAW (NEF), TIFF (RGB) ", + "White balance bracketing": "2 to 3 exposures in increments of 1, 2 or 3 EV ", + "Connectivity": "Type C mini-pin HDMI connector\nHi-speed USB, WU-1a Wireless Mobile Adapter (optional) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "No ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nokia Lumia 1020.txt b/scr/模糊专家系统/scrape/scraped/Nokia Lumia 1020.txt new file mode 100644 index 0000000..0a1dd1c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nokia Lumia 1020.txt @@ -0,0 +1,96 @@ +{ + "id": 933, + "price": 610, + "year": "2013", + "brand": "Nokia", + "rankDxo": 41, + "rankColor": 20.2, + "rankDyn": 10.4, + "rankLln": 135, + "rankDxo_ranking": 330, + "rankColor_ranking": 326, + "rankDyn_ranking": 324, + "rankLln_ranking": 338, + "name": "Nokia Lumia 1020", + "pixelDepth": 41, + "sensor": "sensor_compact_2over3", + "type": "mobile", + "status": "TESTED", + "launchDate": "Jul. 2013", + "launchDateGraph": "2013-07-11", + "sensorraw": 38.33, + "link": "/Cameras/Nokia/Lumia-1020", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1020/vignette3.png", + "Type": " ", + "Announced": "Jul. 2013  ", + "Indicative price (USD)": "\n 610  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 7152 x 5360  \n ", + "Sensor photo detectors (Mpix) ": "38.33  ", + "Sensor size (mm)": "6.6 x 8.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "10.0", + "Focal length multiplier": "3.93 ", + "Aspect Ratio": "5:3.5 ", + "ISO latitude ": "100 - 4000 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 4.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Mobile  ", + "Weight (gr)": " ", + "Battery type": "BL-4J, 3.7V, 2000mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "4.5 ", + "Monitor pixel": "983040 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": "Autofocus, Face Detection, Touch AF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "No ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": "Internal memory ", + "Image format": "JPEG, RAW(DNG) ", + "White balance bracketing": " ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "Yes ", + "3G": "Yes ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": " ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Nokia Lumia 1520.txt b/scr/模糊专家系统/scrape/scraped/Nokia Lumia 1520.txt new file mode 100644 index 0000000..b8d51c8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Nokia Lumia 1520.txt @@ -0,0 +1,96 @@ +{ + "id": 934, + "price": 600, + "year": "2013", + "brand": "Nokia", + "rankDxo": 29, + "rankColor": 18.6, + "rankDyn": 10, + "rankLln": 71, + "rankDxo_ranking": 353, + "rankColor_ranking": 354, + "rankDyn_ranking": 352, + "rankLln_ranking": 354, + "name": "Nokia Lumia 1520", + "pixelDepth": 20, + "sensor": "", + "type": "compact", + "status": "TESTED", + "launchDate": "Nov. 2013", + "launchDateGraph": "2013-11-15", + "sensorraw": 18.69, + "link": "/Cameras/Nokia/Lumia-1520", + "chapo": "

Nokia has decided to take on rivals with larger screens but, with its smaller 4.3 x 5.8mm 20-Mpix CMOS sensor, can this model resoundingly beat them in image quality?  Read on to find out.

", + "linkReview": "/Reviews/Nokia-Lumia-1520-sensor-review-Pushing-the-boundaries", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumia_1520/vignette3.png", + "Type": "Compact ", + "Announced": "Nov. 2013  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4992 x 3744  \n ", + "Sensor photo detectors (Mpix) ": "18.69  ", + "Sensor size (mm)": "4.3 x 5.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "10.0", + "Focal length multiplier": "5.99 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 4000 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": " -  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Mobile  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, 3400 mAh, BV-4BW ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Compact ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "6 ", + "Monitor pixel": "2073600 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": "Internal, microSDHC ", + "Image format": "JPEG, RAW(DNG) ", + "White balance bracketing": " ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "Yes ", + "3G": "Yes ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": " ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E3.txt b/scr/模糊专家系统/scrape/scraped/Olympus E3.txt new file mode 100644 index 0000000..df426c9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E3.txt @@ -0,0 +1,96 @@ +{ + "id": 220, + "price": 1300, + "year": "2007", + "brand": "Olympus", + "rankDxo": 56, + "rankColor": 21.6, + "rankDyn": 10.5, + "rankLln": 571, + "rankDxo_ranking": 259, + "rankColor_ranking": 245, + "rankDyn_ranking": 320, + "rankLln_ranking": 223, + "name": "Olympus E3", + "pixelDepth": 10.1, + "sensor": "sensor_micro43", + "type": "semiprodslr, professional", + "status": "TESTED", + "launchDate": "Oct. 2007", + "launchDateGraph": "2007-10-16", + "sensorraw": 10.42, + "link": "/Cameras/Olympus/E3", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E3/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Oct. 2007  ", + "Indicative price (USD)": "\n 1300  \n ", + "Sensor type ": "Live MOS  ", + "Resolution ": "\n 3720 x 2800  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "13 x 17 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4/3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "Focal Plane with electronic control ", + "Fastest - Slowest speed (s)": "1/8000 - 60  ", + "Frame rate (fps)": "5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "Anti Dust ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E30.txt b/scr/模糊专家系统/scrape/scraped/Olympus E30.txt new file mode 100644 index 0000000..9aee6fd --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E30.txt @@ -0,0 +1,96 @@ +{ + "id": 574, + "price": 1689, + "year": "2008", + "brand": "Olympus", + "rankDxo": 55, + "rankColor": 21.3, + "rankDyn": 10.4, + "rankLln": 530, + "rankDxo_ranking": 276, + "rankColor_ranking": 268, + "rankDyn_ranking": 326, + "rankLln_ranking": 249, + "name": "Olympus E30", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Nov. 2008", + "launchDateGraph": "2008-11-05", + "sensorraw": 12.64, + "link": "/Cameras/Olympus/E30", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E30/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Nov. 2008  ", + "Indicative price (USD)": "\n 1689  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 4100 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.64  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 60  ", + "Frame rate (fps)": "5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E410.txt b/scr/模糊专家系统/scrape/scraped/Olympus E410.txt new file mode 100644 index 0000000..92979b0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E410.txt @@ -0,0 +1,96 @@ +{ + "id": 496, + "price": 480, + "year": "2007", + "brand": "Olympus", + "rankDxo": 51, + "rankColor": 21.1, + "rankDyn": 10, + "rankLln": 494, + "rankDxo_ranking": 302, + "rankColor_ranking": 284, + "rankDyn_ranking": 353, + "rankLln_ranking": 270, + "name": "Olympus E410", + "pixelDepth": 10, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Mar. 2007", + "launchDateGraph": "2007-03-05", + "sensorraw": 10.42, + "link": "/Cameras/Olympus/E410", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E410/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2007  ", + "Indicative price (USD)": "\n 480  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 3720 x 2800  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "14 x 18 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.92 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1 ", + "Dust cleaning": "yes ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E420.txt b/scr/模糊专家系统/scrape/scraped/Olympus E420.txt new file mode 100644 index 0000000..6c34884 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E420.txt @@ -0,0 +1,96 @@ +{ + "id": 464, + "price": 520, + "year": "2008", + "brand": "Olympus", + "rankDxo": 56, + "rankColor": 21.5, + "rankDyn": 10.4, + "rankLln": 527, + "rankDxo_ranking": 265, + "rankColor_ranking": 250, + "rankDyn_ranking": 323, + "rankLln_ranking": 252, + "name": "Olympus E420", + "pixelDepth": 10, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Mar. 2008", + "launchDateGraph": "2008-03-05", + "sensorraw": 10.42, + "link": "/Cameras/Olympus/E420", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E420/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2008  ", + "Indicative price (USD)": "\n 520  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 3720 x 2800  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "14 x 18 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.92 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3.5  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E450.txt b/scr/模糊专家系统/scrape/scraped/Olympus E450.txt new file mode 100644 index 0000000..b9aa19f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E450.txt @@ -0,0 +1,96 @@ +{ + "id": 589, + "price": 443, + "year": "2009", + "brand": "Olympus", + "rankDxo": 56, + "rankColor": 21.5, + "rankDyn": 10.5, + "rankLln": 512, + "rankDxo_ranking": 267, + "rankColor_ranking": 250, + "rankDyn_ranking": 322, + "rankLln_ranking": 263, + "name": "Olympus E450", + "pixelDepth": 10, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Mar. 2009", + "launchDateGraph": "2009-03-31", + "sensorraw": 10.42, + "link": "/Cameras/Olympus/E450", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E450/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2009  ", + "Indicative price (USD)": "\n 443  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 3720 x 2800  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3.5  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E5.txt b/scr/模糊专家系统/scrape/scraped/Olympus E5.txt new file mode 100644 index 0000000..0771d1b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E5.txt @@ -0,0 +1,96 @@ +{ + "id": 682, + "price": 1699, + "year": "2010", + "brand": "Olympus", + "rankDxo": 56, + "rankColor": 21.6, + "rankDyn": 10.5, + "rankLln": 519, + "rankDxo_ranking": 260, + "rankColor_ranking": 246, + "rankDyn_ranking": 321, + "rankLln_ranking": 258, + "name": "Olympus E5", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "semiprodslr, professional", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-14", + "sensorraw": 12.63, + "link": "/Cameras/Olympus/E5", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E5/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 1699  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 4096 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.63  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 60.0  ", + "Frame rate (fps)": "5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Four Thirds  ", + "Weight (gr)": "800", + "Battery type": "Li-ion battery BLM-5 1620mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "-10- 40 / 14 F - 104 F ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": "0 ", + "View finder coverage": "1 ", + "Mirror lockup": "NA ", + "View finder diopter": "-3 to +1 ", + "Monitor type": " ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "Yes  ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "(2, 3, 5, 7 frames at 1/7 EV, 1/5 EV, 1/3 EV, 1 EV steps) ", + "Exposure compensation": "+/- 3 ", + "Drive modes": "Single-frame shooting, Sequential shooting, Self-timer, Remote control. Approx. 5 frames/sec. ", + "Buffer size": " ", + "Recording medium": "Compact Flash (Type I or II)/SD/SDHC/SDXC ", + "Image format": "JPG, ORF ", + "White balance bracketing": "3 frames in 2, 4, 6 steps selectable in each A-B/G-M axis. ", + "Connectivity": "USB/HDMI/AV ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "AC-1 ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 / 30 fps ", + "Full HD": "HD ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E510.txt b/scr/模糊专家系统/scrape/scraped/Olympus E510.txt new file mode 100644 index 0000000..3d92847 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E510.txt @@ -0,0 +1,96 @@ +{ + "id": 465, + "price": 593, + "year": "2007", + "brand": "Olympus", + "rankDxo": 52, + "rankColor": 21.2, + "rankDyn": 10, + "rankLln": 442, + "rankDxo_ranking": 299, + "rankColor_ranking": 272, + "rankDyn_ranking": 351, + "rankLln_ranking": 285, + "name": "Olympus E510", + "pixelDepth": 10, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Mar. 2007", + "launchDateGraph": "2007-03-05", + "sensorraw": 10.42, + "link": "/Cameras/Olympus/E510", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E510/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Mar. 2007  ", + "Indicative price (USD)": "\n 593  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 3720 x 2800  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "14 x 18 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.92 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E520.txt b/scr/模糊专家系统/scrape/scraped/Olympus E520.txt new file mode 100644 index 0000000..ac5935b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E520.txt @@ -0,0 +1,96 @@ +{ + "id": 221, + "price": 450, + "year": "2008", + "brand": "Olympus", + "rankDxo": 55, + "rankColor": 21.4, + "rankDyn": 10.4, + "rankLln": 548, + "rankDxo_ranking": 270, + "rankColor_ranking": 257, + "rankDyn_ranking": 326, + "rankLln_ranking": 235, + "name": "Olympus E520", + "pixelDepth": 10, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "May. 2008", + "launchDateGraph": "2008-05-13", + "sensorraw": 10.42, + "link": "/Cameras/Olympus/E520", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E520/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "May. 2008  ", + "Indicative price (USD)": "\n 450  \n ", + "Sensor type ": "Live MOS  ", + "Resolution ": "\n 3720 x 2800  \n ", + "Sensor photo detectors (Mpix) ": "10.42  ", + "Sensor size (mm)": "13 x 17 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4/3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "Focal Plane with electronic control ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3.5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "Anti Dust ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E600.txt b/scr/模糊专家系统/scrape/scraped/Olympus E600.txt new file mode 100644 index 0000000..beb1f29 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E600.txt @@ -0,0 +1,96 @@ +{ + "id": 644, + "price": 490, + "year": "2009", + "brand": "Olympus", + "rankDxo": 55, + "rankColor": 21.5, + "rankDyn": 10.3, + "rankLln": 541, + "rankDxo_ranking": 273, + "rankColor_ranking": 254, + "rankDyn_ranking": 332, + "rankLln_ranking": 237, + "name": "Olympus E600", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Aug. 2009", + "launchDateGraph": "2009-08-30", + "sensorraw": 12.63, + "link": "/Cameras/Olympus/E600", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E600/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2009  ", + "Indicative price (USD)": "\n 490  \n ", + "Sensor type ": "Live MOS  ", + "Resolution ": "\n 4096 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.63  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4/3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "4  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Anti Dust ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus E620.txt b/scr/模糊专家系统/scrape/scraped/Olympus E620.txt new file mode 100644 index 0000000..86ddcfa --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus E620.txt @@ -0,0 +1,96 @@ +{ + "id": 588, + "price": 618, + "year": "2009", + "brand": "Olympus", + "rankDxo": 55, + "rankColor": 21.3, + "rankDyn": 10.3, + "rankLln": 536, + "rankDxo_ranking": 278, + "rankColor_ranking": 265, + "rankDyn_ranking": 331, + "rankLln_ranking": 244, + "name": "Olympus E620", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Feb. 2009", + "launchDateGraph": "2009-02-24", + "sensorraw": 12.64, + "link": "/Cameras/Olympus/E620", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/E620/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2009  ", + "Indicative price (USD)": "\n 618  \n ", + "Sensor type ": "Live MOS  ", + "Resolution ": "\n 4100 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.64  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "4  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "Anti Dust ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M1 Mark II.txt b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M1 Mark II.txt new file mode 100644 index 0000000..bd1489f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M1 Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 1136, + "price": 2000, + "year": "2016", + "brand": "Olympus", + "rankDxo": 80, + "rankColor": 23.7, + "rankDyn": 12.8, + "rankLln": 1312, + "rankDxo_ranking": 76, + "rankColor_ranking": 78, + "rankDyn_ranking": 86, + "rankLln_ranking": 66, + "name": "Olympus OM-D E-M1 Mark II", + "pixelDepth": 20.4, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2016", + "launchDateGraph": "2016-09-19", + "sensorraw": 20.5, + "link": "/Cameras/Olympus/OM-D-E-M1-Mark-II", + "chapo": " Specification and FeaturesLike its predecessor, the E-M1 Mk II features the body-integral 5-axis image stabilization but improvements have resulted in a reduction in camera shake of up to 5.5 stops (up to 6.5 stops with certain Olympus optically-stabilized lenses), up from the already impressive 4 stops of the previous model. The sensor shifting feature can also be used to deliver a 50-MP equivalent JPEG combined from separate eight shots.Enhancements have also been made to the camera’s AF system. The new camera features a hybrid Dual FAST AF system and combines contrast detection with 121 embedded cross-type, phase-detect", + "linkReview": "https://www.dxomark.com/olympus-om-d-e-m1-mark-ii-sensor-review-new-standard/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1_Mark_II/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2016  ", + "Indicative price (USD)": "\n 2000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5240 x 3912  \n ", + "Sensor photo detectors (Mpix) ": "20.5  ", + "Sensor size (mm)": "13 x 17.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "64 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/32000 - 60.0  ", + "Frame rate (fps)": "60.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BLH-1, 1720mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.74 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +2 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (S-AF), Continuous AF (C-AF), Manual Focus (MF), S-AF + MF, AF tracking (C-AF + TR), Preset MF ", + "Number of autofocus points": "121 ", + "Exposure bracketing": "2, 3 or 5 frames in 0.3/0.7/1.0EV steps selectable, 7 frames in 0.3/0.7EV steps selectable ", + "Exposure compensation": "+/- 5 EV, adjustable by 1/3, 1/2 or 1 EV steps ", + "Drive modes": "Single, high-speed continuous, low-speed continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "Dual Card Slot, SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVI ", + "Video codec": "MPEG-4AVC, H.264, Motion JPEG ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M1.txt b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M1.txt new file mode 100644 index 0000000..81a0c4e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M1.txt @@ -0,0 +1,96 @@ +{ + "id": 909, + "price": 1399, + "year": "2013", + "brand": "Olympus", + "rankDxo": 73, + "rankColor": 23, + "rankDyn": 12.7, + "rankLln": 757, + "rankDxo_ranking": 133, + "rankColor_ranking": 132, + "rankDyn_ranking": 96, + "rankLln_ranking": 168, + "name": "Olympus OM-D E-M1", + "pixelDepth": 16.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2013", + "launchDateGraph": "2013-09-10", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/OM-D-E-M1", + "chapo": " Introduction The OM-D E-M1 is the firm’s new flagship model is to replace the E-5, rather than E-M5, which will exist alongside the new model. As a result the E-M1 features a new much larger, pro-worthy outer shell than the E-M5 and yet it has many of that camera’s features that made it so popular. It has, for example, a similar 16-Mpix L-MOS sensor with the built-in 5-axis image stabilization, a high-resolution electronic viewfinder and pullout, tilting high-resolution 3-inch LCD touchscreen rear display.One of the most significant advances though is that the image sensor includes dedicated", + "linkReview": "https://www.dxomark.com/olympus-om-d-e-m1-review-pro-grade-body-pro-grade-sensor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2013  ", + "Indicative price (USD)": "\n 1399  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/8000 - 60.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "BLN-1 lithium-ion ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.3 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (S-AF) / Continuous AF (C-AF) / Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR)  ", + "Number of autofocus points": "800 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, sequential H, sequential L, self-timer (2 or 12 secs, custom) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG,RAW ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "Motion JPEG ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M10 Mark II.txt b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M10 Mark II.txt new file mode 100644 index 0000000..65b51da --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M10 Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 1046, + "price": 650, + "year": "2015", + "brand": "Olympus", + "rankDxo": 73, + "rankColor": 23.1, + "rankDyn": 12.5, + "rankLln": 842, + "rankDxo_ranking": 127, + "rankColor_ranking": 124, + "rankDyn_ranking": 124, + "rankLln_ranking": 139, + "name": "Olympus OM-D E-M10 Mark II", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2015", + "launchDateGraph": "2015-08-25", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/OM-D-E-M10-Mark-II", + "chapo": " Introduction Specifications and FeaturesAnnounced earlier in the summer this year as the follow-up to the more accessible, lower-tier OM-D E-M10 model, the appropriately-named E-M10 II adopts a similar 16-Mpix Live MOS sensor and image processor, but features a slightly redesigned body with a tiered-control layout for the top plate and a couple of high-end features found on the mid-range E-M5 II.The updates include the higher-resolution 2.36 million dot OLED EVF in the E-M5 II (up from 1.44 million-dot EVF on the E-M10) and a modified version of the 5-axis in-body stabilization system. Olympus claims this system", + "linkReview": "https://www.dxomark.com/olympus-om-d-e-m10-ii-sensor-review-solid-performer/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10_Mark_II/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2015  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "8.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "342", + "Battery type": "BLS-50, Li-Ion ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Manual focus, Single AF, Continuous AF, Single AF/MF, AF Tracking ", + "Number of autofocus points": "81 ", + "Exposure bracketing": "2 / 3 / 5 frames (+/- 1/3, 2/3,\n1 EV steps)\n7 frames (+/- 1/3, 1/2, 2/3\nEV steps) ", + "Exposure compensation": "+/- 5 EV ( 1, 1/2, 1/3 steps) ", + "Drive modes": "Single, high-speed continuous (8.5 fps), low-speed continuous (4 fps), self-timer ", + "Buffer size": "22 (RAW) ", + "Recording medium": "SD Memory Card (SDHC,\nSDXC, UHS - I/II compatible) ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "avi ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M10.txt b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M10.txt new file mode 100644 index 0000000..3e7414c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M10.txt @@ -0,0 +1,96 @@ +{ + "id": 937, + "price": 700, + "year": "2014", + "brand": "Olympus", + "rankDxo": 72, + "rankColor": 22.8, + "rankDyn": 12.3, + "rankLln": 884, + "rankDxo_ranking": 138, + "rankColor_ranking": 152, + "rankDyn_ranking": 146, + "rankLln_ranking": 130, + "name": "Olympus OM-D E-M10", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2014", + "launchDateGraph": "2014-01-29", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/OM-D-E-M10", + "chapo": " Introduction After the success of the OM-D E-M5 and high-end E-M1 models, Olympus has created an entry-level model in the form of the new OM-D EM-10. It bears the familiar design and layout of the earlier mid-range E-M5 including a built-in EVF and folding rear LCD, although it’s slightly smaller and lighter still. In terms of specification and capabilities the EM-10 shares a lot more with the E-M5 than one might expect. It has a similar 16-Mpix four-thirds CMOS sensor, same 1.44M dot resolution LCD panel in the viewfinder, and it has the related shutter with", + "linkReview": "https://www.dxomark.com/olympus-om-d-e-m10-sensor-review-mini-marvel/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M10/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2014  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "200 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "BLS-5 Li-ion ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.15 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +2 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Single AF + MF, Continuous AF, MF ", + "Number of autofocus points": "81 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single AF, Single AF + MF, Continuous AF, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M5 Mark II.txt b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M5 Mark II.txt new file mode 100644 index 0000000..e189e8d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M5 Mark II.txt @@ -0,0 +1,96 @@ +{ + "id": 1006, + "price": 1100, + "year": "2015", + "brand": "Olympus", + "rankDxo": 73, + "rankColor": 23, + "rankDyn": 12.4, + "rankLln": 896, + "rankDxo_ranking": 129, + "rankColor_ranking": 129, + "rankDyn_ranking": 130, + "rankLln_ranking": 126, + "name": "Olympus OM-D E-M5 Mark II", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Feb. 2015", + "launchDateGraph": "2015-02-05", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/OM-D-E-M5-Mark-II", + "chapo": " The new E-M5 II has been improved for better handling, with more customizable function buttons, while keeping the classic retro styling of the button placement and control layout of the earlier version.Olympus OM-D E-M5 II Specifications: 5-stop IS and 40Mp image stitchingSo how do you follow a classic? That’s the dilemma Olympus engineers faced following the undisputed success of their original E-M5 mirrorless hybrid camera. Boasting outstanding build quality, retro styling, 5-axis sensor shift image stabilization, and a 16Mp 4/3 sensor, it was at the time the king of mirrorless hybrids. That was three years ago, though,", + "linkReview": "https://www.dxomark.com/olympus-om-d-e-m5-ii-preview-a-classic-reborn/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5_Mark_II/vignette3.png", + "Type": "High-end compact ", + "Announced": "Feb. 2015  ", + "Indicative price (USD)": "\n 1100  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "417", + "Battery type": "BLN-1 Li-ion battery ", + "Battery weight (gr)": "50", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +2 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (S-AF) / Continuous AF (C-AF) / Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR) ", + "Number of autofocus points": "81 ", + "Exposure bracketing": "2, 3 or 5 frames in 0.3/0.7/1.0EV steps selectable, 7 frames in 0.3/0.7EV steps selectable ", + "Exposure compensation": "+/- 5 EV, with selectable EV adjustment steps (1/3, 1/2, 1) ", + "Drive modes": "Single, H mode, L mode, self timer ", + "Buffer size": "19 (JPEG), 16 (RAW) ", + "Recording medium": "SD Memory Card (SDHC, SDXC, UHS-I, II compatible, Eye-Fi Card compatible) ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "3 frames in 2, 4, 6 steps selectable in each A-B/G-M axis. ", + "Connectivity": "USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "3.5 stereo mini jack ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVI, MOV ", + "Video codec": "H264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M5.txt b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M5.txt new file mode 100644 index 0000000..a9e4f15 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus OM-D E-M5.txt @@ -0,0 +1,96 @@ +{ + "id": 793, + "price": 999, + "year": "2012", + "brand": "Olympus", + "rankDxo": 71, + "rankColor": 22.8, + "rankDyn": 12.3, + "rankLln": 826, + "rankDxo_ranking": 146, + "rankColor_ranking": 154, + "rankDyn_ranking": 149, + "rankLln_ranking": 143, + "name": "Olympus OM-D E-M5", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2012", + "launchDateGraph": "2012-02-08", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/OM-D-E-M5", + "chapo": " Introduction The Olympus OM-D: the digital version of the OM lineThis new camera fits right in to the OM line and will appeal to demanding and adventurous photographers. We had a chance to see this camera yesterday in Paris, and here are a few first impressions:Compactness, tropicalized housing, and integrated viewfinderThe first thing we noticed was how compact this camera truly is, with Olympus taking full advantage of the 4/3 sensor format. And as soon as we handled it, we could tell that its size in no way compromised its", + "linkReview": "https://www.dxomark.com/olympus-om-d-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/OM-D_E-M5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2012  ", + "Indicative price (USD)": "\n 999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "200 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "425", + "Battery type": "Lithium-Ion BLN-1 ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "magnesium alloy ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "OLED ", + "Monitor size": "3 ", + "Monitor pixel": "610000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "FAST AF, Tracking 3D, AF Tracking ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "2, 3, 5, 7 frames at 1/3 EV, 1/2 EV, 2/3 EV, 1 EV steps ", + "Exposure compensation": "+/-3 EV (at 1/3 EV, 1/2 EV, 1 EV steps) ", + "Drive modes": " Single\nContinuous\nSelf-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": " JPEG/RAW/DCF/DPOF/MPO ", + "White balance bracketing": "Yes ", + "Connectivity": "USB 2.0 (480 Mbit/sec)\n(Mini HDMI type-D) ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": "stereo ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": " ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVI/MOV ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN E-P5.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-P5.txt new file mode 100644 index 0000000..b0d69e7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-P5.txt @@ -0,0 +1,96 @@ +{ + "id": 883, + "price": 1000, + "year": "2013", + "brand": "Olympus", + "rankDxo": 72, + "rankColor": 22.8, + "rankDyn": 12.4, + "rankLln": 895, + "rankDxo_ranking": 136, + "rankColor_ranking": 147, + "rankDyn_ranking": 142, + "rankLln_ranking": 127, + "name": "Olympus PEN E-P5", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "May. 2013", + "launchDateGraph": "2013-05-10", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/PEN-E-P5", + "chapo": " Introduction Last year saw the introduction of the Olympus O-MD E-M5, with a nod to firm’s film-era cameras but packing an new 16-Mpix MOS type sensor on an advanced&nbsp; '5-axis' stabilized platform, built-in EVF, weatherproofing, high speed AF and 9fps continuous shooting, it became a sensation practically overnight. The new $999 (body only) E-P5 looks to capitalize on that using the familiar PEN body shape instead and by adding a sprinkling of promising new features, including focus ‘peaking’,1/8000 sec top shutter speed (and 1/320 sec flash sync), built-in intervalometer and time lapse movie creation option, as", + "linkReview": "https://www.dxomark.com/olympus-pen-e-p5-review-is-it-mightier-than-the-rest/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-P5/vignette3.png", + "Type": "Hybrid ", + "Announced": "May. 2013  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 60.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BLN-1, 1220mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Manual focus, Single AF, Continuous AF, Single AF + MF, AF Tracking ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": " Single-frame shooting, Sequential shooting, Self-timer ", + "Buffer size": "28 (JPEG), 17 (RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV/USB 2.0/Wi-Fi/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVI ", + "Video codec": "MPEG-4AVC/H.264, Motion JPEG ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PL5.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PL5.txt new file mode 100644 index 0000000..21faab1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PL5.txt @@ -0,0 +1,96 @@ +{ + "id": 839, + "price": 699, + "year": "2012", + "brand": "Olympus", + "rankDxo": 72, + "rankColor": 22.8, + "rankDyn": 12.3, + "rankLln": 889, + "rankDxo_ranking": 140, + "rankColor_ranking": 148, + "rankDyn_ranking": 156, + "rankLln_ranking": 129, + "name": "Olympus PEN E-PL5", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/PEN-E-PL5", + "chapo": " Introduction Announced at the same time as the E-PM2, with which it shares the same design and ergonomics, the Pen E-PL5 aims to be the worthy successor to the E-PL3, the flagship of Olympus’s mid-range micro 4:3 cameras.With this new version, Olympus offers a nice upgrade. The compact hybrid’s new swivel touchscreen, although of only average resolution (460,000 points), gives it a real boost in autonomy. Along with speeds ranging from 200 to 25,600 ISO, the camera offers HDR mode, rapid burst shooting at 8 i/s, and 1080p video recording. A TruePic IV processor manages fast", + "linkReview": "https://www.dxomark.com/olympus-pen-e-pl5-qualities-of-the-om-d-e-m5/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "279", + "Battery type": " ", + "Battery weight (gr)": "44", + "Tropicalization": " 0 - 40? (operation) / -20 - 60? (storage), 30 - 90% (operation) / 10 - 90% (storage) ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (S-AF) / Continuous AF (C-AF)/ Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR) ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": " +/- 3 EV in 1/3, 1/2, 1 EV steps selectable ", + "Drive modes": "Single-frame shooting, Sequential shooting, Self-timer ", + "Buffer size": "27 (RAW), Unlimited (JPEG) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW(ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB2.0, micro HDMI, NTSC/PAL ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080/30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVI ", + "Video codec": "MPEG-4AVC/H.264, Motion JPEG ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PL7.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PL7.txt new file mode 100644 index 0000000..4c087d9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PL7.txt @@ -0,0 +1,96 @@ +{ + "id": 972, + "price": 600, + "year": "2014", + "brand": "Olympus", + "rankDxo": 72, + "rankColor": 22.7, + "rankDyn": 12.4, + "rankLln": 873, + "rankDxo_ranking": 143, + "rankColor_ranking": 164, + "rankDyn_ranking": 138, + "rankLln_ranking": 132, + "name": "Olympus PEN E-PL7", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2014", + "launchDateGraph": "2014-08-28", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/PEN-E-PL7", + "chapo": " Introduction Specification and FeaturesThe existing PEN line up of three distinct models is designed to appeal to photographers with different levels of expertise, and sitting in between the advanced and beginner levels is the E-PL, or PEN Lite series. The 16-Mpix E-PL7 is the latest re-imagining of the line and heralds a change from the modern rounded body of earlier models to the more traditional lines of the top-of-range PEN E-P series.It’s not just the re-designed body that stands out, the E-PL7 has several advances over the previous E-PL5 and similar E-PL6 models including a shutter", + "linkReview": "https://www.dxomark.com/olympus-pen-lite-e-pl7-sensor-review-solid-perfomer/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PL7/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2014  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "309", + "Battery type": "BLS-50 Lithium-Ion Battery ", + "Battery weight (gr)": "46", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Manual focus\nSingle AF\nContinuous AF\nSingle AF/MF\nAF Tracking ", + "Number of autofocus points": "81 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+ or - 5 EV ", + "Drive modes": "Bracketing\nSelf timer\nSequential shooting\nSingle frame ", + "Buffer size": "20 (RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW(ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/micro-HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVI ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PM2.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PM2.txt new file mode 100644 index 0000000..a85f991 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN E-PM2.txt @@ -0,0 +1,96 @@ +{ + "id": 840, + "price": 599, + "year": "2012", + "brand": "Olympus", + "rankDxo": 72, + "rankColor": 22.7, + "rankDyn": 12.2, + "rankLln": 932, + "rankDxo_ranking": 142, + "rankColor_ranking": 161, + "rankDyn_ranking": 163, + "rankLln_ranking": 118, + "name": "Olympus PEN E-PM2", + "pixelDepth": 16.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 16.11, + "link": "/Cameras/Olympus/PEN-E-PM2", + "chapo": " Introduction The top-flight sensor enabled the E-PM2 to turn in excellent performance on our DxOMark Sensor Scores, delivering the sixth highest Overall Score of all hybrid cameras we’ve tested, at 72.&nbsp; In fact, it scored within the top 10 on all Use Case scores as well, getting a particular boost from its excellent Sports score of 932 ISO, which is higher than many APS-C-based hybrids such as the Sony Alpha NEX-5 and all of the Samsung models. This indicates that the E-PM2 is a good choice for low-light or sports", + "linkReview": "https://www.dxomark.com/olympus-pen-e-pm2-review-entry-level-hybrid-gets-top-of-the-line-sensor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_E-PM2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4640 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "223", + "Battery type": "Li-ion, BLS-5 ", + "Battery weight (gr)": "44", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (S-AF) / Continuous AF (C-AF)/ Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR) ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": " +/- 3 EV in 1/3, 1/2, 1 EV steps selectable ", + "Drive modes": "Single-frame shooting, Sequential shooting, Self-timer ", + "Buffer size": "27 (RAW), Unlimited (JPEG) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW(ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB2.0, micro HDMI, NTSC/PAL ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080/30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVI ", + "Video codec": "MPEG-4AVC/H.264, Motion JPEG ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN EP1.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN EP1.txt new file mode 100644 index 0000000..3036651 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN EP1.txt @@ -0,0 +1,96 @@ +{ + "id": 612, + "price": 1098, + "year": "2009", + "brand": "Olympus", + "rankDxo": 55, + "rankColor": 21.4, + "rankDyn": 10.4, + "rankLln": 536, + "rankDxo_ranking": 277, + "rankColor_ranking": 263, + "rankDyn_ranking": 328, + "rankLln_ranking": 242, + "name": "Olympus PEN EP1", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2009", + "launchDateGraph": "2009-06-16", + "sensorraw": 12.64, + "link": "/Cameras/Olympus/PEN-EP1", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2009  ", + "Indicative price (USD)": "\n 1098  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 4100 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.64  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN EP2.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN EP2.txt new file mode 100644 index 0000000..729fbf9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN EP2.txt @@ -0,0 +1,96 @@ +{ + "id": 631, + "price": 1100, + "year": "2009", + "brand": "Olympus", + "rankDxo": 56, + "rankColor": 21.5, + "rankDyn": 10.4, + "rankLln": 505, + "rankDxo_ranking": 268, + "rankColor_ranking": 249, + "rankDyn_ranking": 324, + "rankLln_ranking": 265, + "name": "Olympus PEN EP2", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Nov. 2009", + "launchDateGraph": "2009-11-05", + "sensorraw": 12.64, + "link": "/Cameras/Olympus/PEN-EP2", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Nov. 2009  ", + "Indicative price (USD)": "\n 1100  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 4100 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.64  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN EP3.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN EP3.txt new file mode 100644 index 0000000..3512a93 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN EP3.txt @@ -0,0 +1,96 @@ +{ + "id": 724, + "price": 1000, + "year": "2011", + "brand": "Olympus", + "rankDxo": 51, + "rankColor": 20.8, + "rankDyn": 10.1, + "rankLln": 536, + "rankDxo_ranking": 301, + "rankColor_ranking": 300, + "rankDyn_ranking": 345, + "rankLln_ranking": 241, + "name": "Olympus PEN EP3", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2011", + "launchDateGraph": "2011-06-30", + "sensorraw": 12.4, + "link": "/Cameras/Olympus/PEN-EP3", + "chapo": " Olympus PEN EP3, a good micro 4/3 sensor already familiar to usTests show that the new Olympus EP3 provides measurements similar to the previous Olympus models. In spite of its good results, we still encountered some old problems:The EP3 achieves a low-light ISO score of only 536, which is significantly lower in comparison with the results of some of the latest APS-C sensors (for example, the Sony NEX C3’s low-light ISO score is 1083). The Olympus PEN EP3 has still the same behavior in low ISO for dynamic range, and its score at minimum ISO does not increase", + "linkReview": "https://www.dxomark.com/olympus-pen-ep3-image-quality-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EP3/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2011  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4080 x 3040  \n ", + "Sensor photo detectors (Mpix) ": "12.4  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion battery BLS-1 ", + "Battery weight (gr)": " ", + "Tropicalization": "0 - 40? (operation) / -20 - 60? (storage), 30 - 90% (operation) / 10 - 90% (storage) ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No  ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "  ", + "View finder diopter": " ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (S-AF) / Continuous AF (C-AF) / Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR)\nC-AF and AF tracking are not available with non-Micro Four Thirds lenses.\nThis is can be set in both recording mode, still and movie, separately. ", + "Number of autofocus points": "35 ", + "Exposure bracketing": " 2, 3, 5frames in 0.3,0.5, 0.7, 1EV steps selectable, 7frames in 0.3, 0.5, 0.7EV steps selectable ", + "Exposure compensation": " + or - 3 EV in 1/3, 1/2, 1 EV steps selectable ", + "Drive modes": "Single-frame shooting, Sequential shooting, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD Memory Card(SDHC, SDXC, UHS-I compatible), Eye-Fi, Class 6 is recommended for Movie shooting ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "3 frames in 2, 4, 6 steps selectable in each A-B/G-M axis ", + "Connectivity": "USB/HDMI/AV ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 60i ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL1.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL1.txt new file mode 100644 index 0000000..9b263d8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL1.txt @@ -0,0 +1,96 @@ +{ + "id": 643, + "price": 599, + "year": "2010", + "brand": "Olympus", + "rankDxo": 54, + "rankColor": 21.5, + "rankDyn": 10.1, + "rankLln": 487, + "rankDxo_ranking": 283, + "rankColor_ranking": 248, + "rankDyn_ranking": 347, + "rankLln_ranking": 273, + "name": "Olympus PEN EPL1", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2010", + "launchDateGraph": "2010-02-03", + "sensorraw": 12.63, + "link": "/Cameras/Olympus/PEN-EPL1", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2010  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "NMOS  ", + "Resolution ": "\n 4096 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.63  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4/3, 3/2, 6/6, 16/9 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/2000 - 60.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": "1.1 ", + "Dust cleaning": "yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "296", + "Battery type": "Lithium-Ion BLS-1 rechargeable ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " Plastic with metal front panel ", + "Mount material": " ", + "View finder type": "electronic ", + "View finder magnification": "1.15 ", + "View finder coverage": "100 ", + "Mirror lockup": "no ", + "View finder diopter": "-3.0 to +1.0 ", + "Monitor type": "LCD ", + "Monitor size": "2.7 ", + "Monitor pixel": "230000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "AutoFocus, Manual ", + "Autofocus modes": " Single AF (S-AF) / Continuous AF (C-AF) / Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR)  ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "3 frames in 0.3, 0.5, 0.7, 1EV steps selectable ", + "Exposure compensation": " ", + "Drive modes": "Single-frame shooting, Sequential shooting, Self-timer ", + "Buffer size": "RAW(10) ", + "Recording medium": "SD/SDHC card ", + "Image format": "RAW, JPEG ", + "White balance bracketing": "3 frames in 2, 4, 6 steps selectable in each A-B/G-M axis. ", + "Connectivity": "USB 2.0/AV/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVI ", + "Video codec": "Motion JPEG ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL2.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL2.txt new file mode 100644 index 0000000..3aab80d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL2.txt @@ -0,0 +1,96 @@ +{ + "id": 687, + "price": 599, + "year": "2011", + "brand": "Olympus", + "rankDxo": 55, + "rankColor": 21.4, + "rankDyn": 10.2, + "rankLln": 573, + "rankDxo_ranking": 275, + "rankColor_ranking": 257, + "rankDyn_ranking": 341, + "rankLln_ranking": 220, + "name": "Olympus PEN EPL2", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2011", + "launchDateGraph": "2011-01-06", + "sensorraw": 12.63, + "link": "/Cameras/Olympus/PEN-EPL2", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2011  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "Live MOS  ", + "Resolution ": "\n 4096 x 3084  \n ", + "Sensor photo detectors (Mpix) ": "12.63  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "200 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BLS-5, 7.2V, 1150mAh ", + "Battery weight (gr)": "44", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " Electronic (optional) VF-2 ", + "View finder magnification": "1.15 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-3.0 to +1.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (S-AF) / Continuous AF (C-AF) / S-AF + MF / AF tracking (C-AF + TR)\nC-AF and AF tracking are not available with non-mFTs lenses. ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "2, 3, 5 frames in 0.3, 0.7, 1EV steps selectable, 7frames in 0.3, 0.5, 0.7EV steps selectable ", + "Exposure compensation": " ", + "Drive modes": "single, continuous, self-timer (12 sec., 2 sec.) ", + "Buffer size": "10 (RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPG, RAW (ORF) ", + "White balance bracketing": "3 frames in 2, 4, 6 steps selectable in each A-B/G-M axis. ", + "Connectivity": "USB 2.0 High Speed, Mini HDMI(HD/Mono or Stereo Sound), VIDEO-OUT(NTSC/PAL selectable; SD/Mono Sound), Accessory port AP2 (works with VF-2, SEMA-1, Macro Arm Light MAL-1 and Communication Unit Olympus PENPAL) ", + "Bluetooth": "PENPAL (extarnal, optional) ", + "3G": " ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL3.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL3.txt new file mode 100644 index 0000000..6f531a8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPL3.txt @@ -0,0 +1,96 @@ +{ + "id": 725, + "price": 460, + "year": "2011", + "brand": "Olympus", + "rankDxo": 52, + "rankColor": 20.9, + "rankDyn": 10.3, + "rankLln": 499, + "rankDxo_ranking": 297, + "rankColor_ranking": 293, + "rankDyn_ranking": 339, + "rankLln_ranking": 266, + "name": "Olympus PEN EPL3", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2011", + "launchDateGraph": "2011-06-30", + "sensorraw": 12.4, + "link": "/Cameras/Olympus/PEN-EPL3", + "chapo": " The E-PL3 is smaller and lighter than the EP3 (in fact, the L stands for “Light”)... and the E-PM1 (M for “Mini”) is much smaller and lighter—a true “pocket” model, depending on the lens attached. As one might anticipate, given their respective differences in size from the PEN EP3, the E-PL3 has more external controls, while the Mini relies more on menu controls for managing settings.Equipped with the same sensor as the PEN EP3, reviewed on dxomark in July, it’s no surprise that the image quality is similar for both models, achieving the same very respectable scores", + "linkReview": "https://www.dxomark.com/olympus-pen-e-pm1-and-pen-e-pl3-more-pocket-sized-additions-to-the-olympus-pen-range/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPL3/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2011  ", + "Indicative price (USD)": "\n 460  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4080 x 3040  \n ", + "Sensor photo detectors (Mpix) ": "12.4  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "5.5  ", + "Live view ": "Yes ", + "Stabilization ": "Optical ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion battery BLS-1 ", + "Battery weight (gr)": " ", + "Tropicalization": " 0 - 40? (operation) / -20 - 60? (storage), 30 - 90% (operation) / 10 - 90% (storage) ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "  ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Single AF (S-AF) / Continuous AF (C-AF) / Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR)\nC-AF and AF tracking are not available with non-Micro Four Thirds lenses.\nThis is can be set in both recording mode, still and movie, separately. ", + "Number of autofocus points": "35 ", + "Exposure bracketing": " 2, 3, 5frames in 0.3, 0.5, 0.7, 1EV steps selectable, 7frames in 0.3, 0.5, 0.7EV steps selectable ", + "Exposure compensation": " ", + "Drive modes": " Single-frame shooting, Sequential shooting, Self-timer ", + "Buffer size": " ", + "Recording medium": " SD/SDHC/SDXC  ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "Yes (3 frames in 2, 4, 6 steps selectable in either blue/amber or magenta/green axis) ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 60fps ", + "Full HD": "Yes ", + "Live autofocus": "yes ", + "Video file format": "AVCHD ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN EPM1.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPM1.txt new file mode 100644 index 0000000..e3bca19 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN EPM1.txt @@ -0,0 +1,96 @@ +{ + "id": 726, + "price": 499, + "year": "2011", + "brand": "Olympus", + "rankDxo": 52, + "rankColor": 21, + "rankDyn": 10.3, + "rankLln": 499, + "rankDxo_ranking": 293, + "rankColor_ranking": 290, + "rankDyn_ranking": 335, + "rankLln_ranking": 267, + "name": "Olympus PEN EPM1", + "pixelDepth": 12.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2011", + "launchDateGraph": "2011-06-30", + "sensorraw": 12.4, + "link": "/Cameras/Olympus/PEN-EPM1", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN_EPM1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2011  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4080 x 3040  \n ", + "Sensor photo detectors (Mpix) ": "12.4  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "5.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": " BLS-1 Li-ion ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "  ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Single AF (S-AF) / Continuous AF (C-AF) / Manual Focus (MF) / S-AF + MF / AF tracking (C-AF + TR)\nC-AF and AF tracking are not available with non-Micro Four Thirds lenses.\nThis is can be set in both recording mode, still and movie, separately. ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "2, 3, 5frames in 0.3, 0.5, 0.7, 1EV steps selectable, 7frames in 0.3, 0.5, 0.7EV steps selectable ", + "Exposure compensation": " ", + "Drive modes": "Single, Sequential, Self-timer (2 or 12 sec) ", + "Buffer size": " ", + "Recording medium": "SD Memory Card(SDHC, SDXC, UHS-I compatible), Eye-Fi, Class 6 is recommended for Movie shooting ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "3 frames, 2, 4 or 6 steps ", + "Connectivity": "USB/Mini HDMI/Video Out/Accessory Port AP2 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "AVCHD Format: Dolby Digital, Motion JPEG Format / Picture with Sound: Wave Format Base (Stereo PCM/16bit, 48kHz), Max Recording Time 9Picture with Sound) 30 sec, Mic / Speaker: Stereo / Mono ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080, 60i ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus PEN-F.txt b/scr/模糊专家系统/scrape/scraped/Olympus PEN-F.txt new file mode 100644 index 0000000..041ed2c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus PEN-F.txt @@ -0,0 +1,96 @@ +{ + "id": 1070, + "price": 1200, + "year": "2016", + "brand": "Olympus", + "rankDxo": 74, + "rankColor": 23.1, + "rankDyn": 12.4, + "rankLln": 894, + "rankDxo_ranking": 123, + "rankColor_ranking": 123, + "rankDyn_ranking": 143, + "rankLln_ranking": 128, + "name": "Olympus PEN-F", + "pixelDepth": 20.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2016", + "launchDateGraph": "2016-01-27", + "sensorraw": 20.3, + "link": "/Cameras/Olympus/PEN-F", + "chapo": " Olympus’s iconic PEN series of 35mm film cameras, launched in the 1960’s, has been given a new lease of life in the digital era with the renowned Japanese manufacturer reviving the stylish and retro design in its PEN series of mirrrorless hybrid cameras.The latest offering in the now well-established PEN range is the new Olympus PEN-F, which scores above the older, but still available, Olympus PEN E-P5, to become the new flagship option in the PEN lineup. With a $1199 body-only price tag, the PEN-F also becomes the most expensive Olympus hybrid camera yet, ahead of the $1099", + "linkReview": "https://www.dxomark.com/olympus-pen-f-sensor-review-style-and-substance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/PEN-F/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2016  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5200 x 3904  \n ", + "Sensor photo detectors (Mpix) ": "20.3  ", + "Sensor size (mm)": "13 x 17.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.99 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "373", + "Battery type": "Li-ion, BLN-1 ", + "Battery weight (gr)": "52", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +2 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continuous AF, Single AF+MF, AF Tracking, Manual focus ", + "Number of autofocus points": "81 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5 EV (1, 1/2, 1/3 steps) ", + "Drive modes": "Single, Continuous, Self-timer 2 or 12 sec ", + "Buffer size": "16 (RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV, AVI ", + "Video codec": "MPEG-4 AVC, H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus SP 565 UZ.txt b/scr/模糊专家系统/scrape/scraped/Olympus SP 565 UZ.txt new file mode 100644 index 0000000..d6bfa94 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus SP 565 UZ.txt @@ -0,0 +1,96 @@ +{ + "id": 467, + "price": 433, + "year": "2008", + "brand": "Olympus", + "rankDxo": 30, + "rankColor": 18.7, + "rankDyn": 10.1, + "rankLln": 68, + "rankDxo_ranking": 352, + "rankColor_ranking": 352, + "rankDyn_ranking": 343, + "rankLln_ranking": 356, + "name": "Olympus SP 565 UZ", + "pixelDepth": 10, + "sensor": "sensor_compact_1over2.3", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2008", + "launchDateGraph": "2008-08-25", + "sensorraw": 10.05, + "link": "/Cameras/Olympus/SP-565-UZ", + "chapo": " To avoid publishing measurements which could be unfairly improved by noise reduction processing on RAW, we check every camera’s autocorrelation function for each ISO and on the whole sensor dynamic (for further information, see the dxomark Insight, “Half-Cooked Raw”)The Olympus SP 565 UZ generates unprocessed images from ISO 60 to ISO 400, per Figure 1 below. The autocorrelation function shows a single peak, which denotes white noise onlyFigure 1. 3D view of the autocorrelation function at ISO 100.Surprisingly, the autocorrelation function of the green channel at ISO 800 shows a wider base (Figure 2), which means noise reduction", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-olympus-sp-565-uz/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SP_565_UZ/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2008  ", + "Indicative price (USD)": "\n 433  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3664 x 2742  \n ", + "Sensor photo detectors (Mpix) ": "10.05  ", + "Sensor size (mm)": "5 x 6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "5.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "64 - 1600 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 1  ", + "Frame rate (fps)": "1.2  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": "1 ", + "Dust cleaning": "no ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus SP 570 UZ.txt b/scr/模糊专家系统/scrape/scraped/Olympus SP 570 UZ.txt new file mode 100644 index 0000000..883b3d7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus SP 570 UZ.txt @@ -0,0 +1,96 @@ +{ + "id": 417, + "price": 520, + "year": "2008", + "brand": "Olympus", + "rankDxo": 28, + "rankColor": 18.4, + "rankDyn": 10, + "rankLln": 72, + "rankDxo_ranking": 355, + "rankColor_ranking": 356, + "rankDyn_ranking": 350, + "rankLln_ranking": 353, + "name": "Olympus SP 570 UZ", + "pixelDepth": 10, + "sensor": "sensor_compact_1over2.3", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-22", + "sensorraw": 10.05, + "link": "/Cameras/Olympus/SP-570-UZ", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SP_570_UZ/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 520  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3664 x 2742  \n ", + "Sensor photo detectors (Mpix) ": "10.05  ", + "Sensor size (mm)": "5 x 6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "5.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "64 - 6400 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 4  ", + "Frame rate (fps)": "1.2  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": "1 ", + "Dust cleaning": "no ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus Stylus1.txt b/scr/模糊专家系统/scrape/scraped/Olympus Stylus1.txt new file mode 100644 index 0000000..8eac6ae --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus Stylus1.txt @@ -0,0 +1,96 @@ +{ + "id": 923, + "price": 699, + "year": "2013", + "brand": "Olympus", + "rankDxo": 51, + "rankColor": 20.7, + "rankDyn": 11.6, + "rankLln": 179, + "rankDxo_ranking": 304, + "rankColor_ranking": 303, + "rankDyn_ranking": 204, + "rankLln_ranking": 320, + "name": "Olympus Stylus1", + "pixelDepth": 12, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-29", + "sensorraw": 11.97, + "link": "/Cameras/Olympus/Stylus1", + "chapo": " Introduction Like other camera makers Olympus are concentrating on high-end models to distinguish them from the more capable camera phones. Viewed from the front, top and rear this new compact camera even resembles the firm’s popular OM-D E-M5 mirrorless model. It doesn’t have interchangeable lenses but it features an 6-64mm (28-300mm equivalent) f2.8 constant aperture zoom lens, which is longer than most rivals in this category while still being regarded a high-speed lens even if it’s slower at the shorter end.Like other models aimed at enthusiasts it has a 12-Mpix 1/1.7” type (5.6 x 7.4mm) BSI", + "linkReview": "https://www.dxomark.com/olympus-stylus-1-sensor-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Stylus1/vignette3.png", + "Type": "High-end compact ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 2992  \n ", + "Sensor photo detectors (Mpix) ": "11.97  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.66 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 60.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "BLS-5 lithium-ion ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Magnesium alloy ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "1.15 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor), Multi-area, Center, Tracking, Single, Continuous, Face Detection, Live View, MF ", + "Number of autofocus points": "25 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Sequential, Bracketing, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC card ", + "Image format": "JPEG,RAW ", + "White balance bracketing": "Yes ", + "Connectivity": "USB,HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus XZ-2 iHS.txt b/scr/模糊专家系统/scrape/scraped/Olympus XZ-2 iHS.txt new file mode 100644 index 0000000..aec201b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus XZ-2 iHS.txt @@ -0,0 +1,96 @@ +{ + "id": 841, + "price": 549, + "year": "2012", + "brand": "Olympus", + "rankDxo": 49, + "rankColor": 20.4, + "rankDyn": 11.3, + "rankLln": 216, + "rankDxo_ranking": 313, + "rankColor_ranking": 311, + "rankDyn_ranking": 239, + "rankLln_ranking": 307, + "name": "Olympus XZ-2 iHS", + "pixelDepth": 12, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 11.9, + "link": "/Cameras/Olympus/XZ-2-iHS", + "chapo": " Introduction High-end enthusiast orientated digital compact cameras like this one promise high-quality imagery in a very small form factor. The Olympus XZ-2 iHS measures just 113 x 65.4 x 48mm (4.4 x 2.6 x 1.9") and weighs 346g (12.20 oz&nbsp;) but packs a 12Mpix 1/1.7-inch type (7.44x5.58mm) backside illuminated (BSI) CMOS sensor.This is attached to a stabilized platform, much like the firm’s 4:3 cameras and features a 6-24mm f/1.8-2.5 (28-112mm equivalent in 35mm terms) iZuiko-Digital branded zoom lens.One nice control feature of the XZ-2 is the Hybrid control ring surrounding the lens, it can be used", + "linkReview": "https://www.dxomark.com/olympus-stylus-xz-2-ihs-review-promising-point-and-shoot-or-prospective-pro-level-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/XZ-2_iHS/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 549  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3984 x 2986  \n ", + "Sensor photo detectors (Mpix) ": "11.9  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.67 ", + "Aspect Ratio": " 4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 60.0  ", + "Frame rate (fps)": "2.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": "346", + "Battery type": " Li-Ion Li-90B, 3.6 V, 1270 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed plastic ", + "Mount material": " ", + "View finder type": " Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " \n Contrast Detect (sensor)\n Tracking\n Single\n Face Detection\n Live View\n ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "2 frames at 1/3 EV, 1/2 EV, 1 EV steps ", + "Exposure compensation": " +/- 3 EV (at 1/3 EV steps) ", + "Drive modes": " Single-frame shooting\n Sequential shooting\n High-speed shooting\n BKT\n Self-timer\n ", + "Buffer size": " ", + "Recording medium": " SD/SDHC/SDXC, Storage included 55 MB ", + "Image format": "\n RAW (12-bit lossless compression)\n JPEG\n RAW+JPEG\n ", + "White balance bracketing": "Yes (-/+ 7 steps in A-B/G-M axis) ", + "Connectivity": "USB: USB 2.0 (480 Mbit/sec)\nHDMI: Yes (Mini HDMI type-D)\nWireless: EyeFi\nRemote control: Yes (Optional RM-UC1) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": " ", + "Live autofocus": "Yes ", + "Video file format": " MPEG-4 ", + "Video codec": " H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Olympus XZ1.txt b/scr/模糊专家系统/scrape/scraped/Olympus XZ1.txt new file mode 100644 index 0000000..fa5adb2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Olympus XZ1.txt @@ -0,0 +1,96 @@ +{ + "id": 688, + "price": 494, + "year": "2011", + "brand": "Olympus", + "rankDxo": 34, + "rankColor": 18.8, + "rankDyn": 10.4, + "rankLln": 117, + "rankDxo_ranking": 350, + "rankColor_ranking": 351, + "rankDyn_ranking": 329, + "rankLln_ranking": 345, + "name": "Olympus XZ1", + "pixelDepth": 10, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jan. 2011", + "launchDateGraph": "2011-01-06", + "sensorraw": 10.16, + "link": "/Cameras/Olympus/XZ1", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/XZ1/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jan. 2011  ", + "Indicative price (USD)": "\n 494  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3680 x 2760  \n ", + "Sensor photo detectors (Mpix) ": "10.16  ", + "Sensor size (mm)": "5.8 x 7.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.41 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 60.0  ", + "Frame rate (fps)": "2.0  ", + "Live view ": "Yes ", + "Stabilization ": "yes ", + "Firmware": "1.2 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "275", + "Battery type": " Li-ion, Li-50B, 3.7V, 925 mAh ", + "Battery weight (gr)": "13.6", + "Tropicalization": " ", + "Camera material": "mixed plastic ", + "Mount material": " ", + "View finder type": "electronic VF-2 ", + "View finder magnification": "1.15 ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "-3 to +1 ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF, Manual Focus (MF), Macro mode, SuperMacro mode, AF tracking (TR) ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": " +/- 2 EV in 1/3EV steps ", + "Drive modes": "Single-frame shooting, Sequential shooting, High-speed Sequential shooting1,High-speed Sequential shooting2,Self-timer ", + "Buffer size": "8 ", + "Recording medium": "SD Memory Card(SDHC/SDXC compatible) ~64GB ", + "Image format": " RAW (12-bit lossless compression), JPEG, RAW+JPEG ", + "White balance bracketing": " Yes (3 frames in 2, 4, 6 steps selectable in each A-B/G-M axis.) ", + "Connectivity": "USB 2.0 (480Mbit/sec)\nMini HDMI type-D\nOptional RM-UC1 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes, SEMA-1 Microphone Adapter Set  ", + "Histogram": "Yes ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic DMC FZ28.txt b/scr/模糊专家系统/scrape/scraped/Panasonic DMC FZ28.txt new file mode 100644 index 0000000..0bb09f7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic DMC FZ28.txt @@ -0,0 +1,96 @@ +{ + "id": 256, + "price": 426, + "year": "2008", + "brand": "Panasonic", + "rankDxo": 27, + "rankColor": 17.9, + "rankDyn": 10.1, + "rankLln": 79, + "rankDxo_ranking": 356, + "rankColor_ranking": 357, + "rankDyn_ranking": 348, + "rankLln_ranking": 352, + "name": "Panasonic DMC FZ28", + "pixelDepth": 10.1, + "sensor": "", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jul. 2008", + "launchDateGraph": "2008-07-21", + "sensorraw": 10.1, + "link": "/Cameras/Panasonic/DMC-FZ28", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/DMC_FZ28/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jul. 2008  ", + "Indicative price (USD)": "\n 426  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3668 x 2754  \n ", + "Sensor photo detectors (Mpix) ": "10.1  ", + "Sensor size (mm)": "5 x 6 ", + "Color filter array": "N/A ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "6 ", + "Aspect Ratio": " 4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 60  ", + "Frame rate (fps)": "N/A  ", + "Live view ": "yes ", + "Stabilization ": "N/A ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-FZ150.txt b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-FZ150.txt new file mode 100644 index 0000000..011f3bd --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-FZ150.txt @@ -0,0 +1,96 @@ +{ + "id": 738, + "price": 630, + "year": "2011", + "brand": "Panasonic", + "rankDxo": 40, + "rankColor": 19.4, + "rankDyn": 10.9, + "rankLln": 132, + "rankDxo_ranking": 335, + "rankColor_ranking": 334, + "rankDyn_ranking": 282, + "rankLln_ranking": 339, + "name": "Panasonic LUMIX DMC-FZ150", + "pixelDepth": 12.1, + "sensor": "", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2011", + "launchDateGraph": "2011-08-26", + "sensorraw": 12.11, + "link": "/Cameras/Panasonic/LUMIX-DMC-FZ150", + "chapo": " DxOMark testsWhen we put the FZ150’s DxOMark results under the microscope, we see that in good lighting conditions (low ISO) the FZ150 provides good-quality images in terms of color and dynamic range.The dynamic range (10.9 ev) will allow you to shoot high-contrast photos that keep the details in highlights and shadows (such as in landscape photos, for example).Color depth is also satisfactory (19.4).(Note that these results are inferior to scores obtained by larger sensors, of course.)But the FZ150 shows its limitations in low light, or when shooting sports or other action photos: the image quality diminishes as", + "linkReview": "https://www.dxomark.com/review-of-the-panasonic-dmc-fz150/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ150/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2011  ", + "Indicative price (USD)": "\n 630  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "4.6 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "6 ", + "Aspect Ratio": "4:3, 3:2, 16:9, 1:1 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": " ", + "Fastest - Slowest speed (s)": "1/2000 - 15.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "  ", + "Weight (gr)": "484", + "Battery type": "Li-ion Battery Pack (7.2V, Minimum: 895 mAh) (Included) ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "electronic ", + "View finder magnification": " ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Normal / AF Macro / MF (side lever and cursor key button) / Quick AF On / Off (On in Intelligent Auto), Continuous AF On / Off, Focus Button, AF/MF Switchable Button, AF/AE Lock Button, One Shot AF, AF Area Select, AF Tracking ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " +/- 1/3 EV - 1 EV step, 3 frames ", + "Exposure compensation": " 1/3 EV step, -3 - +3 EV ", + "Drive modes": " ", + "Buffer size": "12.0 ", + "Recording medium": " Built-in Memory, SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": " Still Image: RAW, JPEG (DCF / Exif 2.3)\n3D Image: MPO ", + "White balance bracketing": "No ", + "Connectivity": " mini HDMI, AV Output, USB2.0 High Speed ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1,920 x 1,080 ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4, Quick Time Motion JPEG (on High-speed Video) ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-FZ200.txt b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-FZ200.txt new file mode 100644 index 0000000..8413294 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-FZ200.txt @@ -0,0 +1,96 @@ +{ + "id": 818, + "price": 600, + "year": "2012", + "brand": "Panasonic", + "rankDxo": 37, + "rankColor": 19.1, + "rankDyn": 10.8, + "rankLln": 114, + "rankDxo_ranking": 345, + "rankColor_ranking": 344, + "rankDyn_ranking": 300, + "rankLln_ranking": 346, + "name": "Panasonic LUMIX DMC-FZ200", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over2.3", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jul. 2012", + "launchDateGraph": "2012-07-18", + "sensorraw": 12.11, + "link": "/Cameras/Panasonic/LUMIX-DMC-FZ200", + "chapo": " Introduction Panasonic’s flagship high-end compact the Lumix DMC-FZ200 is aimed at serious enthusiasts looking for an all-in-one shooting solution for holidays, day trips and general photography. It features a 24x optical zoom with an equivalent 25-600mm focal range and a fixed f/2.8 maximum aperture. The latter is unusual for a bridge camera and should be of interest if you’re considering one for sports or wildlife photography.Its impressive features don’t stop there either and although continuing to use the 12.1 megapixel High Sensitivity MOS 1/2.3-type sensor found on its predecessor, the Lumix DMC-FZ200 offers a number of", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-fz200-great-specs-for-an-all-in-one-shooting-solution/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-FZ200/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jul. 2012  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "4.6 x 6.1 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.56 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "12, 5.5 or 2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": "537", + "Battery type": "Lithium-Ion ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": " ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Normal / AF Macro / MF, Quick AF On / Off (on in Intelligent Auto), Continuous AF (only for motion picture), Focus Button, AF/AF Macro/MF Switchable, AF/AE Lock Button, Manual Focus, One Shot AF, AF Area Select, AF Tracking ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "1/3 - 3 EV step, Max. + or - 3 EV, 3 frames ", + "Exposure compensation": " 1/3 EV step, +3 EV, -3EV ", + "Drive modes": "Single\n Continuous (12,5.5,2 fps)\n Self Timer 2 sec / 10 sec / 10 sec (3 images) ", + "Buffer size": " ", + "Recording medium": "Storage types SD/SDHC/SDXC, Internal\nStorage included 70 MB internal ", + "Image format": "RAW, JPEG (DCF / Exif 2.3), MPO ", + "White balance bracketing": "No ", + "Connectivity": "USB USB 2.0 (480 Mbit/sec)\nHDMI Yes (mini )\nWireless None\nRemote control Yes (Optional DMWRSL1) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes, External Stereo Microphone DMW-MS1\n\nThe DMC-FZ200 supports the optional Stereo Microphone DMW-MS1, which clearly captures distant sounds in superb quality to make the HD videos taken by the DMC-FZ200 even more lifelike. ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 /60 ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG-4\nAVCHD ", + "Video codec": "H264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-G6.txt b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-G6.txt new file mode 100644 index 0000000..ee5d7d3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-G6.txt @@ -0,0 +1,96 @@ +{ + "id": 875, + "price": 750, + "year": "2013", + "brand": "Panasonic", + "rankDxo": 61, + "rankColor": 21.3, + "rankDyn": 11.5, + "rankLln": 639, + "rankDxo_ranking": 245, + "rankColor_ranking": 264, + "rankDyn_ranking": 218, + "rankLln_ranking": 199, + "name": "Panasonic LUMIX DMC-G6", + "pixelDepth": 16.05, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2013", + "launchDateGraph": "2013-04-24", + "sensorraw": 16.05, + "link": "/Cameras/Panasonic/LUMIX-DMC-G6", + "chapo": " Introduction Panasonic’s mid-range DMC-G6 features a 16-Mpix sensor with a new Venus Engine image processor accounting for an extended sensitivity ranging from ISO 160 to 25,600 (up from ISO 12,800 on the previous DMC-G5 model) and rapid continuous shooting mode of up to 7fps (with AF-tracking at 5fps). Although the EVF remains the same resolution at 1.44 million dot the DMC-G6 adopts a new ultra-responsive OLED variant with proximity sensor and a 3.0-inch, 1.04 million dot,articulated capacitive touch screen at the rear.New features include a gesture-based “Clear Retouch” function – a context aware cloning tool allowing", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-g6-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-G6/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2013  ", + "Indicative price (USD)": "\n 750  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4624 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.05  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 120.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, DMW-BLC12, 7.2V, 1200mAh, 8.7Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1036000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " AFS (Single) / AFF (Flexible) / AFC (Continuous) / MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "3, 5, 7 frames, in 1/3, 2/3 or 1 EV Step, +/-3 EV ", + "Exposure compensation": "1/3 EV Step, +/-5 EV ", + "Drive modes": "Single\nContinious:\n - SH: 40 frames/sec,\n - H: 7.0 frames/sec (with AFS), 5.0 frames/sec (with AFC, In 1-area-focusing AF mode),\n - M: 4.0 frames/sec (with Live View),\n - L: 2.0 frames/sec (with Live View).\nSelf-timer:\n - 10 sec,\n - 3 images / 2 sec / 10  ", + "Buffer size": "Unlimited (JPEG), 9 (RAW+JPEG) ", + "Recording medium": "SD / SDHC / SDXC ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "AV / USB / Wi-Fi / HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": " AVCHD (Audio format: Dolby Digital 2ch)\n MP4 (Audio format AAC 2ch) ", + "Video codec": "MPEG-4 / H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-LF1.txt b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-LF1.txt new file mode 100644 index 0000000..909c3b0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic LUMIX DMC-LF1.txt @@ -0,0 +1,96 @@ +{ + "id": 876, + "price": 500, + "year": "2013", + "brand": "Panasonic", + "rankDxo": 52, + "rankColor": 20.8, + "rankDyn": 11.6, + "rankLln": 211, + "rankDxo_ranking": 294, + "rankColor_ranking": 296, + "rankDyn_ranking": 204, + "rankLln_ranking": 309, + "name": "Panasonic LUMIX DMC-LF1", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Apr. 2013", + "launchDateGraph": "2013-04-24", + "sensorraw": 12.11, + "link": "/Cameras/Panasonic/LUMIX-DMC-LF1", + "chapo": " Introduction Compact camera sales may be slack due to the ubiquity of smart-phones but enthusiast models are still attractive for their manual control, high-image quality and genuinely compact dimensions. At $499 it sits comfortably at the top-end of the market but it features a 12-Mpix back-illuminated 1/1.7-inch type CMOS sensor and a stabilized Leica Vario-Summicron 28-200mm (equivalent) f/2.0-5.9 zoom. Perhaps the main attraction, certainly a unique feature at this level, is the inclusion of a built in 0.2-inch type 200k dot resolution electronic viewfinder. Other features include a 3-0 inch 920K rear LCD, an exposure mode", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-lf1-review-performance-and-pocketability/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/LUMIX_DMC-LF1/vignette3.png", + "Type": "Compact ", + "Announced": "Apr. 2013  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.67 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 250.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion Battery Pack (3.7V, 950 mAh, 3.6 wh) ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Normal / AF Macro / Macro Zoom / MF\nQuick AF On / Off (on in Intelligent Auto), Continuous AF (only for motion picture)\nManual Focus, AF Area Select, AF Tracking ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "1/3 - 1 EV step, Max. +/-1 EV, 3 frames ", + "Exposure compensation": "1/3 EV step, +/-2 EV ", + "Drive modes": "Single,\nContinious,\nHigh-speed continuous (60 fps),\n2 sec / 10 sec self-timer ", + "Buffer size": " ", + "Recording medium": "Built-in Memory,\nSD Memory Card,\nSDHC Memory Card,\nSDXC Memory Card ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "No ", + "Connectivity": "micro HDMI, AV Output, USB (AV / USB Multi), WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD (Audio format: Dolby Digital 2ch)\n MP4 (Audio format AAC 2ch) ", + "Video codec": "MPEG-4 / H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DC-GH5.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DC-GH5.txt new file mode 100644 index 0000000..3d4426e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DC-GH5.txt @@ -0,0 +1,96 @@ +{ + "id": 1149, + "price": 2000, + "year": "2017", + "brand": "Panasonic", + "rankDxo": 77, + "rankColor": 23.9, + "rankDyn": 13, + "rankLln": 807, + "rankDxo_ranking": 102, + "rankColor_ranking": 67, + "rankDyn_ranking": 79, + "rankLln_ranking": 150, + "name": "Panasonic Lumix DC-GH5", + "pixelDepth": 20.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2017", + "launchDateGraph": "2017-01-04", + "sensorraw": 20.33, + "link": "/Cameras/Panasonic/Lumix-DC-GH5", + "chapo": " While the video-centric features grab the headlines — and we’ve not touched the surface with its feature set — with its 20-Mpix MOS sensor and powerful processor, the GH5 has a lot to offer still shooters. The sensor offers a maximum 25,600 ISO and delivers stills at a rate of up to 12 fps (dropping to 9 fps with continuous AF).While the body is relatively large for this type of camera, measuring 5.5 x 3.9 x 3.4" / 138.5 x 98.1 x 87.4 mm, it houses a 3.68M-dot OLED EVF and a 3.2-in 1.62M-dot articulating touchscreen LCD. The body", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dc-gh5-sensor-review-best-performer-in-the-lineup/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DC-GH5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2017  ", + "Indicative price (USD)": "\n 2000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5208 x 3904  \n ", + "Sensor photo detectors (Mpix) ": "20.33  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "645", + "Battery type": "Li-ion, 7.2V, 1860mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.76 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1620000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single), AFF (Flexible), AFC (Continuous), MF ", + "Number of autofocus points": "225 ", + "Exposure bracketing": "3, 5, 7 images in 1/3, 2/3 or 1 EV step, max. +/-3 EV, single/burst ", + "Exposure compensation": "+/- 5 EV, 1/3 EV step ", + "Drive modes": "One Shot AF, Shutter AF, Half Press Release, Quick AF, Continuous AF (during motion picture recording), Eye Sensor AF, AF+MF, MF Assist, Touch MF Assist, Focus Peaking, Touch AF/AE Function, Touch Pad AF, Touch Shutter ", + "Buffer size": "600 (JPEG), 60 (RAW) ", + "Recording medium": "SD, SDHC, SDXC (Compatible with UHS-I / UHS-II UHS Speed Class 3 standard SDHC / SDXC) ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB Type-C/WIFI ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 30 fps  ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, MOV ", + "Video codec": "H.265/HEVC, H.264/MPEG-4 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC FX150.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC FX150.txt new file mode 100644 index 0000000..2879f58 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC FX150.txt @@ -0,0 +1,96 @@ +{ + "id": 482, + "price": 390, + "year": "2008", + "brand": "Panasonic", + "rankDxo": 28, + "rankColor": 18.4, + "rankDyn": 9.6, + "rankLln": 101, + "rankDxo_ranking": 354, + "rankColor_ranking": 355, + "rankDyn_ranking": 357, + "rankLln_ranking": 349, + "name": "Panasonic Lumix DMC FX150", + "pixelDepth": 14.7, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jul. 2008", + "launchDateGraph": "2008-07-21", + "sensorraw": 14.72, + "link": "/Cameras/Panasonic/Lumix-DMC-FX150", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_FX150/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jul. 2008  ", + "Indicative price (USD)": "\n 390  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4429 x 3324  \n ", + "Sensor photo detectors (Mpix) ": "14.72  ", + "Sensor size (mm)": "6 x 7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.68 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "electronical ", + "Fastest - Slowest speed (s)": "1/2000 - 60  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G1.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G1.txt new file mode 100644 index 0000000..b25dc44 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G1.txt @@ -0,0 +1,96 @@ +{ + "id": 450, + "price": 790, + "year": "2008", + "brand": "Panasonic", + "rankDxo": 53, + "rankColor": 21.1, + "rankDyn": 10.3, + "rankLln": 463, + "rankDxo_ranking": 291, + "rankColor_ranking": 281, + "rankDyn_ranking": 330, + "rankLln_ranking": 282, + "name": "Panasonic Lumix DMC G1", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2008", + "launchDateGraph": "2008-09-12", + "sensorraw": 12.12, + "link": "/Cameras/Panasonic/Lumix-DMC-G1", + "chapo": " Panasonic’s aim was to create the smallest body with a removable lens, and with the same image quality as the latest mainstream DSLRs. With an overall DxOMark score of 55.1, the Panasonic DMC G1 by and large achieved its goal, even though its scores for Color Depth (21.1 bits [average for 10 low-end DSLRs = 22.1]), Dynamic Range (10.2 [average = 11.4]) and Low-Light ISO (463 [average = 631]) kept it from attaining a better overall DxOMark ranking.The Panasonic G1’s new Micro Four Thirds system represents an imaging technology between those of compact and DSLR cameras. Unsurprisingly,", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-panasonic-lumix-g1/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2008  ", + "Indicative price (USD)": "\n 790  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4018 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.12  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": "1 ", + "Dust cleaning": "Anti Dust ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G10.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G10.txt new file mode 100644 index 0000000..3f15506 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G10.txt @@ -0,0 +1,96 @@ +{ + "id": 661, + "price": 600, + "year": "2010", + "brand": "Panasonic", + "rankDxo": 52, + "rankColor": 21.2, + "rankDyn": 10.1, + "rankLln": 411, + "rankDxo_ranking": 300, + "rankColor_ranking": 274, + "rankDyn_ranking": 342, + "rankLln_ranking": 291, + "name": "Panasonic Lumix DMC G10", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Mar. 2010", + "launchDateGraph": "2010-03-07", + "sensorraw": 12.1, + "link": "/Cameras/Panasonic/Lumix-DMC-G10", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G10/vignette3.png", + "Type": "Hybrid ", + "Announced": "Mar. 2010  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12.1  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2.08 ", + "Aspect Ratio": "4:3, 3:2, 16:9, 1:1 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60 (bulb max 4min)  ", + "Frame rate (fps)": "3.2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, Panasonic DMW-BLB13PP, 7.2V, 1250 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic (202000 dots) ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS, AFC, Face detection, AF Tracking, 23-area-focusing, 1-area-focusing, Pre AF (Quick AF/Continuous AF) ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Continuous H (3.2 fps), Continuous M (2.6 fps), Continuous L (2 fps), Self-timer (2sec, 10 sec or 10 sec and 3 shots) ", + "Buffer size": "7 (RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPG, RAW (RW2) ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0 High Speed, miniHDMI TypeC, AV (Monaural Type, NTSC) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (Monaural) ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 / 30 fps ", + "Full HD": "No ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "Motion JPEG ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G2.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G2.txt new file mode 100644 index 0000000..2dab7f9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G2.txt @@ -0,0 +1,96 @@ +{ + "id": 669, + "price": 599, + "year": "2010", + "brand": "Panasonic", + "rankDxo": 53, + "rankColor": 21.2, + "rankDyn": 10.3, + "rankLln": 493, + "rankDxo_ranking": 290, + "rankColor_ranking": 278, + "rankDyn_ranking": 334, + "rankLln_ranking": 271, + "name": "Panasonic Lumix DMC G2", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Mar. 2010", + "launchDateGraph": "2010-03-07", + "sensorraw": 12.1, + "link": "/Cameras/Panasonic/Lumix-DMC-G2", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Mar. 2010  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12.1  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3, 3:2, 16:9, 1:1 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 (Taking still pictures during motion picture recording: up to 1/16000sec) - 60 (bulb max 4min; Taking still pictures during motion picture recording: up to 1/30sec)  ", + "Frame rate (fps)": "3.2  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, Panasonic DMW-BLB13PP, 7.2V, 1250 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic (1440000 dots) ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS, AFC, Face detection, AF Tracking, 23-area-focusing, 1-area-focusing, Touch (1area-focusing in Face detection, AF Tracking, Multi-area-focusing, 1area-focusing), Touch shutter, Pre AF (Quick AF/Continuous AF) ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Continuous H (3.2 fps), Continuous M (2.6 fps), Continuous L (2 fps), Self-timer (2sec, 10 sec or 10 sec and 3 shots) ", + "Buffer size": "7 (RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPG, RAW (RW2) ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0 High Speed, miniHDMI TypeC, AV (Monaural Type, NTSC) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (mono, stereo via external mic connecter) ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720/ 60p (sensor output is 30fps) ", + "Full HD": "No ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVCHD Lite ", + "Video codec": "Motion JPEG, AVCHD ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G3.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G3.txt new file mode 100644 index 0000000..678fc4a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G3.txt @@ -0,0 +1,96 @@ +{ + "id": 701, + "price": 599, + "year": "2011", + "brand": "Panasonic", + "rankDxo": 56, + "rankColor": 21, + "rankDyn": 10.6, + "rankLln": 667, + "rankDxo_ranking": 266, + "rankColor_ranking": 286, + "rankDyn_ranking": 319, + "rankLln_ranking": 190, + "name": "Panasonic Lumix DMC G3", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "May. 2011", + "launchDateGraph": "2011-05-12", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-G3", + "chapo": " Panasonic G3: the sensor reviewHere are the full Panasonic Lumic DMC G3 DxOMark results.It is worth noting that Micro Four Thirds sensors are smaller than APS-C or Full Frame sensors. Their smaller size means less light is captured; it will be quite challenging for sensor manufacturers of this format to achieve a score equal or superior to that of APS-C sensors.In spite of this physical challenge, the Panasonic G3 has some impressive improvements to be reported:Low-Light ISO Score: 1/3 Stop Better, High ISO setting: more than 1 Stop better!See here the comparison with the previous G Models:", + "linkReview": "https://www.dxomark.com/the-new-panasonic-lumix-g3-tested-and-available-for-comparison-on-dxomark/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G3/vignette3.png", + "Type": "Hybrid ", + "Announced": "May. 2011  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "Live MOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "336", + "Battery type": "ID-Security Li-ion Battery Pack (7.2V, 1010mAh) ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.4 ", + "View finder coverage": "100 ", + "Mirror lockup": "No mirror ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Face detection / AF Tracking / 23-area-focusing, 1-area-focusing / Pinpoint Touch (1- area-focusing in Face detection / AF Tracking / Multi-area-focusing / 1-area-focusing / Pinpoint ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, SH (20 fps, 4Mpix), H (4 fps), M (3 fps with Live View), L (2 fps with Live View)  ", + "Buffer size": "0 ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RW2 , DPOF compatible MPO (When attaching 3D lens in Micro Four Thirds standard) \n ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis  ", + "Connectivity": "miniHDMI TypeC, USB 2.0 High Speed, NTSC/PAL Video output ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes : Stereo, Wind-cut (Off / Low / Standard / High)\nMicrophone level adjustable (Lv1 / Lv2 / Lv3 / Lv4)  ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": " ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV ", + "Video codec": "AVCHD, QuickTime Motion JPEG  ", + "Video stabilisation": "No (available on specific lens only) " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G5.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G5.txt new file mode 100644 index 0000000..d111c7b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC G5.txt @@ -0,0 +1,96 @@ +{ + "id": 816, + "price": 650, + "year": "2012", + "brand": "Panasonic", + "rankDxo": 61, + "rankColor": 21.4, + "rankDyn": 11.6, + "rankLln": 618, + "rankDxo_ranking": 241, + "rankColor_ranking": 262, + "rankDyn_ranking": 204, + "rankLln_ranking": 205, + "name": "Panasonic Lumix DMC G5", + "pixelDepth": 16.05, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jul. 2012", + "launchDateGraph": "2012-07-18", + "sensorraw": 16.05, + "link": "/Cameras/Panasonic/Lumix-DMC-G5", + "chapo": " Introduction Panasonic made some refreshing changes – new creative features, improved ergonomics, and more filming options – in its latest addition to its highly esteemed Lumix G-series. The G5 also helps Panasonic inch forward in its quest for better and better image quality. Its DxOMark Overall Score of 61 makes it the second highest rated Panasonic sensor, behind the Lumix DMC GH1, in DxOMark’s database.The G5 performed well during DxOMark sensor testing for color depth – capturing a variety of colors and reproducing them richly, with it peaking at 21.4", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-g5-review-new-features-and-a-new-sensor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_G5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jul. 2012  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4624 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.05  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "20, 6, 3.7 or 2  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, Battery Pack, 7.2V 1.200mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +4.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single), AFF (Flexible), AFC (Continuous), MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Continuous (SH: 20 frames/sec (4M), H: 6.0 frames/sec (with AFS), M: 3.7 frames/sec (with Live View), L: 2.0 frames/sec (with Live View)), Self-time (10 sec, 3 images / 2 sec / 10 sec) ", + "Buffer size": "9 (RAW) ", + "Recording medium": "SD / SDHC / SDXC ", + "Image format": "JPEG, RAW (RW2), MPO ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0 High Speed, mini HDMI TypeC, AV (Monaural Type, NTSC / PAL, NTSC only for North America) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD and MP4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF1.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF1.txt new file mode 100644 index 0000000..03fa177 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF1.txt @@ -0,0 +1,96 @@ +{ + "id": 632, + "price": 570, + "year": "2009", + "brand": "Panasonic", + "rankDxo": 54, + "rankColor": 21.2, + "rankDyn": 10.3, + "rankLln": 513, + "rankDxo_ranking": 287, + "rankColor_ranking": 274, + "rankDyn_ranking": 335, + "rankLln_ranking": 261, + "name": "Panasonic Lumix DMC GF1", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2009", + "launchDateGraph": "2009-09-02", + "sensorraw": 12.1, + "link": "/Cameras/Panasonic/Lumix-DMC-GF1", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2009  ", + "Indicative price (USD)": "\n 570  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4018 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.1  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3 or 2  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF2.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF2.txt new file mode 100644 index 0000000..af4b77d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF2.txt @@ -0,0 +1,96 @@ +{ + "id": 684, + "price": 599, + "year": "2010", + "brand": "Panasonic", + "rankDxo": 54, + "rankColor": 21.2, + "rankDyn": 10.3, + "rankLln": 506, + "rankDxo_ranking": 288, + "rankColor_ranking": 277, + "rankDyn_ranking": 333, + "rankLln_ranking": 264, + "name": "Panasonic Lumix DMC GF2", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Nov. 2010", + "launchDateGraph": "2010-11-04", + "sensorraw": 12.33, + "link": "/Cameras/Panasonic/Lumix-DMC-GF2", + "chapo": " Use case scores: GF1 and GF2 are a perfect match.As soon as one sees the use cases scores, the similarities between the two cameras are more than obvious. Portrait and Landscape scores are exactly the same. The Sports score is a bit higher for the GF1, but only by a mere 7 points (out of 500)—which means that the two sensors have the same limitations when the light is weak, despite the possibility for the GF2 user to select ISO 6400. Neither camera is able to rise above the “30dB noise-9EV dynamic range” limit (synonym of good", + "linkReview": "https://www.dxomark.com/panasonic-dmc-gf2-anything-new/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Nov. 2010  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4088 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.33  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "3 or 2  ", + "Live view ": "yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "265", + "Battery type": "ID-Security Li-ion Battery Pack, 7.2V, 1010mAh  ", + "Battery weight (gr)": "45", + "Tropicalization": " ", + "Camera material": "plastic ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS / AFC / MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, continuous drive (3.2, 2.6 or 2 fps), self-timer (2 or 10 sec, 10 sec (3 images)) ", + "Buffer size": "4 ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": "Still Image: JPEG (DCF, Exif 2.3), RAW (RW2), DPOF compatible\nMPO (When attaching 3D lens in Micro Four Thirds System standard).  ", + "White balance bracketing": " Yes (3 frames in either blue/amber or magenta/green axis) ", + "Connectivity": "USB 2.0 High Speed/miniHDMI TypeC ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Stereo, Wind-cut: Off / Low / Standard / High\nMicrophone level adjustable: Lv1 / Lv2 / Lv3 / Lv4 ", + "Histogram": "Yes ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF3.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF3.txt new file mode 100644 index 0000000..4bd1294 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF3.txt @@ -0,0 +1,96 @@ +{ + "id": 763, + "price": 699, + "year": "2011", + "brand": "Panasonic", + "rankDxo": 50, + "rankColor": 20.6, + "rankDyn": 10.1, + "rankLln": 459, + "rankDxo_ranking": 310, + "rankColor_ranking": 306, + "rankDyn_ranking": 343, + "rankLln_ranking": 283, + "name": "Panasonic Lumix DMC GF3", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid ", + "status": "TESTED", + "launchDate": "Jun. 2011", + "launchDateGraph": "2011-06-13", + "sensorraw": 12.11, + "link": "/Cameras/Panasonic/Lumix-DMC-GF3", + "chapo": " Interestingly enough, the Lumix DMC GF3 was announced at the same time as two other cameras targeting the same category of photographer — the Pentax Q and the Olympus PEN EPM1. Let’s turn to the DxOMark database to see how these three cameras compare.Panasonic Lumix DMC GF3 vs Olympus PEN EPM1 vs Pentax QWe liked the GF3’s low-light ISO performance, its dimensions, and its price. This said, we were less enchanted by its ISO range, which we found limited its low-ISO scores in the Portrait and Landscape categories. (Its limited ISO also resulted in lower scores for Dynamic Range.)With", + "linkReview": "https://www.dxomark.com/a-look-at-the-panasonic-lumix-dmc-gf3-and-its-rivals/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF3/vignette3.png", + "Type": " ", + "Announced": "Jun. 2011  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "3.8  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion Battery Pack (7.2V, 940mAh) ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Aluminium / Plastic ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": "  ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": "3 or 5 frames 1/3 or 2/3 steps to + or - 2.0 EV ", + "Exposure compensation": "-3.0 to +3.0 EV ", + "Drive modes": "Single, Continuous H (3.8 fps, no Live View) , Continuous M (2.8 fps, with Live View) , Continuous L (2 fps, with Live View) ", + "Buffer size": " ", + "Recording medium": "SD / SDHC / SDXC ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "3 shots, +/-1 to +/-3 in either blue/amber or magenta/green axis ", + "Connectivity": "USB 2.0 (High Speed)/Video Out (NTSC / PAL)/HDMI (mini HDMI type C)  ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Mono (with Wind Cut: Off/Low/Standard/High), Microphone level adjustable: Lv1/Lv2/Lv3/Lv4 ", + "External micro": " ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 24fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF5.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF5.txt new file mode 100644 index 0000000..de03431 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF5.txt @@ -0,0 +1,96 @@ +{ + "id": 799, + "price": 599, + "year": "2012", + "brand": "Panasonic", + "rankDxo": 50, + "rankColor": 20.5, + "rankDyn": 10, + "rankLln": 573, + "rankDxo_ranking": 309, + "rankColor_ranking": 308, + "rankDyn_ranking": 356, + "rankLln_ranking": 219, + "name": "Panasonic Lumix DMC GF5", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2012", + "launchDateGraph": "2012-04-05", + "sensorraw": 12.11, + "link": "/Cameras/Panasonic/Lumix-DMC-GF5", + "chapo": " Introduction Panasonic Lumix DMC-GF5 previewOptimized 4:3 Live MOS sensorPanasonic is announcing a reworked 12.1-megapixel Live MOS sensor and a revised design so as to optimize the signal-to-noise ratio (SNR). At times hampered by a slightly smaller sensor than those of the Sony NEX or Samsung NX lines, Panasonic’s redesigned 4:3 sensor uses two noise filtering methods,&nbsp;3DNR (3D noise reduction) and MNR (multiprocess noise reduction),&nbsp;and is supposed to offer a lower SNR.At 225 grams, the GF5 weighs the same as its predecessor, the GF3.AutofocusCompacts hybrids have made enormous progress in terms", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-gf5-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2012  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "Ver.0.3 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, Panasonic DMW-BLE9E, 7.2V, 940mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single), AFF (Flexible), AFC (Continuous), MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " ", + "Exposure compensation": "1/3 EV Step, -3EV to +3EV ", + "Drive modes": "Single, Continuous, Self-timer\n ", + "Buffer size": " ", + "Recording medium": "SD / SDHC / SDXC ", + "Image format": "Still Image: JPEG (DCF, Exif 2.3), RAW, MPO (When attaching 3D lens in Micro Four Thirds System standard). ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0 High Speed; mini HDMI TypeC; Video: Auto / 1080i / 480p (576p in PAL system) Audio: Stereo ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Stereo,\nWind-cut: Off / Auto\nFlicker reduction\nMicrophone level adjustable: Lv1 / Lv2 / Lv3 / Lv4 ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD (Audio format: Dolby Digital 2ch);\nMP4 (Audio format AAC 2ch) ", + "Video codec": " ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF6.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF6.txt new file mode 100644 index 0000000..2cf0287 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GF6.txt @@ -0,0 +1,96 @@ +{ + "id": 872, + "price": 680, + "year": "2013", + "brand": "Panasonic", + "rankDxo": 54, + "rankColor": 20.7, + "rankDyn": 10.6, + "rankLln": 622, + "rankDxo_ranking": 285, + "rankColor_ranking": 303, + "rankDyn_ranking": 317, + "rankLln_ranking": 202, + "name": "Panasonic Lumix DMC GF6", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2013", + "launchDateGraph": "2013-04-09", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-GF6", + "chapo": " Introduction At $599 including the 14-42mm f/3.5-5.6 II kit lens, Panasonic’s latest iteration of the entry-level, finder-less Lumix GF features a higher resolution 16-Mpix MFT sensor (up from 12.1MPix for the previous model) with sensitivity up to ISO 25,600. It also boasts a tilting, capacitive touch screen and built-in WiFi with the convenience of NFC (Near Field Communication) technology for simplified connectivity with suitably equipped smart-phones. Panasonic has also returned to a more traditional layout complete with a shooting mode dial on the top plate, yet at the same time the GF6 adds an unusual jog-style", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-gf6-review-is-wifi-and-16-mpix-sensor-enough/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GF6/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2013  ", + "Indicative price (USD)": "\n 680  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "20.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, DMW-BLG10E, 7.2V, 1025mAh, 7.4Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1036800 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single), AFF (Flexible), AFC (Continuous), MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "3, 5 frame, in 1/3 or 2/3 EV Step, +/-4/3 EV ", + "Exposure compensation": "+/-3 EV, 1/3 EV Step ", + "Drive modes": "Single;\nContinious:\n- SH: 20 frames/sec,\n- H: 4.2 frames/sec (with AFS),\n- M: 3.0 frames/sec (with Live View),\n- L: 2.0 frames/sec (with Live View);\nSelf-timer ", + "Buffer size": "7 images (when there are RAW files with the particular speed)\nUnlimited consecutive shooting (when there are no RAW files)\n(depending on memory card size, battery power, picture size, and compression) ", + "Recording medium": "SD, SDHS, SDXC ", + "Image format": "JPEG, RAW (ORF) ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "AV / USB / Wi-Fi / HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "Motion Image: AVCHD (Audio format: Dolby Digital 2ch) / MP4 (Audio format AAC 2ch)\n ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GH1.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GH1.txt new file mode 100644 index 0000000..1924148 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GH1.txt @@ -0,0 +1,96 @@ +{ + "id": 630, + "price": 880, + "year": "2009", + "brand": "Panasonic", + "rankDxo": 64, + "rankColor": 21.6, + "rankDyn": 11.6, + "rankLln": 772, + "rankDxo_ranking": 217, + "rankColor_ranking": 247, + "rankDyn_ranking": 203, + "rankLln_ranking": 164, + "name": "Panasonic Lumix DMC GH1", + "pixelDepth": 12.1, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Mar. 2009", + "launchDateGraph": "2009-03-03", + "sensorraw": 12.12, + "link": "/Cameras/Panasonic/Lumix-DMC-GH1", + "chapo": " DxOMark Sensor analysis clearly shows that the new GH1 sensor is different and actually performance has increased dramatically: a 63.6 DxOMark Sensor score for the GH1, versus 53 for the G1, about a 2/3-stop gain (a 1-stop gain is equivalent to 15 DxOMark Sensor points).Compared to other four-thirds sensors, the Panasonic DMC GH1 is the best performer of those currently evaluated in DxOMark Sensor, especially in terms of dynamic range.The GH1 even outperforms a hypothetical four-thirds sensor cut from a (wider) Canon EOS 7D sensor (with the same pixel size). With its 50% larger sensor surface (corresponding", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-panasonic-lumix-dmc-gh1/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Mar. 2009  ", + "Indicative price (USD)": "\n 880  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4018 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.12  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GH2.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GH2.txt new file mode 100644 index 0000000..1869e19 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GH2.txt @@ -0,0 +1,96 @@ +{ + "id": 677, + "price": 1100, + "year": "2010", + "brand": "Panasonic", + "rankDxo": 60, + "rankColor": 21.2, + "rankDyn": 11.3, + "rankLln": 655, + "rankDxo_ranking": 250, + "rankColor_ranking": 278, + "rankDyn_ranking": 235, + "rankLln_ranking": 197, + "name": "Panasonic Lumix DMC GH2", + "pixelDepth": 16.05, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-21", + "sensorraw": 16, + "link": "/Cameras/Panasonic/Lumix-DMC-GH2", + "chapo": " 18 million pixels on a similar size means a smaller pixel pitch...But on the other hand, it might also not be such an improvement for shooting still pictures especially if resolution is not a priority. 18 megapixels on a 17,3 x 13 mm sensor results in a very small pixel pitch: only 3.6 µm on the GH2. This is really small compared to the 4.3 µm of the GH1 or to the 5 µm of a Sony NEX 5, and might impact image quality.Image quality: no better then the GH1Look at the test results in detail, compared", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-panasonic-lumix-dmc-gh2/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GH2/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 1100  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4760 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3, 3:2, 16:9, 1:1 ", + "ISO latitude ": "160 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 (Taking still pictures during motion picture recording: 1/16000sec) - 60 (Taking still pictures during motion picture recording: 1/30sec; bulb up to approx. 2 minutes)  ", + "Frame rate (fps)": "4.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, Panasonic DMW-BLC12PP, 7.2V, 1200 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic (1530000 dots) ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS, AFC, Face detection, AF Tracking, 23-area-focusing, 1-area-focusing, Touch (1area-focusing in Face detection, AF Tracking, Multi-area-focusing, 1area-focusing), Pre AF (Quick AF/Continuous AF), AF+MF, Touch shutter ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Continuous SH (40 fps, only JPGs), Continuous H (5 fps in JPG, 4.5 fps in RAW+JPG or RAW), Continuous M (3 fps), Continuous L (2 fps), Self-timer (2sec, 10 sec or 10 sec and 3 shots) ", + "Buffer size": "40 (JPG), 7 (RAW), 4-7 (JPG+RAW; number depends on the aspect ratio, the picture\nsize, the setting for the quality) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPG, RAW (RW2), MPO ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0 High Speed, miniHDMI TypeC, AV (Stereo Type, NTSC) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (stereo) ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": " ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVCHD ", + "Video codec": "Motion JPEG, AVCHD ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GX1.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GX1.txt new file mode 100644 index 0000000..80f2dac --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC GX1.txt @@ -0,0 +1,96 @@ +{ + "id": 754, + "price": 699, + "year": "2011", + "brand": "Panasonic", + "rankDxo": 55, + "rankColor": 20.8, + "rankDyn": 10.6, + "rankLln": 703, + "rankDxo_ranking": 270, + "rankColor_ranking": 296, + "rankDyn_ranking": 317, + "rankLln_ranking": 183, + "name": "Panasonic Lumix DMC GX1", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Nov. 2011", + "launchDateGraph": "2011-11-07", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-GX1", + "chapo": " Pros:Good rendering at low ISOEasier to handle, thanks to its larger gripA very nice 3-inch screenA very practical pressure wheel for changing settingsVery compact when used with a 14-42mm pancake lens16Mpix —the smallest pixels available on a micro-four-thirds sensor!Cons:A significant loss of image quality under low-light conditionsNoticeably loud shutter “click”ISO range is still quite limited, particularly for low ISOSensor performanceTaking a closer look at its sensor test results:The color depth score is satisfactory at 20.8, meaning a good range of colors for your images;The dynamic range score of 10.6 is normal for a micro-4/3 camera, meaning that", + "linkReview": "https://www.dxomark.com/panasonic-lumix-gx1-review-the-latest-panasonic-micro-four-thirds-to-the-test/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_GX1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Nov. 2011  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "4.2  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, DMW-BLD10, 7.2V, 1010mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS, AFF, AFC ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "3, 5, 7 frames in 1/3 or 2/3 or 1EV steps ", + "Exposure compensation": "-5.0 to +5.0 EV in 1/3 EV steps ", + "Drive modes": "Single, Continuous SH (20 fps at 4MP), Continuous H (4.2 fps), Continuous M (3 fps with Live view), Continuous L (2 fps with Live view), Self-timer (2 sec; 10 sec or 10 sec 3 images) ", + "Buffer size": "9 (RAW), Unlimited JPEG images with a fast card ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPG, RAW (RW2), MPO ", + "White balance bracketing": "3 shots +/-1 to +/-3 in either blue/amber or magenta/green axis ", + "Connectivity": "USB 2.0 (High Speed), Video Out (NTSC / PAL), HDMI  ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": " ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "H.264 (AVCHD), QuickTime Motion JPEG (MP4) ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC L10.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC L10.txt new file mode 100644 index 0000000..07cd863 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC L10.txt @@ -0,0 +1,96 @@ +{ + "id": 268, + "price": 964, + "year": "2007", + "brand": "Panasonic", + "rankDxo": 55, + "rankColor": 21.3, + "rankDyn": 10.8, + "rankLln": 429, + "rankDxo_ranking": 272, + "rankColor_ranking": 265, + "rankDyn_ranking": 299, + "rankLln_ranking": 287, + "name": "Panasonic Lumix DMC L10", + "pixelDepth": 10.1, + "sensor": "sensor_micro43", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Aug. 2007", + "launchDateGraph": "2007-08-30", + "sensorraw": 10.13, + "link": "/Cameras/Panasonic/Lumix-DMC-L10", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_L10/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2007  ", + "Indicative price (USD)": "\n 964  \n ", + "Sensor type ": "Capteur Live MOS  ", + "Resolution ": "\n 3682 x 2751  \n ", + "Sensor photo detectors (Mpix) ": "10.13  ", + "Sensor size (mm)": "13 x 17 ", + "Color filter array": "N/A ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "2 ", + "Aspect Ratio": " 4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "yes ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Four Thirds  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX10.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX10.txt new file mode 100644 index 0000000..e3f9e47 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX10.txt @@ -0,0 +1,96 @@ +{ + "id": 1117, + "price": 699, + "year": "2016", + "brand": "Panasonic", + "rankDxo": 70, + "rankColor": 22.8, + "rankDyn": 12.5, + "rankLln": 581, + "rankDxo_ranking": 162, + "rankColor_ranking": 145, + "rankDyn_ranking": 120, + "rankLln_ranking": 217, + "name": "Panasonic Lumix DMC LX10", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2016", + "launchDateGraph": "2016-09-19", + "sensorraw": 20.11, + "link": "/Cameras/Panasonic/Lumix-DMC-LX10", + "chapo": " The 1”-type 20-Mpix MOS BSI-type sensor and Venus Engine processor offer a maximum ISO 12,800 and deliver stills at a rate of up to 10 fps (dropping to 6 fps with AF). The sensor also offers 4K (3840x2160) video at 30p and 24p, and includes hybrid 5-axis digital and optical stabilization, albeit for 4K video only (the camera uses the in-lens stabilization for stills).The sensor and lens are also responsible for the camera’s fast autofocus. The LX10 uses Panasonic’s DFD (Depth from Defocus) technology which compares fewer contrast measurements and accesses data about the lens’ specific defocus", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-lx10-sensor-review-high-end-compact-with-4k-video/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX10/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2016  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5488 x 3664  \n ", + "Sensor photo detectors (Mpix) ": "20.11  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion 7.2V, 680mAh, 4.9 Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF / AF Macro / Macro Zoom / AFF (Flexible) / AFC (Continuous) / MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(RW2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD Progressive, AVCHD, MP4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX3.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX3.txt new file mode 100644 index 0000000..01a6356 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX3.txt @@ -0,0 +1,96 @@ +{ + "id": 567, + "price": 450, + "year": "2008", + "brand": "Panasonic", + "rankDxo": 39, + "rankColor": 19.6, + "rankDyn": 10.8, + "rankLln": 94, + "rankDxo_ranking": 341, + "rankColor_ranking": 330, + "rankDyn_ranking": 296, + "rankLln_ranking": 351, + "name": "Panasonic Lumix DMC LX3", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Aug. 2008", + "launchDateGraph": "2008-08-21", + "sensorraw": 10.1, + "link": "/Cameras/Panasonic/Lumix-DMC-LX3", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX3/vignette3.png", + "Type": "High-end compact ", + "Announced": "Aug. 2008  ", + "Indicative price (USD)": "\n 450  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3668 x 2754  \n ", + "Sensor photo detectors (Mpix) ": "10.1  ", + "Sensor size (mm)": "5.9 x 7.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.3 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 3200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 60  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "N/A ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX5.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX5.txt new file mode 100644 index 0000000..58dcbf7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX5.txt @@ -0,0 +1,96 @@ +{ + "id": 683, + "price": 470, + "year": "2010", + "brand": "Panasonic", + "rankDxo": 41, + "rankColor": 19.6, + "rankDyn": 10.8, + "rankLln": 132, + "rankDxo_ranking": 333, + "rankColor_ranking": 331, + "rankDyn_ranking": 302, + "rankLln_ranking": 340, + "name": "Panasonic Lumix DMC LX5", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1over1.7", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jul. 2010", + "launchDateGraph": "2010-07-21", + "sensorraw": 10.1, + "link": "/Cameras/Panasonic/Lumix-DMC-LX5", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX5/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jul. 2010  ", + "Indicative price (USD)": "\n 470  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3648 x 2736  \n ", + "Sensor photo detectors (Mpix) ": "10.1  ", + "Sensor size (mm)": "5.8 x 7.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "4.3 ", + "Aspect Ratio": "1:1, 4:3, 3:2, 16:9  ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Optical ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "N/A  ", + "Weight (gr)": " ", + "Battery type": "Lithium-Ion Battery Pack, 3.6VDC, 1250mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": "N/A ", + "View finder type": " Electronic (optional)  ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": "NA ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor), Single, Live View  ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "-3EV to +3EV (in 1/3EV steps) ", + "Drive modes": "2.5 fps, max 5 images ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC, Internal ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Mono ", + "External micro": "NA ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280x720 / 60fps ", + "Full HD": "No ", + "Live autofocus": "Yes ", + "Video file format": "AVCHDLite  ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX7.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX7.txt new file mode 100644 index 0000000..f693f30 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC LX7.txt @@ -0,0 +1,96 @@ +{ + "id": 817, + "price": 450, + "year": "2012", + "brand": "Panasonic", + "rankDxo": 50, + "rankColor": 20.7, + "rankDyn": 11.7, + "rankLln": 147, + "rankDxo_ranking": 311, + "rankColor_ranking": 301, + "rankDyn_ranking": 201, + "rankLln_ranking": 334, + "name": "Panasonic Lumix DMC LX7", + "pixelDepth": 10.1, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Jul. 2012", + "launchDateGraph": "2012-07-18", + "sensorraw": 9.62, + "link": "/Cameras/Panasonic/Lumix-DMC-LX7", + "chapo": " Introduction The Panasonic Lumix DMC-LX7 was introduced in July, 2012 and includes a number of refinements over its direct predecessor, the DMC-LX5 (there was no LX6, in spite of the rumors circulating of a compact boasting a 1-inch type sensor). Like its rivals in this segment, the LX7 ditched the long-standing CCD sensor for a 10.1-Mpix 1/1.7-inch type MOS type (CMOS based) sensor allowing increased sensitivity up to ISO12800 (with boost) and full HD (1080p) video at 60/50/25fps. At 720p, output is 30/25p but there’s a potentially creative 100fps high-speed option as well.The DMC LX7 can", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-lx7-review-expert-compact-panasonic-is-back-in-competition/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC_LX7/vignette3.png", + "Type": "Compact ", + "Announced": "Jul. 2012  ", + "Indicative price (USD)": "\n 450  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 3792 x 2536  \n ", + "Sensor photo detectors (Mpix) ": "9.62  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "  ", + "Weight (gr)": " ", + "Battery type": "Li-ion Battery Pack (3.6V, Minimum: 1,250 mAh) ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Normal / Macro, Quick AF On / Off (On in Intelligent Auto), Continuous AF On / Off, AF / MF Switchable, Manual Focus (Jog dial), One Shot AF, AF Area Select, AF Tracking ", + "Number of autofocus points": "23 ", + "Exposure bracketing": " ", + "Exposure compensation": "+ or - 3 EV (at 1/3 EV steps). ", + "Drive modes": "Single, Continuous, Self-timer ", + "Buffer size": " ", + "Recording medium": " Built-in Memory, SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG-4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ1000.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ1000.txt new file mode 100644 index 0000000..715e976 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ1000.txt @@ -0,0 +1,96 @@ +{ + "id": 958, + "price": 900, + "year": "2014", + "brand": "Panasonic", + "rankDxo": 64, + "rankColor": 22.1, + "rankDyn": 11.7, + "rankLln": 517, + "rankDxo_ranking": 215, + "rankColor_ranking": 209, + "rankDyn_ranking": 189, + "rankLln_ranking": 259, + "name": "Panasonic Lumix DMC-FZ1000", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2014", + "launchDateGraph": "2014-06-12", + "sensorraw": 20.11, + "link": "/Cameras/Panasonic/Lumix-DMC-FZ1000", + "chapo": " Introduction Specification and FeaturesPanasonic has a long-established range of bridge-style cameras with high-ratio zooms but up to now they’ve all adopted small (1/2.3-in and 1/1.8in) compact camera sensors. This new model, however, is the first from the maker to adopt the physically larger 1-inch type sensor. It’s the same format used by the Nikon 1 system and Sony Cyber-shot DSC RX models, including the recently introduced bridge-style Cyber-shot DSC RX10.Although this high-end ‘all-in-one’ camera is tempting, even with its new lower price of $1,000, the Sony Cyber-shot DSC RX10 is niche-y. It also has a smaller", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-fz1000-sensor-review-ultimate-all-in-one/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ1000/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2014  ", + "Indicative price (USD)": "\n 900  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5488 x 3664  \n ", + "Sensor photo detectors (Mpix) ": "20.11  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "780", + "Battery type": "Li-ion Battery Pack (7.2V, 1200mAh, 8.7 Wh) ", + "Battery weight (gr)": "49", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single) / AFF (Flexible) / AFC (Continuous) / MF/Normal / AF Macro / Macro Zoom, Quick AF On / Off (on in Intelligent Auto), Low Light AF, AF/AE Lock Button, AF Area Select, AF Tracking, Eye Sensor AF, Focus Peaking, One Shot AF (Set the Fn button in ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single-shot\nContinuous\nAE bracket\nSelf-timer\nInterval ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card (Compatible with UHS-I standard) ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "No ", + "Connectivity": "microHDMI, AV Output (PAL / NTSC), USB (AV/USB Multi) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ2000.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ2000.txt new file mode 100644 index 0000000..04beb23 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ2000.txt @@ -0,0 +1,96 @@ +{ + "id": 1116, + "price": 1200, + "year": "2016", + "brand": "Panasonic", + "rankDxo": 70, + "rankColor": 23, + "rankDyn": 12.6, + "rankLln": 538, + "rankDxo_ranking": 157, + "rankColor_ranking": 135, + "rankDyn_ranking": 106, + "rankLln_ranking": 238, + "name": "Panasonic Lumix DMC-FZ2000", + "pixelDepth": 20, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2016", + "launchDateGraph": "2016-09-19", + "sensorraw": 20.11, + "link": "/Cameras/Panasonic/Lumix-DMC-FZ2000", + "chapo": " The camera features Panasonic’s innovative Depth from Defocus (DFD) AF and hybrid 5-axis stabilization (during video capture). It can shoot bursts at a rate of 7 fps (with AF and live view), however, the FZ2000’s video options are arguably more attractive, offering 4K video, both DCI and UHD at 30p and 24p with high bit rates, and a wide range of recording formats. The camera also includes useful video-centric capture tools such as peaking, color bars, and zebra patterns, as well as 10-bit 4:2:2 output over HDMI, as well as mic and headphone jacks. The FZ2000 is", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-fz2000-sensor-review-filmmaker-s-choice/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ2000/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2016  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5488 x 3664  \n ", + "Sensor photo detectors (Mpix) ": "20.11  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, DMW-BLC12, 7.2V, 1200mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.74 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF, AF Macro, Macro Zoom - Each available with AFS (Single), AFF (Flexible), AFC (Continuous) ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "+/-3 (3, 5, 7 images at 1/3 EV, 2/3 EV, 1 EV steps) ", + "Exposure compensation": "+/-5 (at 1/3 EV steps) ", + "Drive modes": "Single, Self-timer (10sec 3 images; 2sec; 10sec), Continuous (SH, H , M, L) ", + "Buffer size": "80 (JPG), 30 (RAW+JPG) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 Micro-B, microHDMI TypeD, WiFi (802.11b/g/n) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, MP4, AVCHD ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ330.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ330.txt new file mode 100644 index 0000000..4a728be --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ330.txt @@ -0,0 +1,96 @@ +{ + "id": 1040, + "price": 600, + "year": "2015", + "brand": "Panasonic", + "rankDxo": 38, + "rankColor": 19.3, + "rankDyn": 11, + "rankLln": 97, + "rankDxo_ranking": 344, + "rankColor_ranking": 338, + "rankDyn_ranking": 279, + "rankLln_ranking": 350, + "name": "Panasonic Lumix DMC-FZ330", + "pixelDepth": 12.1, + "sensor": "sensor_compact_1over2.3", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jul. 2015", + "launchDateGraph": "2015-07-16", + "sensorraw": 12.11, + "link": "/Cameras/Panasonic/Lumix-DMC-FZ330", + "chapo": " Weatherproof all-in-one with a f/2.8-aperture lensThe $498 Panasonic FZ330 is an all-in-one super-zoom bridge camera featuring a 24x optical zoom and 12Mp 1/2.3-type sensor. Upgraded from its predecessor, the FZ200, Panasonic’s latest model now features UHD 4K-video at 24/25fps or FHD 1080p capture at 50fps, together with the ability to capture 8Mp still images from videos.The Leica-branded zoom lens offers a wide-angle through super-telephoto (25-600mm) focal range with a fixed f/2.8 maximum aperture, making it a convenient choice for a range of photographic subjects. The camera/lens body is both splash- and dust-proof for assured use in all", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-fz330-sensor-review-monster-zoom/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ330/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jul. 2015  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.64 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "691", + "Battery type": "Li-ion, 7.2V, 1200mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "3, 5, 7 frames in 1/3, 2/3 or 1 EV Step, \nMax. +/-3 EV ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous, self-timer (2 sec, 10 sec) ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "No ", + "Connectivity": "AV/USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": " ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ70.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ70.txt new file mode 100644 index 0000000..42bff76 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-FZ70.txt @@ -0,0 +1,96 @@ +{ + "id": 897, + "price": 399, + "year": "2013", + "brand": "Panasonic", + "rankDxo": 41, + "rankColor": 19.4, + "rankDyn": 10.8, + "rankLln": 171, + "rankDxo_ranking": 331, + "rankColor_ranking": 335, + "rankDyn_ranking": 292, + "rankLln_ranking": 322, + "name": "Panasonic Lumix DMC-FZ70", + "pixelDepth": 16.1, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Jul. 2013", + "launchDateGraph": "2013-07-18", + "sensorraw": 16.05, + "link": "/Cameras/Panasonic/Lumix-DMC-FZ70", + "chapo": " Introduction Compact ‘super-zoom’ cameras have been offered with optical zooms featuring greater range year-after-year. This new stabilized model from Panasonic, the Lumix DMC-FZ70 has a massive 60x zoom range, the equivalent of a 20mm wide-angle to 1200mm super-telephoto. Physically small sensors from compact cameras are used to keep the models relatively compact, and in this case the FZ70 has a 1/2.3-inch type BSI MOS type with ISO100-3200 (with expansion to ISO 6400) sensitivity and new processor for a 3-shot 9 fps burst.Although the rear 3-inch 460k-dot LCD is fixed and that and the built-in 202k dot", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-fz70-review-ultimate-everyday-point-and-shoot/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-FZ70/vignette3.png", + "Type": "Compact ", + "Announced": "Jul. 2013  ", + "Indicative price (USD)": "\n 399  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4624 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.05  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/2000 - 8.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": "562", + "Battery type": "Li-ion Battery Pack (3.6V, 690 mAh, 2.5 Wh) ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Normal / AF Macro / Macro Zoom / MF, Quick AF On / Off (on in Intelligent Auto), Continuous AF (only for motion picture), AF/AE Lock Button, Manual Focus, One Shot AF, AF Area Select, AF Tracking ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "1/3 - 3 EV step, Max. +/-3 EV, 3 frames ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single;\nContinuous Shooting Mode:\nFull-Resolution Image: 9 frames / sec, Max. 3 images\nwith AF Tracking: 5 frames / sec, 2 frames / sec\nHigh-speed Burst: Approx. 10 frames / sec (recorded in 3M for 4:3, 2.5M for 3:2, 2M for 16:9, 2.5M for 1:1) Flash Bur ", + "Buffer size": " ", + "Recording medium": "Built-in Memory (200 MB), SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB USB 2.0 (480 Mbit/sec)\nHDMI Yes (mini )\nRemote control Yes (Optional DMW-RSL1) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H264,MPEG4 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-G80.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-G80.txt new file mode 100644 index 0000000..aeb2ae3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-G80.txt @@ -0,0 +1,96 @@ +{ + "id": 1118, + "price": 900, + "year": "2016", + "brand": "Panasonic", + "rankDxo": 71, + "rankColor": 22.8, + "rankDyn": 12.5, + "rankLln": 656, + "rankDxo_ranking": 153, + "rankColor_ranking": 143, + "rankDyn_ranking": 116, + "rankLln_ranking": 196, + "name": "Panasonic Lumix DMC-G80", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2016", + "launchDateGraph": "2016-09-19", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-G80", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-G80/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2016  ", + "Indicative price (USD)": "\n 900  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, 7.2V, 1200mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.74 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single), AFF (Flexible), AFC (Continuous) ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "3, 5, 7 images in 1/3, 2/3 or 1 EV step, max. +/-3 EV, single/burst ", + "Exposure compensation": "1/3 EV step +/-5EV (+/-3EV for motion picture) ", + "Drive modes": "Single, Continuous, Self-timer (10sec 3 images, 2sec, 10sec) ", + "Buffer size": "45 (RAW+JPG) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPG, RAW (RW2), MPO ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0 Micro-B, WiFi (802.11b/g/n) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG-4, AVCHD ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GH3.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GH3.txt new file mode 100644 index 0000000..ac8246c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GH3.txt @@ -0,0 +1,96 @@ +{ + "id": 842, + "price": 1300, + "year": "2012", + "brand": "Panasonic", + "rankDxo": 71, + "rankColor": 22.7, + "rankDyn": 12.4, + "rankLln": 812, + "rankDxo_ranking": 148, + "rankColor_ranking": 165, + "rankDyn_ranking": 143, + "rankLln_ranking": 148, + "name": "Panasonic Lumix DMC-GH3", + "pixelDepth": 16.05, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-17", + "sensorraw": 16.05, + "link": "/Cameras/Panasonic/Lumix-DMC-GH3", + "chapo": " Introduction The Panasonic Lumix DMC-GH3 is a small 4:3 camera, weighing in at 544g when fitted with its “default” lens, the Lumix G Vario 14/42mm f3.5-5.6 Aspherical. The 4:3 sensor gives the equivalent focal length for full frame 35mm exactly double. This particular 4:3 sensor is 16 MPix.The GH3 has all that you would expect from a camera aimed at the serious enthusiast, plus a few unusual extras like 3D capture if you buy the interchangeable H-FT012E 12mm 3D lens. Images can be recorded as jpeg or RAW, Single capture or bursts of up to 20", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-gh3-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH3/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 1300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4624 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.05  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "125 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "470", + "Battery type": "Li-ion Battery Pack 7.2V, 1860mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal, plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.67 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +4.0 ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single) / AFF (Flexible) / AFC (Continuous) / MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "3, 5, 7 frames, in 1/3, 2/3 or 1 EV Step, single / burst ", + "Exposure compensation": "1/3 EV Step, + or -5 EV (+ or -3 EV for motion image ", + "Drive modes": "Single, Continuous (6 fps), Self-timer ", + "Buffer size": "18 (RAW+JPEG) ", + "Recording medium": "SD Memory Card, \nSDHC Memory Card,\n SDXC Memory Card\n (Compatible with UHS-I standard SDHC / SDXC Memory Cards) ", + "Image format": " JPEG, RAW (RW2) ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "AV/USB/Wi-Fi/mini HDMI TypeC ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes\n(D3.5mm for external microphone) ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "mov, mpeg ", + "Video codec": "MPEG-4, AVCHD, H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GH4.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GH4.txt new file mode 100644 index 0000000..bdd56ae --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GH4.txt @@ -0,0 +1,96 @@ +{ + "id": 943, + "price": 1700, + "year": "2014", + "brand": "Panasonic", + "rankDxo": 74, + "rankColor": 23.2, + "rankDyn": 12.8, + "rankLln": 791, + "rankDxo_ranking": 122, + "rankColor_ranking": 122, + "rankDyn_ranking": 88, + "rankLln_ranking": 158, + "name": "Panasonic Lumix DMC-GH4", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2014", + "launchDateGraph": "2014-02-07", + "sensorraw": 16.05, + "link": "/Cameras/Panasonic/Lumix-DMC-GH4", + "chapo": " Introduction As the successor to the popular and capable video-oriented Lumix DMC GH3 the new revamped model the GH4 adopts a similar 16-Mpix Live MOS sensor and familiar outer water-and-dust resistant magnesium alloy shell but it has several significant enhancements.Both the EVF and rear swivel touchscreen LCD have been upgraded in resolution - the viewfinder, for example, up 614K dots from 1.7M to 2.36M, while a new more powerful quad-core Venus image processor has been employed to facilitate a new maximum 25,600 ISO setting and continuous shooting in Raw mode up to 12 fps (AF-S), 7", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-gh4-sensor-review-heavyweight-contender/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GH4/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2014  ", + "Indicative price (USD)": "\n 1700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4624 x 3472  \n ", + "Sensor photo detectors (Mpix) ": "16.05  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 60.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "465", + "Battery type": "Li-ion Battery Pack (7.2V, 1860mAh, 14Wh) ", + "Battery weight (gr)": "91", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.67 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1036000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single) / AFF (Flexible) / AFC (Continuous) / MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "3, 5, 7 frames in 1/3, 2/3 or 1 EV Step, Max. +/- 3 EV, single/burst ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Face/Eye Detection / Tracking / 49-Area / Custom Multi / 1-Area / Pinpoint/(Full area touch is available) ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card (Compatible with UHS-I standard SDHC / SDXC Memory Cards) ", + "Image format": "JPEG, RAW(RW2) ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0 High Speed Multi, miniHDMI TypeD, AV ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV (Audio format LPCM), MP4 (Audio format LPCM / AAC 2ch), AVCHD (Audio format: Dolby Digital 2ch) ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GM1.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GM1.txt new file mode 100644 index 0000000..b5839a5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GM1.txt @@ -0,0 +1,96 @@ +{ + "id": 920, + "price": 600, + "year": "2013", + "brand": "Panasonic", + "rankDxo": 66, + "rankColor": 22.3, + "rankDyn": 11.7, + "rankLln": 660, + "rankDxo_ranking": 183, + "rankColor_ranking": 197, + "rankDyn_ranking": 189, + "rankLln_ranking": 195, + "name": "Panasonic Lumix DMC-GM1", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-17", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-GM1", + "chapo": " Introduction Micro four-thirds cameras are by and large already quite small but the GM1 must rate as one of the smallest, and with its new shorter-range 12-32mm f3.5-5.6 pancake-type (retractable) zoom this camera will fit a coat pocket. The body shape is arguably reminiscent of a Leica, at least from the front, sides and top. It even has its own screw-on handgrip with baseplate, as a $100 option.Apart from the small size and low weight of just 204g (7.20 oz) it features a similar 16-Mpix Live MOS type sensor with sensitivity of ISO 200-25,600 as the", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-gm1-review-compact-and-competitive/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "125 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "173", + "Battery type": "Li-ion, 7.2V, 680mAh, 4.9Wh ", + "Battery weight (gr)": "29", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1036000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS, AFF, AFC, MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous, Self-timer ", + "Buffer size": "7 (RAW), Unlimited(JPEG) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW(RW2) ", + "White balance bracketing": "Yes ", + "Connectivity": "microHDMI TypeD, USB 2.0 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4, AVCHD ", + "Video codec": "MPEG-4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GM5.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GM5.txt new file mode 100644 index 0000000..63c472d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GM5.txt @@ -0,0 +1,96 @@ +{ + "id": 979, + "price": 650, + "year": "2014", + "brand": "Panasonic", + "rankDxo": 66, + "rankColor": 22.1, + "rankDyn": 11.7, + "rankLln": 721, + "rankDxo_ranking": 196, + "rankColor_ranking": 215, + "rankDyn_ranking": 201, + "rankLln_ranking": 177, + "name": "Panasonic Lumix DMC-GM5", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2014", + "launchDateGraph": "2014-09-15", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-GM5", + "chapo": " Introduction An overall DxOMark Sensor Score of 66 points positions the Panasonic GM5 in the middle of the road for hybrid cameras featuring an APS-C or FourThirds sensor.In fact it’s a point ahead of Canon EOS M2 with 65 points, despite the Canon option featuring an APS-C sensor that’s physically around 30% bigger than the FourThirds variety preferred by Panasonic. The GM5 still lags behind most Sony hybrids however - which are the class leaders in this category, as well as the latest Samsung mirrorless options boasting an APS-C sized", + "linkReview": "https://www.dxomark.com/panasonic-dmc-gm5-sensor-review-updated-model-with-built-in-electronic-viewfinder-and-hotshoe/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GM5/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2014  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "5.8  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, 7.2V, 680mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single), AFF (Flexible), AFC (Continuous), Face/Eye Detection, Tracking, 23-Area, 1-Area, Pinpoint (Full area touch is available) ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "3, 5, 7 frames in 1/3, 2/3 or 1 EV Step, Max. +/-3 EV, single/burst ", + "Exposure compensation": "+/-5 EV (1/3 EV step) ", + "Drive modes": "Single, Continuous, Self-timer (2 or 10 sec, 10 sec (3 images)) ", + "Buffer size": "39 (JPEG), 7 (RAW) ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card (Compatible with UHS-I standard SDHC / SDXC Memory Cards) ", + "Image format": "JPEG, RAW (RW2), MPO ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB 2.0, microHDMI TypeD, AV (NTSC/PAL), WiFi (IEEE 802.11b/g/n) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, AVCHD ", + "Video codec": "MPEG-4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX7.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX7.txt new file mode 100644 index 0000000..86db20a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX7.txt @@ -0,0 +1,96 @@ +{ + "id": 901, + "price": 999, + "year": "2013", + "brand": "Panasonic", + "rankDxo": 70, + "rankColor": 22.6, + "rankDyn": 12.2, + "rankLln": 718, + "rankDxo_ranking": 167, + "rankColor_ranking": 178, + "rankDyn_ranking": 159, + "rankLln_ranking": 180, + "name": "Panasonic Lumix DMC-GX7", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2013", + "launchDateGraph": "2013-08-01", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-GX7", + "chapo": " Introduction Panasonic's flagship rangefinder style, MFT format Lumix DMC-GX7 is a complete overhaul of the earlier GX1, announced late 2011. The new model adds several notable features over the original including a high-resolution, widescreen format tilting electronic viewfinder with proximity sensor, pull out tilting rear screen and for the first time from the maker, a new in-body stabilization system.&nbsp; As with other models from the firm, the GX7 has promising video capabilities with Full HD 1080p AVCHD clips up to 60 fps, including a 24 fps option.The GX7 is said to include a new 16Mpix Live", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-gx7-review-closing-the-gap-between-aps-c-mirrorless-rivals/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX7/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2013  ", + "Indicative price (USD)": "\n 999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "125 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 60.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": " ", + "Battery type": "Li-ion Battery Pack (7.2V, 1,025mAh) ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.39 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 +3.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single) / AFF (Flexible) / AFC (Continuous) / MF ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "1/3 EV Step, +/- 5 EV ", + "Drive modes": "Silent, Continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card (Compatible with UHS-I standard SDHC / SDXC Memory Cards) ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WiFi/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "Mp4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX8.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX8.txt new file mode 100644 index 0000000..01dd04a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX8.txt @@ -0,0 +1,96 @@ +{ + "id": 1041, + "price": 1200, + "year": "2015", + "brand": "Panasonic", + "rankDxo": 75, + "rankColor": 23.5, + "rankDyn": 12.6, + "rankLln": 806, + "rankDxo_ranking": 114, + "rankColor_ranking": 105, + "rankDyn_ranking": 108, + "rankLln_ranking": 153, + "name": "Panasonic Lumix DMC-GX8", + "pixelDepth": 20.3, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jul. 2015", + "launchDateGraph": "2015-07-16", + "sensorraw": 20.3, + "link": "/Cameras/Panasonic/Lumix-DMC-GX8", + "chapo": " Introduction Along with high-resolution 20Mp (5184 x 3888 pixel) stills, the new sensor can also capture 4K video at 24/25p or full HD movies at 50/25p. Another first for the GX8 is the inclusion of a new Dual I.S (Image Stabilization) system, with mechanisms built into both the camera and the lens to enhance performance. Thanks to its new Dual I.S. system, Panasonic claims up to 3.5 stops of “anti-shake” on the GX8 when using wide-angle focal lengths.The GX8’s weather-sealed construction offers splash- and dust-proof construction to handle difficult shooting environments, and boasts a wide ISO", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-gx8-review-top-ranking-four-thirds-sensor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX8/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jul. 2015  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5200 x 3904  \n ", + "Sensor photo detectors (Mpix) ": "20.3  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "435", + "Battery type": "Li-ion, 7.2V, 1200mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.77 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS (Single), AFF (Flexible), AFC (Continuous), MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous, Self-timer (2sec, 10sec) ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV/USB/WIFI/NFC ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": " ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX80.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX80.txt new file mode 100644 index 0000000..416223d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-GX80.txt @@ -0,0 +1,96 @@ +{ + "id": 1087, + "price": 800, + "year": "2016", + "brand": "Panasonic", + "rankDxo": 71, + "rankColor": 22.9, + "rankDyn": 12.6, + "rankLln": 662, + "rankDxo_ranking": 147, + "rankColor_ranking": 136, + "rankDyn_ranking": 104, + "rankLln_ranking": 194, + "name": "Panasonic Lumix DMC-GX80", + "pixelDepth": 16, + "sensor": "sensor_micro43", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2016", + "launchDateGraph": "2016-04-05", + "sensorraw": 15.96, + "link": "/Cameras/Panasonic/Lumix-DMC-GX80", + "chapo": " The Panasonic GX80 — known as the GX85 in North America and GX7 Mark II in Japan — is a nicely-priced and compact Micro-Four-Thirds (MFT) mirrorless hybrid camera. It features the same 16Mp MFT sensor as its predecessor, the GX7, but with the Optical Low Pass Filter (OLPF) removed, because (in theory) this produces images with greater resolution. Although a lower-resolution option compared to the $798 Panasonic’s 20Mp GX8 (including a 12-32mm kit lens), the GX80/85 looks to be a good value, with both new and borrowed features from the flagship GX8.The GX80/85 boasts a redesigned shutter", + "linkReview": "https://www.dxomark.com/panasonic-lumix-gx80-gx85-sensor-review-diminutive-design/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-GX80/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2016  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3464  \n ", + "Sensor photo detectors (Mpix) ": "15.96  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "40.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Micro 4/3  ", + "Weight (gr)": "383", + "Battery type": "Li-Ion, DMW-BLG-10, 7.2V, 1025mAh, 8.7Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (single), AF-F (flexible), AF-C (continious), MF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5EV ", + "Drive modes": "Single, Burst, 4K Photo, Auto Bracket, Self-Timer ", + "Buffer size": "100 (JPEG), 13 (JPEG + RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "3 exposures in blue/amber axis or in magenta/green axis ", + "Connectivity": "USB/Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840x2160 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4, AVCHD ", + "Video codec": " ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-LX100.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-LX100.txt new file mode 100644 index 0000000..b9825dd --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-LX100.txt @@ -0,0 +1,96 @@ +{ + "id": 981, + "price": 899, + "year": "2014", + "brand": "Panasonic", + "rankDxo": 67, + "rankColor": 22.3, + "rankDyn": 12.5, + "rankLln": 553, + "rankDxo_ranking": 177, + "rankColor_ranking": 196, + "rankDyn_ranking": 126, + "rankLln_ranking": 234, + "name": "Panasonic Lumix DMC-LX100", + "pixelDepth": 12.8, + "sensor": "sensor_micro43", + "type": "compact", + "status": "TESTED", + "launchDate": "Sep. 2014", + "launchDateGraph": "2014-09-15", + "sensorraw": 12.81, + "link": "/Cameras/Panasonic/Lumix-DMC-LX100", + "chapo": " Introduction Specification and FeaturesPanasonic’s range of LX-series compacts have long garnered praise for their build and image quality, but interest in premium compacts has shifted to models featuring larger sensors. So the introduction of the LX100 featuring a Micro-Four-Thirds sensor usually found in the firm’s mirrorless models is somewhat unexpected.While slightly larger than previous LX models, it remains compact and features a collapsible Leica 24-75mm equivalent f1.7-2.8 zoom and a built-in 2,764k-dot EVF, which, curiously, the firm says covers the gamut of Adobe RGB. In addition to the sloping rangefinder top-plate, it has manual mechanical controls,", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-lx100-sensor-review-potent-point-and-shoot/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-LX100/vignette3.png", + "Type": "Compact ", + "Announced": "Sep. 2014  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4128 x 3104  \n ", + "Sensor photo detectors (Mpix) ": "12.81  ", + "Sensor size (mm)": "13 x 17.3 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic / Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "7.2V, 1025mAh, 7.4 Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AFS, AFF, AFC, MF ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC (UHS-I) ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "no ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS100.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS100.txt new file mode 100644 index 0000000..9fdbaad --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS100.txt @@ -0,0 +1,96 @@ +{ + "id": 1064, + "price": 700, + "year": "2016", + "brand": "Panasonic", + "rankDxo": 70, + "rankColor": 22.8, + "rankDyn": 12.5, + "rankLln": 559, + "rankDxo_ranking": 166, + "rankColor_ranking": 148, + "rankDyn_ranking": 123, + "rankLln_ranking": 231, + "name": "Panasonic Lumix DMC-ZS100", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "compact", + "status": "TESTED", + "launchDate": "Jan. 2016", + "launchDateGraph": "2016-01-05", + "sensorraw": 20.11, + "link": "/Cameras/Panasonic/Lumix-DMC-ZS100", + "chapo": " Specifications and featuresAs well as the Leica-branded 10x zoom, the ZS100/TZ100 has 5-axis Hybrid OIS and adopts the maker’s quick-to-focus Depth from Defocus (DFD) AF technology. Along with a 3-inch touchscreen LCD with 1.04 M-dot resolution, there’s a 1.16M-dot electronic viewfinder as well. Continuous shooting at up to an impressive 50 fps is possible with a low-vibration electronic shutter option, falling to a still-respectable 10 fps with the mechanical shutter (6 fps with AF). Video is another of the ZS100/TZ100’s strong points. It has internal recording of UHD 4K clips at 100 Mbps at 25/30p and 24p,", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-zs100-tz100-review-unique-package/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS100/vignette3.png", + "Type": "Compact ", + "Announced": "Jan. 2016  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5488 x 3664  \n ", + "Sensor photo detectors (Mpix) ": "20.11  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.72 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 60.0  ", + "Frame rate (fps)": "50.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "270", + "Battery type": "Li-ion, 7.2V, 1025mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.46 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF / AF Macro / Macro Zoom / AFF (Flexible) / AFC (Continuous) / MF Quick AF, Continuous AF, Eye Sensor AF, Touch AF/AE Function / Touch Shutter, Touch Pad AF, MF Assist, Touch MF Assist, AF+MF, Focus Peaking, One Shot AF, Low Light AF, Starlight AF, AF/A ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "3, 5, 7 frames in 1/3, 2/3 or 1 EV Step, Max. +/-3 EV ", + "Exposure compensation": "1/3 EV step, +/-5 EV ", + "Drive modes": "Single, Continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, AVCHD ", + "Video codec": "H264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS50.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS50.txt new file mode 100644 index 0000000..dceaff5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS50.txt @@ -0,0 +1,96 @@ +{ + "id": 999, + "price": 400, + "year": "2015", + "brand": "Panasonic", + "rankDxo": 44, + "rankColor": 20, + "rankDyn": 11.2, + "rankLln": 138, + "rankDxo_ranking": 328, + "rankColor_ranking": 328, + "rankDyn_ranking": 257, + "rankLln_ranking": 337, + "name": "Panasonic Lumix DMC-ZS50", + "pixelDepth": 12, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Jan. 2015", + "launchDateGraph": "2015-01-05", + "sensorraw": 12.11, + "link": "/Cameras/Panasonic/Lumix-DMC-ZS50", + "chapo": " Introduction The Panasonic Lumix DMC ZS50 (known as the TZ70 in Europe) is a compact-sized camera with a large (30x) zoom range equivalent to a 24-720mm, complete with 5-axis image stabilization and a 12.1-Mpix 1/2.3-inch MOS sensor (down from the 18-Mpix of its DMC-ZS40 predecessor). The rangefinder-style camera also has a high-res 1.2M-dot electronic viewfinder, full manual controls (including a programmable control ring surrounding the lens), a built -n flash, and a fixed 3.0” 1.04M dot LCD to the rear. The ring surrounding the lens offers control over a number of features, including focal length, exposure,", + "linkReview": "https://www.dxomark.com/panasonic-lumix-dmc-zs50-sensor-review-few-pixels-equals-better-dynamics/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS50/vignette3.png", + "Type": "Compact ", + "Announced": "Jan. 2015  ", + "Indicative price (USD)": "\n 400  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3016  \n ", + "Sensor photo detectors (Mpix) ": "12.11  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.65 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 60.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "217", + "Battery type": "Li-ion Battery Pack (3.6V, 1250mAh, 4.5 Wh) ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.46 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor)\nMulti-area\nCenter\nTracking\nSingle\nContinuous\nFace Detection\nLive View ", + "Number of autofocus points": "23 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-2 EV ", + "Drive modes": "Single, continuous, self-timer ", + "Buffer size": " ", + "Recording medium": "SD Memory Card, SDHC Memory Card, SDXC Memory Card ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "No ", + "Connectivity": "AV Output (PAL / NTSC), USB (AV/USB Multi) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 50 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4, AVCHD ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS60.txt b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS60.txt new file mode 100644 index 0000000..cd5040b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Panasonic Lumix DMC-ZS60.txt @@ -0,0 +1,96 @@ +{ + "id": 1063, + "price": 450, + "year": "2016", + "brand": "Panasonic", + "rankDxo": 37, + "rankColor": 19.3, + "rankDyn": 10.6, + "rankLln": 109, + "rankDxo_ranking": 346, + "rankColor_ranking": 339, + "rankDyn_ranking": 314, + "rankLln_ranking": 347, + "name": "Panasonic Lumix DMC-ZS60", + "pixelDepth": 18.1, + "sensor": "sensor_compact_1over2.3", + "type": "compact", + "status": "TESTED", + "launchDate": "Jan. 2016", + "launchDateGraph": "2016-01-05", + "sensorraw": 18.12, + "link": "/Cameras/Panasonic/Lumix-DMC-ZS60", + "chapo": " Lumix ZS60 highlightsEVF and LCD touchscreen4K video30x optical zoom (24-720mm equivalent)Good dynamic range of around 10EV up to ISO 200Good color around 17 bits up to ISO 200 Lumix ZS60 drawbacksSignal-to-noise ratio below 24 dB from ISO 800Low dynamic range and color from ISO 800 Overall image qualityAt base ISO 80, the Lumix ZS60 is capable of some very good image quality with nice color of 19.3 bits and dynamic range of 10.6 EV. The small 1/2.3”-type sensor copes well considering its high 18.1Mp resolution, achieving a Sports low-light ISO score of 109 ISO. Although an overall score of 37", + "linkReview": "https://www.dxomark.com/panasonic-lumix-zs60-sensor-review-compact-travel-zoom-with-4k-video/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Lumix_DMC-ZS60/vignette3.png", + "Type": "Compact ", + "Announced": "Jan. 2016  ", + "Indicative price (USD)": "\n 450  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4912 x 3688  \n ", + "Sensor photo detectors (Mpix) ": "18.12  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.64 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 6400 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/16000 - 4.0  ", + "Frame rate (fps)": "40.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "240", + "Battery type": "Li-ion, 7.2V, 1025mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.46 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1040000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " AF / AF Macro / Macro Zoom / AFF (Flexible) / AFC (Continuous) / MF Quick AF, Continuous AF, Eye Sensor AF, Touch AF/AE Function / Touch Shutter, Touch Pad AF, MF Assist, Touch MF Assist, AF+MF, Focus Peaking, One Shot AF (Set the Fn button in custom men ", + "Number of autofocus points": "49 ", + "Exposure bracketing": "3, 5, 7 frames in 1/3, 2/3 or 1 EV Step, Max. +/-3 EV ", + "Exposure compensation": "1/3 EV step, +/-5 EV ", + "Drive modes": "Silent, Continuous, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (RW2) ", + "White balance bracketing": "No ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, AVCHD ", + "Video codec": "H264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax 645D.txt b/scr/模糊专家系统/scrape/scraped/Pentax 645D.txt new file mode 100644 index 0000000..bec2e85 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax 645D.txt @@ -0,0 +1,96 @@ +{ + "id": 668, + "price": 9400, + "year": "2010", + "brand": "Pentax", + "rankDxo": 82, + "rankColor": 24.6, + "rankDyn": 12.6, + "rankLln": 1262, + "rankDxo_ranking": 55, + "rankColor_ranking": 37, + "rankDyn_ranking": 113, + "rankLln_ranking": 72, + "name": "Pentax 645D", + "pixelDepth": 40, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Mar. 2010", + "launchDateGraph": "2010-03-01", + "sensorraw": 41.22, + "link": "/Cameras/Pentax/645D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/645D/vignette3.png", + "Type": "Professional ", + "Announced": "Mar. 2010  ", + "Indicative price (USD)": "\n 9400  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 7424 x 5552  \n ", + "Sensor photo detectors (Mpix) ": "41.22  ", + "Sensor size (mm)": "33 x 44 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "0.78 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "1.1  ", + "Live view ": "yes ", + "Stabilization ": "N/A ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax 645Z.txt b/scr/模糊专家系统/scrape/scraped/Pentax 645Z.txt new file mode 100644 index 0000000..24f9440 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax 645Z.txt @@ -0,0 +1,96 @@ +{ + "id": 951, + "price": 8499, + "year": "2014", + "brand": "Pentax", + "rankDxo": 101, + "rankColor": 26, + "rankDyn": 14.7, + "rankLln": 4505, + "rankDxo_ranking": 2, + "rankColor_ranking": 7, + "rankDyn_ranking": 4, + "rankLln_ranking": 1, + "name": "Pentax 645Z", + "pixelDepth": 51.4, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Apr. 2014", + "launchDateGraph": "2014-04-15", + "sensorraw": 51.26, + "link": "/Cameras/Pentax/645Z", + "chapo": " The Pentax 645Z medium-format digital SLR offers a 51.4Mp resolution on a 43.8mm x 32.8mm CMOS sensor that’s 1.7 times bigger than full-frame sensors in 35mm DSLRs.Pentax 645Z Specification – Improved performance and more resolutionPentax caused something of a stir back in 2010 with the release of an ‘affordable’ digital medium format SLR in the shape of the Pentax 645D. Nearly four years on, it’s now been updated with the launch of the new Pentax 645Z, featuring a new 51.4Mp CMOS sensor, as opposed to the 40Mp CCD variety used on the 645D. The physical size of", + "linkReview": "https://www.dxomark.com/pentax-645z-preview-pentax-s-affordable-medium-format-digital-slr-gets-an-upgrade/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/645Z/vignette3.png", + "Type": "Professional ", + "Announced": "Apr. 2014  ", + "Indicative price (USD)": "\n 8499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8268 x 6200  \n ", + "Sensor photo detectors (Mpix) ": "51.26  ", + "Sensor size (mm)": "32.8 x 43.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "0.79 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 204800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.21 ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax 645AF2  ", + "Weight (gr)": "1470", + "Battery type": "Li-Ion, D-LI90, 1860 mAh ", + "Battery weight (gr)": "78", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.62 ", + "View finder coverage": "98 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3.5 to +2 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (AF.S), Continuous AF (AF.C), Focus operation customizable ", + "Number of autofocus points": "27 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single Frame, Continuous (H, L), Self timer, Remote control, Multi-exposure, Interval shooting, Interval composite ", + "Buffer size": "30 (JPEG), 10 (RAW) ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, TIFF, RAW(PEF, DNG) ", + "White balance bracketing": " ", + "Connectivity": "USB 3.0 (micro B), external power supply terminal, cable switch terminal, X-sync socket, HDMI output terminal (Type D) , stereo microphone input terminal ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV, AVI ", + "Video codec": "MPEG-4 AVC, H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K 01.txt b/scr/模糊专家系统/scrape/scraped/Pentax K 01.txt new file mode 100644 index 0000000..84e76df --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K 01.txt @@ -0,0 +1,96 @@ +{ + "id": 783, + "price": 899, + "year": "2012", + "brand": "Pentax", + "rankDxo": 79, + "rankColor": 23.7, + "rankDyn": 12.9, + "rankLln": 1135, + "rankDxo_ranking": 85, + "rankColor_ranking": 79, + "rankDyn_ranking": 81, + "rankLln_ranking": 84, + "name": "Pentax K 01", + "pixelDepth": 16.28, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2012", + "launchDateGraph": "2012-02-02", + "sensorraw": 16.15, + "link": "/Cameras/Pentax/K-01", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K_01/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2012  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4936 x 3272  \n ", + "Sensor photo detectors (Mpix) ": "16.15  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": "561", + "Battery type": "Lithium-ion Battery D-LI90, 7.4V, 1500mAh  ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Aluminium alloy and rubber finish ", + "Mount material": "Metal ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast detection AF ", + "Number of autofocus points": " ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3EV (1/2EV step or 1/3EV) ", + "Drive modes": "Single frame, Continuous (Hi, Lo), Self-timer (12sec., 2ssec.),\nRemote Control (0 sec., 3 sec.), Auto Bracketing (3 frames) ", + "Buffer size": " ", + "Recording medium": "SD (Secure Digital), SDHC and SDXC memory cards ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "No ", + "Connectivity": "USB2.0 (high-speed compatible) / AV output terminal, HDMI\noutput terminal, Stereo microphone input terminal, MSC/PTP, NTSC/PAL ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Built-in stereo microphone, External stereo microphone termi\nnal, Recording Sound Level ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "Full HD (1920x1080,16:9,30fps/25fps/24fps) ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG-4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-1.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-1.txt new file mode 100644 index 0000000..6e02d19 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-1.txt @@ -0,0 +1,96 @@ +{ + "id": 1075, + "price": 1800, + "year": "2016", + "brand": "Pentax", + "rankDxo": 96, + "rankColor": 25.4, + "rankDyn": 14.6, + "rankLln": 3280, + "rankDxo_ranking": 8, + "rankColor_ranking": 13, + "rankDyn_ranking": 6, + "rankLln_ranking": 7, + "name": "Pentax K-1", + "pixelDepth": 36.4, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Feb. 2016", + "launchDateGraph": "2016-02-17", + "sensorraw": 36.59, + "link": "/Cameras/Pentax/K-1", + "chapo": " Specifications and featuresWith Pentax’s track record of producing robust DSLRs with interesting and often unique features at competitive prices, enthusiasts have been patiently waiting for the Japanese manufacturer's first full-frame offering. Packing a 36Mp CMOS sensor in a weather-sealed body, the new K-1 certainly looks like it’s been worth the wait. Costing just $1,800 body only, it’s the cheapest 36Mp full-frame DSLR currently available, saving you $100 compared to the $1,900 mirrorless Sony A7R, and around $1000 cheaper than the $2,800 Nikon D810 DSLR. Pentax has also priced the K-1 to challenge its main full-frame competitors, such", + "linkReview": "https://www.dxomark.com/pentax-k-1-sensor-review-full-frame-marvel/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-1/vignette3.png", + "Type": "Professional ", + "Announced": "Feb. 2016  ", + "Indicative price (USD)": "\n 1800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 7392 x 4950  \n ", + "Sensor photo detectors (Mpix) ": "36.59  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 204800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "4.4  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, D-LI90P ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-3.5 to +1.2 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, MF ", + "Number of autofocus points": "33 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV, 1/2EV steps or 1/3EV steps ", + "Drive modes": "Single Frame, Continuous, Self-timer, Remote Control, Bracketing, Mirror- up, Multi-Exposure, Interval Shooting, Interval Composite, Interval Movie Record, Star Stream ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (DNG, PEF) ", + "White balance bracketing": " ", + "Connectivity": "USB/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV ", + "Video codec": "MPEG-4, H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-3 II.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-3 II.txt new file mode 100644 index 0000000..a66094f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-3 II.txt @@ -0,0 +1,96 @@ +{ + "id": 1026, + "price": 1100, + "year": "2015", + "brand": "Pentax", + "rankDxo": 80, + "rankColor": 23.6, + "rankDyn": 13.6, + "rankLln": 1106, + "rankDxo_ranking": 74, + "rankColor_ranking": 90, + "rankDyn_ranking": 38, + "rankLln_ranking": 91, + "name": "Pentax K-3 II", + "pixelDepth": 24.35, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Apr. 2015", + "launchDateGraph": "2015-04-23", + "sensorraw": 24.51, + "link": "/Cameras/Pentax/K-3-II", + "chapo": " Introduction Specifications and FeaturesAnnounced earlier in the year, the K-3 II is the mid-term upgrade to the maker’s top-of-the-line K-3 model which already had impressive specs, including a stabilized 24-Mpix CMOS sensor, 27-point AF system (with 25 of those being horizontal and vertical line-sensitive, cross-type sensors), up to 8.3 fps continuous shooting, and a durable metal body designed for pro use. Although the new model no longer offers a built-in flash, improvements over its predecessor include an upgrade to the stabilized sensor platform.Arguably the most significant upgrade, however, has been the introduction of Pixel Shift technology.", + "linkReview": "https://www.dxomark.com/pentax-k-3-ii-sensor-review-reaching-for-the-stars/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-3_II/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Apr. 2015  ", + "Indicative price (USD)": "\n 1100  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4032  \n ", + "Sensor photo detectors (Mpix) ": "24.51  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "8.3  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, D-Li90, 7.2V, 1860mAh or 6x AA batteries ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.95 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2.5 to +1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF Single (w/ focus lock, focus/shutter priority selectable), AF Continuous (w focus/FPS priority selectable) ", + "Number of autofocus points": "27 ", + "Exposure bracketing": "2, 3, or 5 frames, up to +/- 2 EV in 1/3 or 1/2 steps ", + "Exposure compensation": "+/- 5 EV (1/3 and 1/2 steps) ", + "Drive modes": "Single, Continuous H (Approx 8.3 FPS), Continuous M (Approx 4.5 FPS), Continuous L (Approx 3.0 FPS), Self-Timer (12s, 2s), HDR Capture (3 shots at 1EV, 2EV, or 3EV, 3 blend settings plus Auto, pixel alignment), Multi-exposure, Interval Shooting, Interval  ", + "Buffer size": "60 (JPG), 23 (RAW) ", + "Recording medium": "SD, SDHC, SDXC, EyeFi, Flucard ", + "Image format": "JPEG, RAW (PEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB 3.0, AV out ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MOV, AVI ", + "Video codec": "MPEG-4 AVC/H.264, JPG ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-3.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-3.txt new file mode 100644 index 0000000..b858f25 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-3.txt @@ -0,0 +1,96 @@ +{ + "id": 914, + "price": 1300, + "year": "2013", + "brand": "Pentax", + "rankDxo": 80, + "rankColor": 23.7, + "rankDyn": 13.4, + "rankLln": 1216, + "rankDxo_ranking": 71, + "rankColor_ranking": 88, + "rankDyn_ranking": 50, + "rankLln_ranking": 75, + "name": "Pentax K-3", + "pixelDepth": 24, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-08", + "sensorraw": 24.51, + "link": "/Cameras/Pentax/K-3", + "chapo": " Introduction The Pentax K-3 is the new top-of the range model and replacement to the Pentax K5-II and K5-II S models introduced in 2012. Although this is the first Pentax DSLR to adopt a stabilized 24-Mpix APS-C CMOS sensor it’s likely to be known for its unique user-selectable AA (anti-aliasing) filter feature. This combines the attributes of both the K-5II models in one, allowing the user to control the amount of moiré correction required depending on the intended use.The K-3 achieves this not by using an optical filter as in the past, but by simulating the", + "linkReview": "https://www.dxomark.com/pentax-k-3-review-unshakeable-image-quality/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-3/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 1300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4032  \n ", + "Sensor photo detectors (Mpix) ": "24.51  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "15.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "8.3  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion D-LI90 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.95 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2.5 to +1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1037000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF Single, AF Continuous, Manual ", + "Number of autofocus points": "27 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous shooting (Hi, Med, Lo), Self-timer (2 or 12 sec), Remote control (0 or 3 sec, or continuous), Exposure bracketing, Mirror lockup, HDR capture. ", + "Buffer size": " ", + "Recording medium": "Dual SD/SDHC/SDXC ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-30.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-30.txt new file mode 100644 index 0000000..d86dd4e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-30.txt @@ -0,0 +1,96 @@ +{ + "id": 811, + "price": 470, + "year": "2012", + "brand": "Pentax", + "rankDxo": 79, + "rankColor": 23.7, + "rankDyn": 13, + "rankLln": 1129, + "rankDxo_ranking": 87, + "rankColor_ranking": 83, + "rankDyn_ranking": 79, + "rankLln_ranking": 87, + "name": "Pentax K-30", + "pixelDepth": 16.3, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "May. 2012", + "launchDateGraph": "2012-05-22", + "sensorraw": 16.15, + "link": "/Cameras/Pentax/K-30", + "chapo": " Introduction With a DxOMark Score of 79, the Pentax K-30 takes 23rd place among all cameras tested on DxOMark, tied with such older-generation full-format digital reflex cameras as as the Canon EOS 5D Mark II, the Sony Alpha 900, and the Sony Alpha 850.The K-30 is only one point behind the Nikon D7000, D5100, and D700, and only two points behind the Canon EOS 5D Mark III. Such results are harbingers of image quality of the highest caliber, and corroborate our hypothesis that the K-30 is equipped with a Sony", + "linkReview": "https://www.dxomark.com/pentax-k-30-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-30/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "May. 2012  ", + "Indicative price (USD)": "\n 470  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4936 x 3272  \n ", + "Sensor photo detectors (Mpix) ": "16.15  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, D-LI109 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-2.5 to 1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-A, AF-S, AF-C, Manual ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "up to +/- 2 EV in 1/3 or 1/2 steps ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous (Hi, Lo), Self-Timer (12s, 2s), Remote (0s, 3s, continuous), Auto Bracketing (3 frames, standard, timer, remote) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(PEF) ", + "White balance bracketing": "No ", + "Connectivity": "USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG-4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-5 II.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-5 II.txt new file mode 100644 index 0000000..1e7dea5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-5 II.txt @@ -0,0 +1,96 @@ +{ + "id": 829, + "price": 999, + "year": "2012", + "brand": "Pentax", + "rankDxo": 82, + "rankColor": 23.8, + "rankDyn": 14.1, + "rankLln": 1235, + "rankDxo_ranking": 60, + "rankColor_ranking": 77, + "rankDyn_ranking": 17, + "rankLln_ranking": 74, + "name": "Pentax K-5 II", + "pixelDepth": 16.3, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-11", + "sensorraw": 16.08, + "link": "/Cameras/Pentax/K-5-II", + "chapo": " Introduction With an overall score of 82 the Pentax K-5 II (and its predecessor the K-5) are at the same level as the likes of the Canon EOS 5D MKIII, which scored 81. At the time of writing, it is actually eleventh out of ALL current cameras, only trailing behind offerings from Phase One and Nikon, each costing many times as much.The individual Use Case Scores are equally impressive: Landscape at 14.1EV of dynamic range is the best in class and Sport at 1235 ISO it just pushes the Nikon", + "linkReview": "https://www.dxomark.com/pentax-k5-ii-review-showing-the-competition-how-it-s-done/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-5_II/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 999  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3264  \n ", + "Sensor photo detectors (Mpix) ": "16.08  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": " ", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": " Pentax KAF  ", + "Weight (gr)": "680", + "Battery type": "Lithium-ion Battery D-LI90, 7.4V, 1500mAh  ", + "Battery weight (gr)": "78", + "Tropicalization": "Yes ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-2.5 to 1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single frame, Continuous (Hi, Lo), Self-timer (12s, 2s), Remote Control (immediately, 3 sec., continuous), Auto Bracketing (2, 3 or 5 frames), Auto Bracketing + Self-timer, Auto Bracketing + Remote Control ", + "Buffer size": "30 (JPEG), 20 (RAW) ", + "Recording medium": "SD/SDHC ", + "Image format": "JPEG, RAW(PEF, DNG) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV/USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "Motion JPEG (AVI) ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-5 IIs.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-5 IIs.txt new file mode 100644 index 0000000..88cf853 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-5 IIs.txt @@ -0,0 +1,96 @@ +{ + "id": 830, + "price": 1199, + "year": "2012", + "brand": "Pentax", + "rankDxo": 82, + "rankColor": 23.9, + "rankDyn": 14.1, + "rankLln": 1208, + "rankDxo_ranking": 57, + "rankColor_ranking": 70, + "rankDyn_ranking": 15, + "rankLln_ranking": 76, + "name": "Pentax K-5 IIs", + "pixelDepth": 16.3, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-11", + "sensorraw": 16.39, + "link": "/Cameras/Pentax/K-5-IIs", + "chapo": " Introduction In terms of build and appearance, the Pentax K-5 II and K-5 IIs are identical cameras with the only difference between them being the K-5 IIs has the anti-aliasing filter removed.So why would you want a DSLR with the anti-aliasing filter removed? Well, the answer is simple. As the filter is applied to the whole image it also reduces sharpness in larger details where moiré wouldn’t appear, so with the filter gone greater overall detail can be resolved. Of benefit to photographers desiring superior resolution for highly detailed images and with the only other DSLR", + "linkReview": "https://www.dxomark.com/pentax-k-5-iis-maintains-the-excellence-of-its-sister-model-the-k-5-ii/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-5_IIs/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 1199  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4992 x 3284  \n ", + "Sensor photo detectors (Mpix) ": "16.39  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": "680", + "Battery type": "Lithium-ion Battery D-LI90, 7.4V, 1500mAh  ", + "Battery weight (gr)": "78", + "Tropicalization": "Yes ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-2.5 to 1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single frame, Continuous (Hi, Lo), Self-timer (12s, 2s), Remote Control (immediately, 3 sec., continuous), Auto Bracketing (2, 3 or 5 frames), Auto Bracketing + Self-timer, Auto Bracketing + Remote Control ", + "Buffer size": "30 (JPEG), 20 (RAW) ", + "Recording medium": "SD/SDHC ", + "Image format": "JPEG, RAW(PEF, DNG) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV/USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "Motion JPEG (AVI) ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-50.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-50.txt new file mode 100644 index 0000000..f6ea108 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-50.txt @@ -0,0 +1,96 @@ +{ + "id": 890, + "price": 599, + "year": "2013", + "brand": "Pentax", + "rankDxo": 79, + "rankColor": 23.7, + "rankDyn": 13, + "rankLln": 1120, + "rankDxo_ranking": 86, + "rankColor_ranking": 87, + "rankDyn_ranking": 72, + "rankLln_ranking": 89, + "name": "Pentax K-50", + "pixelDepth": 16.28, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Jun. 2013", + "launchDateGraph": "2013-06-12", + "sensorraw": 16.15, + "link": "/Cameras/Pentax/K-50", + "chapo": " Introduction Pentax has replaced last year’s mid-range K-30 with a more conventionally styled model. As with its predecessor, the new weather-sealed K-50 has a stabilized 16-MPix CMOS sensor with improved image processing and sensor sensitivity of up to ISO 51,200. At $699 body only or $777 complete with 18-55mm f/3.5-5.6 kit lens, the K-50 has a number of promising features for enthusiasts and semi-professionals, which include continuous shooting up to a maximum of 6fps, a glass pentaprism with 100-percent viewfinder coverage, stainless steel chassis and support for AA type batteries (using an optionally available adaptor).With users", + "linkReview": "https://www.dxomark.com/pentax-k-50-review-attractive-performance-but-is-there-any-improvement-on-earlier-iterations/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-50/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Jun. 2013  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4936 x 3272  \n ", + "Sensor photo detectors (Mpix) ": "16.15  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": "590", + "Battery type": "Li-ion, D-LI109, 7.4V, 1050mAh ", + "Battery weight (gr)": "48", + "Tropicalization": "Yes ", + "Camera material": "Metal/Plastic ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-2.5 to +1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "\n Contrast Detect (sensor)\n Phase Detect\n Multi-area\n Center\n Tracking\n Single\n Continuous\n Face Detection\n Live View\n ", + "Number of autofocus points": "11 ", + "Exposure bracketing": " +/-3 (3 frames at 1 EV steps) ", + "Exposure compensation": "+/-5 (at 1/3 EV, 1/2 EV steps) ", + "Drive modes": "\n Single\n Continuous (Hi, Lo)\n Self-Timer (12s, 2s)\n Remote (0s, 3s, continuous)\n Auto Bracketing (3 frames, standard, timer, remote)\n ", + "Buffer size": "30 (JPEG), 8 (RAW) ", + "Recording medium": " SD/SDHC/SDXC ", + "Image format": "\n RAW (DNG)\n JPEG (EXIF 2.3)\n DCF 2.0 compliant\n DPOF\n PIM III\n ", + "White balance bracketing": " No ", + "Connectivity": "USB USB 2.0 (480 Mbit/sec)\nHDMI No\nRemote control Yes (optional, wired or wireless) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 /30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG-4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-500.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-500.txt new file mode 100644 index 0000000..2750e45 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-500.txt @@ -0,0 +1,96 @@ +{ + "id": 891, + "price": 600, + "year": "2013", + "brand": "Pentax", + "rankDxo": 79, + "rankColor": 23.7, + "rankDyn": 13.1, + "rankLln": 1087, + "rankDxo_ranking": 88, + "rankColor_ranking": 82, + "rankDyn_ranking": 71, + "rankLln_ranking": 93, + "name": "Pentax K-500", + "pixelDepth": 16.28, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jun. 2013", + "launchDateGraph": "2013-06-12", + "sensorraw": 16.15, + "link": "/Cameras/Pentax/K-500", + "chapo": " Introduction At $499 the Pentax K-500 is a slightly stripped down version of the K-50, adopting the same stabilized 16MpIx resolution CMOS sensor and body of its sibling, yet lacking the weather-resistant construction, leveling option and lithium ion battery. While the K-500 is supplied with AA batteries instead (in the US only), opting for this model over the K-50 will save $200. While the lithium ion battery and charger can be bought separately in the US it’s supplied as standard equipment in other markets (in place of the AA batteries).In nearly every other respect the two", + "linkReview": "https://www.dxomark.com/pentax-k-500-review-pared-down-specification-pared-down-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-500/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2013  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4936 x 3272  \n ", + "Sensor photo detectors (Mpix) ": "16.15  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": " 3:2 ", + "ISO latitude ": "100 - 51600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": "586", + "Battery type": "Li-ion, D-LI109, 7.4V, 1050mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal/Plastic ", + "Mount material": "Metal ", + "View finder type": "Optical ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": "  ", + "View finder diopter": "-2.5 to +1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "\n Contrast Detect (sensor)\n Phase Detect\n Multi-area\n Center\n Tracking\n Single\n Continuous\n Face Detection\n Live View\n ", + "Number of autofocus points": "11 ", + "Exposure bracketing": " +/-3 (3 frames at 1 EV steps) ", + "Exposure compensation": "+/-5 (at 1/3 EV, 1/2 EV steps) ", + "Drive modes": "\n Single\n Continuous (Hi, Lo)\n Self-Timer (12s, 2s)\n Remote (0s, 3s, continuous)\n Auto Bracketing (3 frames, standard, timer, remote)\n ", + "Buffer size": " 30 (JPEG), 8 (RAW) ", + "Recording medium": " SD/SDHC/SDXC ", + "Image format": "\n RAW (DNG)\n JPEG (EXIF 2.3)\n DCF 2.0 compliant\n DPOF\n PIM III\n ", + "White balance bracketing": " No ", + "Connectivity": "USB USB 2.0 (480 Mbit/sec)\nHDMI No\nRemote control Yes (optional, wired or wireless) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 /30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG-4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K-S1.txt b/scr/模糊专家系统/scrape/scraped/Pentax K-S1.txt new file mode 100644 index 0000000..eb379ef --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K-S1.txt @@ -0,0 +1,96 @@ +{ + "id": 971, + "price": 749, + "year": "2014", + "brand": "Pentax", + "rankDxo": 78, + "rankColor": 23.5, + "rankDyn": 13, + "rankLln": 1061, + "rankDxo_ranking": 101, + "rankColor_ranking": 101, + "rankDyn_ranking": 76, + "rankLln_ranking": 102, + "name": "Pentax K-S1", + "pixelDepth": 20.12, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Aug. 2014", + "launchDateGraph": "2014-08-27", + "sensorraw": 20.17, + "link": "/Cameras/Pentax/K-S1", + "chapo": " The first DSLR to feature flashing LED lights in the handgrip the new Pentax K-S1 also boasts a back-lit D-pad and mode dial on the rear for more intuitive control.Pentax K-S1 Specification: 20.1Mp APS-C Sensor and Anti Aliasing filter controlWith Pentax yet to dip its toe into the full frame DSLR pond the new K-S1 is another APS-C sensor offering that lines up alongside existing models such as the K-3, K-5 II and K-50. The Pentax K-S1 features a newly developed 20.1Mp APS-C CMOS sensor, equipped with Pentax’s Anti-Aliasing filter simulator, which was first introduced on the", + "linkReview": "https://www.dxomark.com/pentax-k-s1-preview-pentax-lights-the-way-with-new-entry-level-dslr/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K-S1/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2014  ", + "Indicative price (USD)": "\n 749  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5504 x 3664  \n ", + "Sensor photo detectors (Mpix) ": "20.17  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "15.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, D-LI109, 7.4V, 1000mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "metal ", + "Mount material": "metal ", + "View finder type": "Optical ", + "View finder magnification": "0.95 ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "-2.5 to +1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF (AF-S), Continuous AF (AF-C), Auto select AF (AF-A) ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous (Hi, Lo), Self-Timer, Remote, Exposure bracketing ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW(PEF/DNG) ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K10D.txt b/scr/模糊专家系统/scrape/scraped/Pentax K10D.txt new file mode 100644 index 0000000..9974020 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K10D.txt @@ -0,0 +1,96 @@ +{ + "id": 212, + "price": 900, + "year": "2006", + "brand": "Pentax", + "rankDxo": 66, + "rankColor": 22.7, + "rankDyn": 11.6, + "rankLln": 522, + "rankDxo_ranking": 189, + "rankColor_ranking": 165, + "rankDyn_ranking": 208, + "rankLln_ranking": 255, + "name": "Pentax K10D", + "pixelDepth": 10, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2006", + "launchDateGraph": "2006-09-13", + "sensorraw": 10.33, + "link": "/Cameras/Pentax/K10D", + "chapo": " To avoid publishing measurements which could be unfairly improved by noise reduction processing on RAW, we check every camera’s autocorrelation function for each ISO along the entire sensor dynamic range. (For further information, see the dxomark Insight, “Half-Cooked Raw”)No noise reduction was detected for the Pentax Km from ISO 100 to ISO 400, per Figure 1 below. The autocorrelation function shows a single peak, which denotes white noise only.Figure 1. 3D view of the Pentax Km’s autocorrelation function at ISO 100.But for ISOs higher than 400, the autocorrelation shows a wider base (Figure 2), which means noise", + "linkReview": "https://www.dxomark.com/dxomark-review-for-pentax-cameras/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K10D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Sep. 2006  ", + "Indicative price (USD)": "\n 900  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3936 x 2624  \n ", + "Sensor photo detectors (Mpix) ": "10.33  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": "1 ", + "Dust cleaning": "yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K200D.txt b/scr/模糊专家系统/scrape/scraped/Pentax K200D.txt new file mode 100644 index 0000000..cf7088d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K200D.txt @@ -0,0 +1,96 @@ +{ + "id": 330, + "price": 660, + "year": "2008", + "brand": "Pentax", + "rankDxo": 64, + "rankColor": 22.4, + "rankDyn": 11.4, + "rankLln": 561, + "rankDxo_ranking": 213, + "rankColor_ranking": 190, + "rankDyn_ranking": 231, + "rankLln_ranking": 229, + "name": "Pentax K200D", + "pixelDepth": 10.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-23", + "sensorraw": 10.19, + "link": "/Cameras/Pentax/K200D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K200D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 660  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3896 x 2616  \n ", + "Sensor photo detectors (Mpix) ": "10.19  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.8  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K20D.txt b/scr/模糊专家系统/scrape/scraped/Pentax K20D.txt new file mode 100644 index 0000000..c99e74a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K20D.txt @@ -0,0 +1,96 @@ +{ + "id": 213, + "price": 770, + "year": "2008", + "brand": "Pentax", + "rankDxo": 65, + "rankColor": 22.9, + "rankDyn": 11.1, + "rankLln": 639, + "rankDxo_ranking": 198, + "rankColor_ranking": 142, + "rankDyn_ranking": 268, + "rankLln_ranking": 200, + "name": "Pentax K20D", + "pixelDepth": 14.6, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-23", + "sensorraw": 14.65, + "link": "/Cameras/Pentax/K20D", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K20D/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 770  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4688 x 3124  \n ", + "Sensor photo detectors (Mpix) ": "14.65  ", + "Sensor size (mm)": "16 x 23 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": "1 ", + "Dust cleaning": "yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K5.txt b/scr/模糊专家系统/scrape/scraped/Pentax K5.txt new file mode 100644 index 0000000..9df4d09 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K5.txt @@ -0,0 +1,96 @@ +{ + "id": 676, + "price": 1600, + "year": "2010", + "brand": "Pentax", + "rankDxo": 82, + "rankColor": 23.7, + "rankDyn": 14.1, + "rankLln": 1162, + "rankDxo_ranking": 64, + "rankColor_ranking": 79, + "rankDyn_ranking": 16, + "rankLln_ranking": 82, + "name": "Pentax K5", + "pixelDepth": 16.3, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-20", + "sensorraw": 16.08, + "link": "/Cameras/Pentax/K5", + "chapo": " The best APS-C in all tested fieldsNo need for suspense: this new 16.3 MP sensor is simply the best APS-C we have tested so far, sometimes able to compete even with very high-end full-frame cameras.The overall score of the K5 puts it in the lead with 82 points — more than 9 points better than the D90 or the Alpha 55, and 16 points ahead of the Canon 7D or 60D. The K5 is literally the best APS-C performer for each segment, even in low ISO.Wonderful Dynamic Range performanceDynamic range is clearly where the K5 struts its", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-pentax-k5/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K5/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 1600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3264  \n ", + "Sensor photo detectors (Mpix) ": "16.08  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": " 3:2 ", + "ISO latitude ": "80 - 51200 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0.3 ", + "Dust cleaning": "Yes ", + "Mount type": " Pentax KAF2  ", + "Weight (gr)": "740", + "Battery type": "Lithium-ion Battery D-LI90, 7.4V, 1500mAh  ", + "Battery weight (gr)": "84", + "Tropicalization": "Yes, Weather and dust resistant ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "Optical ", + "View finder magnification": "0.92 ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "-2.5 to 1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF Single (w focus lock, focus/shutter priority selectable), AF Continuous (w focus/FPS priority selectable), Manual Focus point adjustment: Auto 11 Point, Auto 5 Point, User-Selectable, Center AF assist: Yes, via dedicated LED AF assist lamp  ", + "Number of autofocus points": "11 ", + "Exposure bracketing": "Yes (2, 3, or 5 frames, up to +/- 2 EV in 1/3 or 1/2 steps) ", + "Exposure compensation": "-5 to +5 EV in increments of 1/3 or 1/2 EV ", + "Drive modes": "Single, Continuous (Hi, Lo), Self-Timer (12s, 2s), Remote (0s, 3s, continuous), Auto Bracketing (standard, timer, remote), MLU (standard, remote), HDR Capture (+3, 0, -3 with 5 blend settings and pixel alignment), Multi-Exposure (2-9 shots), Interval (999 ", + "Buffer size": "22 (JPEG), 8 (RAW) ", + "Recording medium": "SD (Secure Digital), SDHC and SDXC memory cards ", + "Image format": "RAW (PEF, DNG), JPG (EXIF 2.21), DCF 2.0 compliant, DPOF, PIM III ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 hi-speed, AV out, HDMI out, DC in, cable switch, 3.5mm stereo microphone, X-sync socket Video out: HD (via HDMI), NTSC, PAL Printer interfaces: n/a ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVI ", + "Video codec": "M-JPEG ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax K7.txt b/scr/模糊专家系统/scrape/scraped/Pentax K7.txt new file mode 100644 index 0000000..63c3126 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax K7.txt @@ -0,0 +1,96 @@ +{ + "id": 615, + "price": 1900, + "year": "2009", + "brand": "Pentax", + "rankDxo": 61, + "rankColor": 22.6, + "rankDyn": 10.6, + "rankLln": 536, + "rankDxo_ranking": 243, + "rankColor_ranking": 171, + "rankDyn_ranking": 315, + "rankLln_ranking": 243, + "name": "Pentax K7", + "pixelDepth": 14.6, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "May. 2009", + "launchDateGraph": "2009-05-20", + "sensorraw": 14.85, + "link": "/Cameras/Pentax/K7", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/K7/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "May. 2009  ", + "Indicative price (USD)": "\n 1900  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4736 x 3136  \n ", + "Sensor photo detectors (Mpix) ": "14.85  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5.2  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax KM.txt b/scr/模糊专家系统/scrape/scraped/Pentax KM.txt new file mode 100644 index 0000000..25bf2d2 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax KM.txt @@ -0,0 +1,96 @@ +{ + "id": 577, + "price": 550, + "year": "2008", + "brand": "Pentax", + "rankDxo": 64, + "rankColor": 22.4, + "rankDyn": 11.4, + "rankLln": 513, + "rankDxo_ranking": 219, + "rankColor_ranking": 192, + "rankDyn_ranking": 230, + "rankLln_ranking": 262, + "name": "Pentax KM", + "pixelDepth": 10.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2008", + "launchDateGraph": "2008-09-22", + "sensorraw": 10.19, + "link": "/Cameras/Pentax/KM", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/KM/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Sep. 2008  ", + "Indicative price (USD)": "\n 550  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3896 x 2616  \n ", + "Sensor photo detectors (Mpix) ": "10.19  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3.5  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax Kr.txt b/scr/模糊专家系统/scrape/scraped/Pentax Kr.txt new file mode 100644 index 0000000..8f7cda1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax Kr.txt @@ -0,0 +1,96 @@ +{ + "id": 672, + "price": 700, + "year": "2010", + "brand": "Pentax", + "rankDxo": 72, + "rankColor": 22.9, + "rankDyn": 12.4, + "rankLln": 755, + "rankDxo_ranking": 144, + "rankColor_ranking": 138, + "rankDyn_ranking": 140, + "rankLln_ranking": 170, + "name": "Pentax Kr", + "pixelDepth": 12.4, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Oct. 2010", + "launchDateGraph": "2010-10-09", + "sensorraw": 12.4, + "link": "/Cameras/Pentax/Kr", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Kr/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Oct. 2010  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": " CMOS  ", + "Resolution ": "\n 4288 x 2848  \n ", + "Sensor photo detectors (Mpix) ": "12.4  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": " 3:2 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes, Sensor-shift Shake Reduction (4 stops max) ", + "Firmware": "1.0.1 ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": "544.31", + "Battery type": " Li-ion, D-LI109, 7.2V, 1100mAh  ", + "Battery weight (gr)": "52.85", + "Tropicalization": " ", + "Camera material": "Fiber reinforced plastic polymer covers around a rugged stainless steel chassis ", + "Mount material": " ", + "View finder type": "Optical (pentamirror) ", + "View finder magnification": "0.85 ", + "View finder coverage": "96 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-2.5 to +1.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF Auto, AF Single (w focus lock), AF Continuous (available in Action mode including Auto Picture Action, Kids, Pet, Stage Lighting, Night Snap, P/A/S/M/B/Sv), Manual Focus ", + "Number of autofocus points": "11 ", + "Exposure bracketing": " +/- 1.5 (3 frames at 1/3 EV, 1/2 EV steps) ", + "Exposure compensation": " +/- 3 EV (at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous (Hi, Lo), Self Timer (12s, 2s), Remote (0s, 3s), Auto Bracket, HDR Capture (+3, 0, -3 w 2 blend settings), Multi-Exposure Continuous FPS: Approx 6.0 FPS (Continuous Hi: 25 JPG, 12 RAW), 2 FPS (Continuous Lo: unlimited JPG, 36 RAW) Self- ", + "Buffer size": "25 ", + "Recording medium": " SD/SDHC ", + "Image format": "RAW (PEF, DNG), JPG (EXIF 2.21), DCF 2.0 (design rule for camera file system), DPOF, Print Image Matching III ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 hi-speed, AV, Remote control : Yes (Optional IR) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280x720p / 25 fps ", + "Full HD": "No ", + "Live autofocus": "Yes ", + "Video file format": "AVI ", + "Video codec": " MotionJPEG ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax Kx.txt b/scr/模糊专家系统/scrape/scraped/Pentax Kx.txt new file mode 100644 index 0000000..8cd6f29 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax Kx.txt @@ -0,0 +1,96 @@ +{ + "id": 639, + "price": 640, + "year": "2009", + "brand": "Pentax", + "rankDxo": 72, + "rankColor": 22.8, + "rankDyn": 12.5, + "rankLln": 811, + "rankDxo_ranking": 141, + "rankColor_ranking": 148, + "rankDyn_ranking": 116, + "rankLln_ranking": 149, + "name": "Pentax Kx", + "pixelDepth": 12.4, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Sep. 2009", + "launchDateGraph": "2009-09-17", + "sensorraw": 12.36, + "link": "/Cameras/Pentax/Kx", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Kx/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Sep. 2009  ", + "Indicative price (USD)": "\n 640  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4309 x 2868  \n ", + "Sensor photo detectors (Mpix) ": "12.36  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/6000 - 30  ", + "Frame rate (fps)": "4.7  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax MX-1.txt b/scr/模糊专家系统/scrape/scraped/Pentax MX-1.txt new file mode 100644 index 0000000..dece3c5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax MX-1.txt @@ -0,0 +1,96 @@ +{ + "id": 854, + "price": 499, + "year": "2013", + "brand": "Pentax", + "rankDxo": 49, + "rankColor": 20.4, + "rankDyn": 11.3, + "rankLln": 208, + "rankDxo_ranking": 316, + "rankColor_ranking": 315, + "rankDyn_ranking": 245, + "rankLln_ranking": 311, + "name": "Pentax MX-1", + "pixelDepth": 12, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Jan. 2013", + "launchDateGraph": "2013-01-07", + "sensorraw": 12.09, + "link": "/Cameras/Pentax/MX-1", + "chapo": " Introduction Released just a month after being announced at CES, the Pentax MX-1 enters an extremely competitive enthusiast compact camera market, which has heated up significantly after being dominated by Canon and Panasonic for years. Unlike Pentax’s first foray into the interchangeable lens compact camera market, the Pentax Q, which sported an above-average price with a smaller-than-average sensor relative to its interchangeable lens peers, the MX-1 sports specs that are right on the money for its $499.95 price tag and high-end point-and-shoot market. Like the Olympus XZ-2 ($599.99) and Nikon P7700 ($499.95), the Pentax MX-1 is", + "linkReview": "https://www.dxomark.com/pentax-mx-1-review-high-end-compact-with-retro-appeal-delivers-competitive-sensor-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/MX-1/vignette3.png", + "Type": "Compact ", + "Announced": "Jan. 2013  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4016 x 3010  \n ", + "Sensor photo detectors (Mpix) ": "12.09  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "4.67 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Lithium-Ion D-Li-106 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "920000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Auto, Spot, Tracking , AF Select (25 Points), Infinity Landscape, Manual Focus, Pan Focus, AF Point Switching ", + "Number of autofocus points": "25 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "One shot, Continuous Shooting, Burst Shooting (L/H), Self-timer (2 or 10 sec.), Remote Control (immediately or 3 sec.), Auto Bracketing. ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC ", + "Image format": "JPEG, RAW ", + "White balance bracketing": " ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax Q.txt b/scr/模糊专家系统/scrape/scraped/Pentax Q.txt new file mode 100644 index 0000000..2fdf142 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax Q.txt @@ -0,0 +1,96 @@ +{ + "id": 722, + "price": 799, + "year": "2011", + "brand": "Pentax", + "rankDxo": 47, + "rankColor": 20.2, + "rankDyn": 11.1, + "rankLln": 189, + "rankDxo_ranking": 324, + "rankColor_ranking": 322, + "rankDyn_ranking": 263, + "rankLln_ranking": 316, + "name": "Pentax Q", + "pixelDepth": 12.4, + "sensor": "sensor_compact_1over2.3", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2011", + "launchDateGraph": "2011-06-22", + "sensorraw": 12, + "link": "/Cameras/Pentax/Q", + "chapo": " While its low-light score of 189 clearly shows the limitations of this kind of sensor, the Pentax Q outperforms all of its main competitors in low light except the Nikon 1 V1 in the comparisons we have furnished below.Note: We found a very strong smoothing for the Pentax Q for all ISOs. To put the Pentax Q on the same footing as its competitors, we estimated the noise levels before smoothing, and it is these “pre-smoothed” noise estimates that we use in our comparisons.Pentax Q vs Nikon 1 V1 vs Nikon Coolpix P7100The results clearly give preference", + "linkReview": "https://www.dxomark.com/a-quality-review-of-the-pentax-q/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Q/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2011  ", + "Indicative price (USD)": "\n 799  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12  ", + "Sensor size (mm)": "4.6 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "125 - 6400 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Pentax Q  ", + "Weight (gr)": " ", + "Battery type": "Rechargeable Li-Ion battery D-LI68  ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF Single (w focus lock, focus/release priority selectable), AF Continuous, AF Face Detection, Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes (3 frames, up to +/- 3 EV in 1/3 or 1/2 steps, remote enabled) ", + "Exposure compensation": "+/- 3 EV (1/3 steps)  ", + "Drive modes": "Mode selection: Single, Continuous (Hi, Lo), Self Timer (12s, 2s), Infrared Remote (0s, 3s, continuous), Auto Bracketing (3 frames, up to +/- 3 EV in 1/3 or 1/2 steps, remote enabled) Continuous FPS: Approx 5 FPS (Continuous Hi: 5 JPG), 1.5 FPS (Continuou ", + "Buffer size": "5 (JPEG) ", + "Recording medium": "Removable memory: SD, SDHC, SDXC ", + "Image format": "Still: RAW (DNG), JPG (EXIF 2.3), DCF 2.0, DPOF, PIM III Movie (compression): MP4 (AVC h.264) ", + "White balance bracketing": "No ", + "Connectivity": " Ports: USB 2.0 hi-speed, AV out, HDMI out (Type D, Micro) Video out: HD (via HDMI), NTSC, PAL ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": " ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG-4 AVC/H.264 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Pentax Q10.txt b/scr/模糊专家系统/scrape/scraped/Pentax Q10.txt new file mode 100644 index 0000000..3184187 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Pentax Q10.txt @@ -0,0 +1,96 @@ +{ + "id": 828, + "price": 499, + "year": "2012", + "brand": "Pentax", + "rankDxo": 49, + "rankColor": 21.1, + "rankDyn": 10.9, + "rankLln": 183, + "rankDxo_ranking": 314, + "rankColor_ranking": 285, + "rankDyn_ranking": 287, + "rankLln_ranking": 318, + "name": "Pentax Q10", + "pixelDepth": 12.4, + "sensor": "sensor_compact_1over2.3", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-11", + "sensorraw": 12, + "link": "/Cameras/Pentax/Q10", + "chapo": " Introduction Drawing heavily on the styling of the Pentax Q, according to Pentax the Q10 offers improvements in several areas to help you capture better quality images. Weighing only 200g, it would be easy to assume that the Q10 is nothing more than a simple point and shoot camera. But with a 12.4megapixel CMOS sensor featuring ISO settings to 6400 and their Shake Reduction (SR) system that moves the sensor around to compensate for camera shake, Pentax are ensuring the Q10 appeals to more advanced users as well as those just starting out.Interestingly for a hybrid", + "linkReview": "https://www.dxomark.com/pentax-q10-review-is-smaller-better/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Q10/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4000 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "12  ", + "Sensor size (mm)": "4.5 x 6.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "5.53 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": " Pentax Q  ", + "Weight (gr)": "200", + "Battery type": "Rechargeable Li-Ion battery D-LI68  ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Magnesium alloy ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor)\n Multi-area\n Selective single-point\n Tracking\n Single\n Continuous\n Face Detection ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes, 3 frames  ", + "Exposure compensation": "3 EV (at 1/3 EV steps) ", + "Drive modes": "Single frame\n Continuous (Hi, Lo)\n Self-timer (12s, 2s)\n Remote control (0 sec. 3 sec. continuous)\n Auto Bracketing (3 frames, remote control) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC\nStorage included: None ", + "Image format": " \n\n RAW (DNG)\n JPEG (Exif 2.3)\n DCF2.0\n ", + "White balance bracketing": "No ", + "Connectivity": "USB: USB 2.0 (480 Mbit/sec)\nHDMI: Yes (mini HDMI Type C)\nWireless: None\nRemote control: Yes (Optional) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 /30 fps ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": "MPEG-4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Phase One IQ180 Digital Back.txt b/scr/模糊专家系统/scrape/scraped/Phase One IQ180 Digital Back.txt new file mode 100644 index 0000000..10a155c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Phase One IQ180 Digital Back.txt @@ -0,0 +1,96 @@ +{ + "id": 746, + "price": 42490, + "year": "2011", + "brand": "Phase One", + "rankDxo": 91, + "rankColor": 26.5, + "rankDyn": 13.6, + "rankLln": 966, + "rankDxo_ranking": 18, + "rankColor_ranking": 1, + "rankDyn_ranking": 42, + "rankLln_ranking": 114, + "name": "Phase One IQ180 Digital Back", + "pixelDepth": 80, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Jan. 2011", + "launchDateGraph": "2011-01-24", + "sensorraw": 81.13, + "link": "/Cameras/Phase-One/IQ180-Digital-Back", + "chapo": " As usual with Phase One sensors, we were particularly impressed by its color depth:  a portrait score of 26.5 — also the best color depth ever measured on DxOMark.In term of dynamic range, the IQ180 also reaches the very high score 13.6 Evs, but still doesn’t beat the best APS-C sensors, such as the Pentax K5 (14.1 Evs) or the Nikon D7000 (13.9 Evs).Thanks to its specific “Sensor Plus” mode, the IQ 180 does pretty well under low-light conditions with an ISO score of 966, but it remains far from the best cameras, such as the Nikon", + "linkReview": "https://www.dxomark.com/phase-one-iq-180-the-new-king-of-all-sensors/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/IQ180_Digital_Back/vignette3.png", + "Type": "Professional ", + "Announced": "Jan. 2011  ", + "Indicative price (USD)": "\n 42490  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 10380 x 7816  \n ", + "Sensor photo detectors (Mpix) ": "81.13  ", + "Sensor size (mm)": "40.4 x 53.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16.0", + "Focal length multiplier": "0.67 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "35 - 3200 ", + "Shutter type": " ", + "Fastest - Slowest speed (s)": "1/10000 - 120.0  ", + "Frame rate (fps)": "0.7 (0.9 in Sensor+ )  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Mamiya 645 AF  ", + "Weight (gr)": " ", + "Battery type": "2pcs, Li-ion, 7.2V ", + "Battery weight (gr)": " ", + "Tropicalization": "No\nTemperature -10 degree to 50 degree C (14 degree to 122 degree F)\nHumidity 15 to 80 per cent RH (non-condensing) ", + "Camera material": " ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3.2 ", + "Monitor pixel": "1150000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": "CF ", + "Image format": "RAW (IIQ L) ", + "White balance bracketing": " ", + "Connectivity": "FireWire 800, USB3 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "No ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Phase One P40 Plus.txt b/scr/模糊专家系统/scrape/scraped/Phase One P40 Plus.txt new file mode 100644 index 0000000..e59a476 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Phase One P40 Plus.txt @@ -0,0 +1,96 @@ +{ + "id": 592, + "price": 19500, + "year": "2009", + "brand": "Phase One", + "rankDxo": 87, + "rankColor": 25.3, + "rankDyn": 13, + "rankLln": 1307, + "rankDxo_ranking": 36, + "rankColor_ranking": 15, + "rankDyn_ranking": 75, + "rankLln_ranking": 67, + "name": "Phase One P40 Plus", + "pixelDepth": 40, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Apr. 2009", + "launchDateGraph": "2009-04-29", + "sensorraw": 40.81, + "link": "/Cameras/Phase-One/P40-Plus", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/P40_Plus/vignette3.png", + "Type": "Professional ", + "Announced": "Apr. 2009  ", + "Indicative price (USD)": "\n 19500  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 7372 x 5536  \n ", + "Sensor photo detectors (Mpix) ": "40.81  ", + "Sensor size (mm)": "32.9 x 43.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16", + "Focal length multiplier": "0.79 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 3200 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/10000 - 60  ", + "Frame rate (fps)": "1.2 or 1.8 (Sensor+)  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Mamiya 645 AF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Phase One P45 Plus.txt b/scr/模糊专家系统/scrape/scraped/Phase One P45 Plus.txt new file mode 100644 index 0000000..564e446 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Phase One P45 Plus.txt @@ -0,0 +1,96 @@ +{ + "id": 456, + "price": 32990, + "year": "2007", + "brand": "Phase One", + "rankDxo": 77, + "rankColor": 24.2, + "rankDyn": 12.9, + "rankLln": 622, + "rankDxo_ranking": 105, + "rankColor_ranking": 49, + "rankDyn_ranking": 82, + "rankLln_ranking": 203, + "name": "Phase One P45 Plus", + "pixelDepth": 39, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Jan. 2007", + "launchDateGraph": "2007-01-01", + "sensorraw": 39.45, + "link": "/Cameras/Phase-One/P45-Plus", + "chapo": " As with all cameras of this type, particular attention should be paid to results for Color Depth (24.2; average for 4 medium format cameras = 24.1) and Dynamic Range (12.9, average = 12.4).(see “Medium-format camera ranking with respect to the DxOMark Sensor Scale”).Key sensor characteristicsThe Phase One P45+ features a very high resolution medium-format CCD with 39.45 Mpix and a 16-bit Analog/Digital (A/D) converter. ISO latitude ranges from ISO 50 to ISO 800, but measurements show that the only two first ISO values (50 and 100) are real, a digital gain is applied during RAW conversion from", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-phase-one-p45/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/P45_Plus/vignette3.png", + "Type": "Professional ", + "Announced": "Jan. 2007  ", + "Indicative price (USD)": "\n 32990  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 7246 x 5444  \n ", + "Sensor photo detectors (Mpix) ": "39.45  ", + "Sensor size (mm)": "37 x 49 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16", + "Focal length multiplier": "0.7 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 800 ", + "Shutter type": "Electronic and mechanical ", + "Fastest - Slowest speed (s)": "1/10000 - 3600  ", + "Frame rate (fps)": "0.67  ", + "Live view ": "No ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": "N/A ", + "Mount type": "Mamiya 645 AF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Phase One P65 Plus.txt b/scr/模糊专家系统/scrape/scraped/Phase One P65 Plus.txt new file mode 100644 index 0000000..bd18c8e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Phase One P65 Plus.txt @@ -0,0 +1,96 @@ +{ + "id": 579, + "price": 39900, + "year": "2008", + "brand": "Phase One", + "rankDxo": 89, + "rankColor": 26, + "rankDyn": 13, + "rankLln": 1158, + "rankDxo_ranking": 25, + "rankColor_ranking": 4, + "rankDyn_ranking": 76, + "rankLln_ranking": 83, + "name": "Phase One P65 Plus", + "pixelDepth": 60.5, + "sensor": "sensor_medium", + "type": "professional", + "status": "TESTED", + "launchDate": "Jul. 2008", + "launchDateGraph": "2008-07-14", + "sensorraw": 60.48, + "link": "/Cameras/Phase-One/P65-Plus", + "chapo": " As with all Medium Format cameras, given their studio-oriented design, particular attention should be paid to Color Depth and Dynamic Range results. With 26bits and 13Ev, respectively, the Phase One P65+’s results are remarkable when compared to those of previously-analyzed medium-format models. Phase One introduces a new feature—the "Sensor Plus" mode. This particular mode increases the sensor sensitivity and provides an ISO range from ISO 200 to ISO 3200. Besides its Low-Light ISO score (1158) is better than is usual for medium format cameras (the Phase One P45+’s score was only 622).Despite a huge number of pixels (60.5", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-phase-one-p65/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/P65_Plus/vignette3.png", + "Type": "Professional ", + "Announced": "Jul. 2008  ", + "Indicative price (USD)": "\n 39900  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 8984 x 6732  \n ", + "Sensor photo detectors (Mpix) ": "60.48  ", + "Sensor size (mm)": "40.4 x 53.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "16", + "Focal length multiplier": "0.64 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "50 - 3200 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 60  ", + "Frame rate (fps)": "1 or 1.4 (Sensor+)  ", + "Live view ": "no ", + "Stabilization ": "no ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Mamiya 645 AF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Ricoh GR II.txt b/scr/模糊专家系统/scrape/scraped/Ricoh GR II.txt new file mode 100644 index 0000000..f128e79 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Ricoh GR II.txt @@ -0,0 +1,96 @@ +{ + "id": 1036, + "price": 800, + "year": "2015", + "brand": "Ricoh", + "rankDxo": 80, + "rankColor": 23.6, + "rankDyn": 13.7, + "rankLln": 1078, + "rankDxo_ranking": 78, + "rankColor_ranking": 93, + "rankDyn_ranking": 36, + "rankLln_ranking": 99, + "name": "Ricoh GR II", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2015", + "launchDateGraph": "2015-06-17", + "sensorraw": 16.22, + "link": "/Cameras/Ricoh/GR-II", + "chapo": " Introduction Specifications and FeaturesAfter its cameras enjoyed a cult-like following as a series of film-based models and then later as digital versions with small sensors, Ricoh finally introduced its GR camera featuring a relatively large APS-C-size 16-Mpix CMOS sensor. The updated version, the GR II, inherits much of the same feature set, including the 16-Mpix CMOS sensor and fixed focal length 28mm (equivalent) f/2.8 lens in a highly portable yet satisfyingly ergonomic magnesium shell. At the rear, it has a 3-inch LCD with 1.23m-dot resolution display. As a high-end model aimed at enthusiasts, it has front", + "linkReview": "https://www.dxomark.com/ricoh-gr-ii-sensor-review-modest-update/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/GR_II/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2015  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4944 x 3280  \n ", + "Sensor photo detectors (Mpix) ": "16.22  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.52 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 300.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": "1.1 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "221", + "Battery type": "Li-Ion, DB-65 , 3.6V, 1250mAh ", + "Battery weight (gr)": "29", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1230000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Multi AF, Spot AF, Pinpoint AF, Subject tracking AF, MF, Snap, Infinity, Face\ndetection priority AF (in Auto shooting mode / when Portrait of Effect is set), Continuous AF, \nFull Press Snap ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 4 EV ", + "Drive modes": "Single, Continuous shooting, Self-timer ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC, Eye-Fi (X2 Series, Mobi)\n(SDHC/SDXC memory cards conform to UHS-I standards) ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "Yes ", + "Connectivity": "USB 2.0 hi-speed, AV/USB out ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Ricoh GR.txt b/scr/模糊专家系统/scrape/scraped/Ricoh GR.txt new file mode 100644 index 0000000..4dad397 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Ricoh GR.txt @@ -0,0 +1,96 @@ +{ + "id": 874, + "price": 799, + "year": "2013", + "brand": "Ricoh", + "rankDxo": 78, + "rankColor": 23.6, + "rankDyn": 13.5, + "rankLln": 972, + "rankDxo_ranking": 91, + "rankColor_ranking": 97, + "rankDyn_ranking": 46, + "rankLln_ranking": 113, + "name": "Ricoh GR", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Apr. 2013", + "launchDateGraph": "2013-04-17", + "sensorraw": 16.22, + "link": "/Cameras/Ricoh/GR", + "chapo": " Introduction The Ricoh GR is a high-end compact and it’s clear straight away that with an overall score of 78, it’s actually pretty good. Good enough, in fact, to be ranked number 2 when compared to the other APS-C compact cameras tested in the labs. Even expanding the comparisons out to full-frame high-end compacts, the GR comes in third, behind the Sony Cyber-shot DSC-RX1 (full-frame) and the Nikon Coolpix A (APS-C) and ahead of the venerable Fujifilm FinePix X100.Looking at the GR in more detail, it’s clear that the sensor", + "linkReview": "https://www.dxomark.com/ricoh-gr-review-a-high-performance-compact-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/GR/vignette3.png", + "Type": "High-end compact ", + "Announced": "Apr. 2013  ", + "Indicative price (USD)": "\n 799  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4944 x 3280  \n ", + "Sensor photo detectors (Mpix) ": "16.22  ", + "Sensor size (mm)": "15.7 x 23.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 300.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, DB-65, 3.6V, 1250mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1230000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Multi AF (Contrast AF method), Spot AF (Contrast AF method), Pinpoint AF, Subject tracking AF, Snap, in finity, Face recognition priority (only in Auto mode), Continuous ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "-2.0EV to +2.0EV, 1/3EV or 1/2 step ", + "Exposure compensation": "+4.0 to -4.0EV in increments of 1/3EV ", + "Drive modes": "Single, Continuous shooting, Self-timer, Interval shooting, Dynamic Range Double Shot,  ", + "Buffer size": " ", + "Recording medium": "Internal memory: 54 MB\nRemovable memory: SD, SDHC, SDXC, Eye-Fi (X2 Series) ", + "Image format": "JPEG, RAW (DNG) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB 2.0 hi-speed, AV (NTSC/PAL), HDMI (Micro, Type D) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung EX1.txt b/scr/模糊专家系统/scrape/scraped/Samsung EX1.txt new file mode 100644 index 0000000..8acc256 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung EX1.txt @@ -0,0 +1,96 @@ +{ + "id": 666, + "price": 450, + "year": "2010", + "brand": "Samsung", + "rankDxo": 40, + "rankColor": 19.2, + "rankDyn": 11.1, + "rankLln": 129, + "rankDxo_ranking": 338, + "rankColor_ranking": 342, + "rankDyn_ranking": 266, + "rankLln_ranking": 342, + "name": "Samsung EX1", + "pixelDepth": 10, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Feb. 2010", + "launchDateGraph": "2010-02-20", + "sensorraw": 10.25, + "link": "/Cameras/Samsung/EX1", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EX1/vignette3.png", + "Type": "Compact ", + "Announced": "Feb. 2010  ", + "Indicative price (USD)": "\n 450  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3714 x 2760  \n ", + "Sensor photo detectors (Mpix) ": "10.25  ", + "Sensor size (mm)": "5.5 x 7.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "4.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 3200 ", + "Shutter type": "electronic ", + "Fastest - Slowest speed (s)": "1/1500 - 16.0  ", + "Frame rate (fps)": "Not specified  ", + "Live view ": "Yes ", + "Stabilization ": "Yes (Lens-Shift) ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": " Li-ion, SLB-11A, 3.8V, 1130 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": "No ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": " ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Centre AF, Multi AF, Selection AF, Tracking AF ", + "Number of autofocus points": " ", + "Exposure bracketing": "Yes, 3 frames ", + "Exposure compensation": "+ or - 2EV (1/3EV steps) ", + "Drive modes": "Single, Continuous, Bracket, Self-timer (2 sec or 10 sec), Remote (Optional) ", + "Buffer size": " ", + "Recording medium": "Internal memory: 1GB. External memory: SD Card SDHC (up to 8GB guaranteed) ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "Yes, 3 frames ", + "Connectivity": " ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "640 x 480 / 30 fps ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung EX2F.txt b/scr/模糊专家系统/scrape/scraped/Samsung EX2F.txt new file mode 100644 index 0000000..d3b4467 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung EX2F.txt @@ -0,0 +1,96 @@ +{ + "id": 815, + "price": 549, + "year": "2012", + "brand": "Samsung", + "rankDxo": 48, + "rankColor": 20, + "rankDyn": 11.5, + "rankLln": 209, + "rankDxo_ranking": 318, + "rankColor_ranking": 327, + "rankDyn_ranking": 214, + "rankLln_ranking": 310, + "name": "Samsung EX2F", + "pixelDepth": 12.4, + "sensor": "sensor_compact_1over1.7", + "type": "compact", + "status": "TESTED", + "launchDate": "Jul. 2012", + "launchDateGraph": "2012-07-03", + "sensorraw": 12.39, + "link": "/Cameras/Samsung/EX2F", + "chapo": " Introduction Samsung’s EX2F is a compact camera that replaces their previous EX1 model. The 12 megapixel BSI CMOS sensor gives the EX2F an extra 8 points in the DxO Mark score, 48 against the previous 40.The EX2F is a sturdy but light camera with a magnesium alloy chassis, it is fitted with a Schneider Kreuznach 5.2mm – 17.2mm lens (equivalent to 24-80mm in full frame 35mm). Schneider, if you are unfamiliar with them, are a German lens manufacturer known especially in the professional market for their large format lenses. Optically this lens has 11 elements arranged", + "linkReview": "https://www.dxomark.com/samsung-ex2f-review-is-f1-4-and-wifi-enough/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/EX2F/vignette3.png", + "Type": "Compact ", + "Announced": "Jul. 2012  ", + "Indicative price (USD)": "\n 549  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4070 x 3045  \n ", + "Sensor photo detectors (Mpix) ": "12.39  ", + "Sensor size (mm)": "5.6 x 7.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "10.0", + "Focal length multiplier": "4.6 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "80 - 3200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, SLB-10A, 3.7V, 1030mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": " Electronic (optional)  ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "OLED  ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Center AF, Multi AF, Tracking AF, Face Detection AF, Face Recognition AF, Selection AF ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 2 EV (in 1/3 steps) ", + "Drive modes": "Single, continuous, self-timer (2 or 10 sec) ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 (480 Mbit/sec), AV (NTSC/PAL selectable), HDMI D (Micro) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung GALAXY NX.txt b/scr/模糊专家系统/scrape/scraped/Samsung GALAXY NX.txt new file mode 100644 index 0000000..45ea835 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung GALAXY NX.txt @@ -0,0 +1,96 @@ +{ + "id": 900, + "price": 1300, + "year": "2013", + "brand": "Samsung", + "rankDxo": 75, + "rankColor": 23.4, + "rankDyn": 12.3, + "rankLln": 910, + "rankDxo_ranking": 116, + "rankColor_ranking": 114, + "rankDyn_ranking": 147, + "rankLln_ranking": 123, + "name": "Samsung GALAXY NX", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2013", + "launchDateGraph": "2013-06-20", + "sensorraw": 20.6, + "link": "/Cameras/Samsung/GALAXY-NX", + "chapo": " Introduction Announced during the summer of 2013 several months, the Samsung Galaxy NX shares some of the familiar styling of the earlier NX20 yet with an elongated body to accommodate an enormous 4.8” 1280 x 720 (921k-dot) LCD. As a Galaxy model, the large touchscreen is of course aimed at replicating that found on a smartphone, as the Galaxy NX is the first camera with interchangeable lenses to feature the Android operating system. As a result the body has few controls with nearly all the functions accessed and controlled by the rear panel.In addition to the", + "linkReview": "https://www.dxomark.com/samsung-galaxy-nx-sensor-review-smart-choice/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/GALAXY_NX/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2013  ", + "Indicative price (USD)": "\n 1300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5546 x 3714  \n ", + "Sensor photo detectors (Mpix) ": "20.6  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": " ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "8.6  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Samsung NX  ", + "Weight (gr)": "410", + "Battery type": "Li-ion, BP, 4360mAh ", + "Battery weight (gr)": "85", + "Tropicalization": " ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "4.8 ", + "Monitor pixel": "921600 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Contrast Detect (sensor)\n Phase Detect\n Touch\n Face Detection\n Live View ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 3 (at 1/3 EV, 1/2 EV steps) ", + "Drive modes": "Single, Continuous drive (9), Self-timer (2 sec to 30 sec) ", + "Buffer size": " ", + "Recording medium": "Storage types SD/SDHC/SDXC\nStorage included 16GB ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 (480 Mbit/sec)/HDMI/WIFI ", + "Bluetooth": "Yes ", + "3G": "Yes ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 25 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4/3GP, AVI, WMV/ASF, FLV, MKV, WEBM ", + "Video codec": "MPEG-4, H263, H264, VC-1, Sorenson Spark, WMV7/8, MP43, VP8 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung GX 20.txt b/scr/模糊专家系统/scrape/scraped/Samsung GX 20.txt new file mode 100644 index 0000000..a14205b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung GX 20.txt @@ -0,0 +1,96 @@ +{ + "id": 526, + "price": 1060, + "year": "2008", + "brand": "Samsung", + "rankDxo": 68, + "rankColor": 23.1, + "rankDyn": 11.2, + "rankLln": 714, + "rankDxo_ranking": 175, + "rankColor_ranking": 125, + "rankDyn_ranking": 257, + "rankLln_ranking": 182, + "name": "Samsung GX 20", + "pixelDepth": 14.6, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-24", + "sensorraw": 14.65, + "link": "/Cameras/Samsung/GX-20", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/GX_20/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 1060  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4688 x 3124  \n ", + "Sensor photo detectors (Mpix) ": "14.65  ", + "Sensor size (mm)": "16 x 23 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Pentax KAF  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung Galaxy S6 Edge.txt b/scr/模糊专家系统/scrape/scraped/Samsung Galaxy S6 Edge.txt new file mode 100644 index 0000000..78e153c --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung Galaxy S6 Edge.txt @@ -0,0 +1,96 @@ +{ + "id": 1054, + "price": 600, + "year": "2015", + "brand": "Samsung", + "rankDxo": 25, + "rankColor": 18.6, + "rankDyn": 10.1, + "rankLln": 36, + "rankDxo_ranking": 357, + "rankColor_ranking": 353, + "rankDyn_ranking": 346, + "rankLln_ranking": 357, + "name": "Samsung Galaxy S6 Edge", + "pixelDepth": 16, + "sensor": "", + "type": "smartphone", + "status": "TESTED", + "launchDate": "Mar. 2015", + "launchDateGraph": "2015-03-01", + "sensorraw": 15.98, + "link": "/Cameras/Samsung/Galaxy-S6-Edge", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Galaxy_S6_Edge/vignette3.png", + "Type": " ", + "Announced": "Mar. 2015  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5328 x 3000  \n ", + "Sensor photo detectors (Mpix) ": "15.98  ", + "Sensor size (mm)": "4 x 5.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "10.0", + "Focal length multiplier": "6.14 ", + "Aspect Ratio": "16:9 ", + "ISO latitude ": "50 - 1600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": " -  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "5.1.1 ", + "Dust cleaning": "No ", + "Mount type": "Mobile  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, 2600mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Plastic ", + "Mount material": "Compact ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "Oled ", + "Monitor size": "5.1 ", + "Monitor pixel": "3686400 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "No ", + "Autofocus modes": "AF-S ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "No ", + "Exposure compensation": "+/- 2EV ", + "Drive modes": "Single, Continuous, Self-timer ", + "Buffer size": " ", + "Recording medium": "Internal memory (32GB, 64GB or 128GB) ", + "Image format": "JPEG ", + "White balance bracketing": "No ", + "Connectivity": "USB/Infrared/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "Yes ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "No ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": " ", + "Video codec": "H.263, H.264(AVC) ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 10.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 10.txt new file mode 100644 index 0000000..f941e81 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 10.txt @@ -0,0 +1,96 @@ +{ + "id": 660, + "price": 610, + "year": "2010", + "brand": "Samsung", + "rankDxo": 63, + "rankColor": 22.8, + "rankDyn": 10.8, + "rankLln": 572, + "rankDxo_ranking": 224, + "rankColor_ranking": 157, + "rankDyn_ranking": 300, + "rankLln_ranking": 221, + "name": "Samsung NX 10", + "pixelDepth": 14.6, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2010", + "launchDateGraph": "2010-01-04", + "sensorraw": 14.6, + "link": "/Cameras/Samsung/NX-10", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_10/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2010  ", + "Indicative price (USD)": "\n 610  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4592 x 3056  \n ", + "Sensor photo detectors (Mpix) ": "14.6  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "Electronically controlled vertical-run focal plane shutter ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "NA ", + "Stabilization ": "Only lens ", + "Firmware": " ", + "Dust cleaning": " Super sonic drive ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "BP1310 1300 mAh Lithium-Ion  ", + "Battery weight (gr)": " ", + "Tropicalization": "0-40 C 5~85% ", + "Camera material": "Metal and plastic ", + "Mount material": "Metal ", + "View finder type": "Built-in Electronic ", + "View finder magnification": "0.86 ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "-4.0 ~ +2.0 ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast-detect Auto Focus , Manual focus, Face Detection (max 10 faces), 1 Point AF (free selection), 15-Area-Focusing (normal) / 35-area-focusing (close up), Single or Continuous AF ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "3 frames, up to +/- 3.0 EV, 1/3 EV or 1/2 EV steps ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous (3 fps), Burst (30fps, 30 shots with a single press of the shutter, 1.4 MP) ", + "Buffer size": "10(JPEG), 3(RAW) ", + "Recording medium": " SD / SDHC ", + "Image format": "JPEG, RAW(SRW) ", + "White balance bracketing": "3 shots, +/-1 to +/-3 in either blue/amber or magenta/green axis ", + "Connectivity": "USB/AV/AC/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Mono ", + "External micro": "NA ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280x720 / 30 fps ", + "Full HD": "No ", + "Live autofocus": "Yes ", + "Video file format": "MPEG4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 100.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 100.txt new file mode 100644 index 0000000..7a6d8e3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 100.txt @@ -0,0 +1,96 @@ +{ + "id": 662, + "price": 499, + "year": "2010", + "brand": "Samsung", + "rankDxo": 62, + "rankColor": 22.6, + "rankDyn": 10.7, + "rankLln": 563, + "rankDxo_ranking": 238, + "rankColor_ranking": 177, + "rankDyn_ranking": 312, + "rankLln_ranking": 224, + "name": "Samsung NX 100", + "pixelDepth": 14.6, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2010", + "launchDateGraph": "2010-09-14", + "sensorraw": 14.7, + "link": "/Cameras/Samsung/NX-100", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_100/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2010  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4704 x 3124  \n ", + "Sensor photo detectors (Mpix) ": "14.7  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3/2 16/9 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 1000.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 1000.txt new file mode 100644 index 0000000..36593c5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 1000.txt @@ -0,0 +1,96 @@ +{ + "id": 804, + "price": 749, + "year": "2012", + "brand": "Samsung", + "rankDxo": 72, + "rankColor": 22.8, + "rankDyn": 12.4, + "rankLln": 840, + "rankDxo_ranking": 145, + "rankColor_ranking": 157, + "rankDyn_ranking": 140, + "rankLln_ranking": 140, + "name": "Samsung NX 1000", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2012", + "launchDateGraph": "2012-04-19", + "sensorraw": 20.43, + "link": "/Cameras/Samsung/NX-1000", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_1000/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2012  ", + "Indicative price (USD)": "\n 749  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5530 x 3694  \n ", + "Sensor photo detectors (Mpix) ": "20.43  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BC1030, 7.4V, 1030mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "321000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Multi-area, Selective single-point, Single, Continuous, Face Detection ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "+/- 3 (3 frames at 1/3 EV, 1/2 EV steps)  ", + "Exposure compensation": "+/- 3 EV (at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous (8 or 3 fps), Burst (5M size only), Self-timer (2 sec to 30 sec) ", + "Buffer size": "11 (JPEG), 8 (RAW) ", + "Recording medium": " SD, SDHC, SDXC  ", + "Image format": "JPEG, RAW (SRW) ", + "White balance bracketing": "3 frames from +/-1 to +/-3 in either blue/amber or magenta/green axis ", + "Connectivity": "USB 2.0 (480 Mbit/sec), HDMI, Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 11.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 11.txt new file mode 100644 index 0000000..979eedc --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 11.txt @@ -0,0 +1,96 @@ +{ + "id": 689, + "price": 649, + "year": "2010", + "brand": "Samsung", + "rankDxo": 63, + "rankColor": 22.7, + "rankDyn": 10.8, + "rankLln": 553, + "rankDxo_ranking": 228, + "rankColor_ranking": 170, + "rankDyn_ranking": 302, + "rankLln_ranking": 233, + "name": "Samsung NX 11", + "pixelDepth": 14.6, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Dec. 2010", + "launchDateGraph": "2010-12-28", + "sensorraw": 14.6, + "link": "/Cameras/Samsung/NX-11", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_11/vignette3.png", + "Type": "Hybrid ", + "Announced": "Dec. 2010  ", + "Indicative price (USD)": "\n 649  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4592 x 3056  \n ", + "Sensor photo detectors (Mpix) ": "14.6  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "Electronically controlled vertical-run focal plane shutter ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.0  ", + "Live view ": "NA ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "super sonic drive ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "BP1310 (1300mAh) 7.4V ", + "Battery weight (gr)": " ", + "Tropicalization": "0-40 C 5-85% ", + "Camera material": " ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.86 ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "-4.0 ~ +2.0 ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continuous AF, MF ", + "Number of autofocus points": "35 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "Single, Continuous, Burst, Self-timer, Bracket (AE, WB, PW), JPEG: 3fps up to 6shots (LDC: On) 10 shots (LDC: Off) Burst mode: 10, 15, 30fps selectable, 30 shots by 1 released RAW: 3fps up to 3shots ", + "Buffer size": " ", + "Recording medium": "SD/SDHC  ", + "Image format": "JPEG, RAW(SRW) ", + "White balance bracketing": " ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Mono ", + "External micro": "NA ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1280x720 / 30 fps ", + "Full HD": "No ", + "Live autofocus": "NA ", + "Video file format": "MPEG ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 20.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 20.txt new file mode 100644 index 0000000..ee6caee --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 20.txt @@ -0,0 +1,96 @@ +{ + "id": 802, + "price": 719, + "year": "2012", + "brand": "Samsung", + "rankDxo": 75, + "rankColor": 23.4, + "rankDyn": 12.9, + "rankLln": 785, + "rankDxo_ranking": 113, + "rankColor_ranking": 111, + "rankDyn_ranking": 83, + "rankLln_ranking": 162, + "name": "Samsung NX 20", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2012", + "launchDateGraph": "2012-04-19", + "sensorraw": 20.43, + "link": "/Cameras/Samsung/NX-20", + "chapo": " Introduction Features and SpecificationsThe Samsung NX20 has one of the highest resolutions of any hybrid camera on the market, with a 20.3 megapixel CMOS sensor (only the Sony NEX 7 sport the last 24 Mpix Sony sensor). Among APS-C cameras there are a few 24 Mpix models available, all of which are SLR (Nikon) or SLT (Sony).The specifications are good, the camera offers an excellent range of functions as you would expect. There are a few things that could be better: the video capture is at 30FPS and higher rates can only be recorded when the", + "linkReview": "https://www.dxomark.com/samsung-nx20-review-a-great-performance-among-stiff-competition/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_20/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2012  ", + "Indicative price (USD)": "\n 719  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5530 x 3694  \n ", + "Sensor photo detectors (Mpix) ": "20.43  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BP1310, 7.4V, 1130mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal and Plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.68 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continuous AF, MF ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "(3 frames at 1/3 EV, 1/2 EV steps) ", + "Exposure compensation": "(at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous ", + "Buffer size": " ", + "Recording medium": "SD / SDHC / SDXC ", + "Image format": "JPEG, RAW(SRW) ", + "White balance bracketing": " Yes (3 frames from +/-1 to +/-3 in either blue/amber or magenta/green axis) ", + "Connectivity": "USB/WIFI/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H264, MPEG-4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 200.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 200.txt new file mode 100644 index 0000000..0b646c0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 200.txt @@ -0,0 +1,96 @@ +{ + "id": 741, + "price": 899, + "year": "2011", + "brand": "Samsung", + "rankDxo": 69, + "rankColor": 22.6, + "rankDyn": 12.6, + "rankLln": 618, + "rankDxo_ranking": 168, + "rankColor_ranking": 175, + "rankDyn_ranking": 106, + "rankLln_ranking": 204, + "name": "Samsung NX 200", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2011", + "launchDateGraph": "2011-09-01", + "sensorraw": 20.24, + "link": "/Cameras/Samsung/NX-200", + "chapo": " Introduction The NX200 could be perceived as a slightly confusing object – unlike almost every other manufacturer, Samsung have not offered basic modes for beginners and advanced modes for more experienced photographers. Instead, they have gone with one approach applied across all modes. Dubbed “Smart Panel” it provides quick and simple access to all the shooting settings that you’ll want to use regularly.The sensor resolution is high too – at 20.3megapixels, it rivals many DSLR cameras in terms of pixel count. And Samsung have given it the ability to shoot at 7fps. Again, this is better", + "linkReview": "https://www.dxomark.com/samsung-nx200-review-a-hybrid-with-purpose/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_200/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2011  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5528 x 3662  \n ", + "Sensor photo detectors (Mpix) ": "20.24  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BP1030, 1030mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal and plastic ", + "Mount material": "Metal and plastic ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continuous AF ", + "Number of autofocus points": "35 ", + "Exposure bracketing": "3 frames up to +/- 3.0 EV ", + "Exposure compensation": "+ or - 3 EV (1/3EV step) ", + "Drive modes": "Single, Continuous High (7fps), Continuous Low (3fps), Burst (10/15 or 30fps, up to 30 shots per shutter press, 1.4 MP), Self-timer (2-30 seconds in 1 sec increments), Exposure Bracket, WB Bracket, Picture Wizard Bracket ", + "Buffer size": "11 (JPG), 8(RAW) ", + "Recording medium": " SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (SRW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB 2.0 (High Speed), Video Out (NTSC / PAL), HDMI (1080i, 720P, 576P/480P) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 210.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 210.txt new file mode 100644 index 0000000..abe4c72 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 210.txt @@ -0,0 +1,96 @@ +{ + "id": 805, + "price": 899, + "year": "2012", + "brand": "Samsung", + "rankDxo": 71, + "rankColor": 22.8, + "rankDyn": 12.5, + "rankLln": 719, + "rankDxo_ranking": 149, + "rankColor_ranking": 155, + "rankDyn_ranking": 114, + "rankLln_ranking": 179, + "name": "Samsung NX 210", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2012", + "launchDateGraph": "2012-04-19", + "sensorraw": 20.43, + "link": "/Cameras/Samsung/NX-210", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_210/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2012  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5530 x 3694  \n ", + "Sensor photo detectors (Mpix) ": "20.43  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BC1030, 7.4V, 1030mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "614000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Multi-area, Selective single-point, Single, Continuous, Face Detection ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "+/- 3 (3 frames at 1/3 EV, 1/2 EV steps)  ", + "Exposure compensation": "+/- 3 EV (at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous (8 or 3 fps), Burst (5M size only), Self-timer (2 sec to 30 sec) ", + "Buffer size": "11 (JPEG), 8 (RAW) ", + "Recording medium": " SD, SDHC, SDXC  ", + "Image format": "JPEG, RAW (SRW) ", + "White balance bracketing": "3 frames from +/-1 to +/-3 in either blue/amber or magenta/green axis ", + "Connectivity": "USB 2.0 (480 Mbit/sec), HDMI, Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 30.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 30.txt new file mode 100644 index 0000000..b92fda7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 30.txt @@ -0,0 +1,96 @@ +{ + "id": 931, + "price": 1000, + "year": "2014", + "brand": "Samsung", + "rankDxo": 76, + "rankColor": 23.5, + "rankDyn": 12.4, + "rankLln": 1014, + "rankDxo_ranking": 109, + "rankColor_ranking": 103, + "rankDyn_ranking": 143, + "rankLln_ranking": 107, + "name": "Samsung NX 30", + "pixelDepth": 20, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2014", + "launchDateGraph": "2014-01-02", + "sensorraw": 20.6, + "link": "/Cameras/Samsung/NX-30", + "chapo": " Introduction Although it shares the familiar guise of the Samsung NX20 with its built-in EVF this new model features the 20-Mpix CMOS sensor complete with on-chip phase detection AF pixels as found on the current finder-less NX300 model.The body styling is perhaps an acquired taste but in addition to the Hybrid AF system. the NX30 has a number of new and notable features. Although it looks plastic the body is in fact made from an alloy while the EVF is no longer fixed, it’s a pull out and tiltable unit instead.At the rear, the screen has", + "linkReview": "https://www.dxomark.com/samsung-nx30-sensor-review-convincing-option/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_30/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2014  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5546 x 3714  \n ", + "Sensor photo detectors (Mpix) ": "20.6  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BP1410, 1410mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1036000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continuous AF, MF  ", + "Number of autofocus points": "247 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single-shot, Continuous, Self-timer, Bracket (AE, WB, Picture Wizard) ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC ", + "Image format": "JPEG, RAW(SRW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX 300.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX 300.txt new file mode 100644 index 0000000..41b0d60 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX 300.txt @@ -0,0 +1,96 @@ +{ + "id": 851, + "price": 750, + "year": "2013", + "brand": "Samsung", + "rankDxo": 76, + "rankColor": 23.6, + "rankDyn": 12.7, + "rankLln": 942, + "rankDxo_ranking": 107, + "rankColor_ranking": 95, + "rankDyn_ranking": 100, + "rankLln_ranking": 117, + "name": "Samsung NX 300", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2013", + "launchDateGraph": "2013-01-03", + "sensorraw": 20.6, + "link": "/Cameras/Samsung/NX-300", + "chapo": " 20.3 megapixel APS-C CMOS sensorFeaturing a new 20.3 megapixel APS-C CMOS sensor and DRIMe-IV image processing engine the South Korean manufacturer claims the NX300 delivers improvements in speed, image quality, colour reproduction and noise reduction.The wide 100-25600 ISO range indicates the NX300 should be a great camera for low-light photography - something our DxOMark Sensor Scores will measure as soon as it’s available.For high-speed photography the new hybrid autofocus system offers both Contrast and Phase Detection technology and there’s 9fps continuous shooting and a 1/6000th sec maximum shutter speed. The NX300’s Smart Mode features 14 automatic exposure", + "linkReview": "https://www.dxomark.com/samsung-nx300-with-3d-and-wireless-technology/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX_300/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2013  ", + "Indicative price (USD)": "\n 750  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5546 x 3714  \n ", + "Sensor photo detectors (Mpix) ": "20.6  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, BP1130, 1130mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "Oled ", + "Monitor size": "3.31 ", + "Monitor pixel": "768000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continious AF, Manual ", + "Number of autofocus points": "105 ", + "Exposure bracketing": "3 frames up to +/- 3.0 EV ", + "Exposure compensation": "+ or - 3 EV (1/3EV step) ", + "Drive modes": "Single, Continious, Burst, Timer, Bracket ", + "Buffer size": " ", + "Recording medium": " SD, SDHC, SDXC, UHS-1 ", + "Image format": "JPEG, RAW (SRW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/Wi-Fi/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 (Video: MPEG4, AVC/H.264, Audio: AAC)  ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX1.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX1.txt new file mode 100644 index 0000000..0436d04 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX1.txt @@ -0,0 +1,96 @@ +{ + "id": 976, + "price": 1500, + "year": "2014", + "brand": "Samsung", + "rankDxo": 83, + "rankColor": 24.2, + "rankDyn": 13.2, + "rankLln": 1363, + "rankDxo_ranking": 54, + "rankColor_ranking": 51, + "rankDyn_ranking": 64, + "rankLln_ranking": 57, + "name": "Samsung NX1", + "pixelDepth": 28.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2014", + "launchDateGraph": "2014-09-15", + "sensorraw": 28.17, + "link": "/Cameras/Samsung/NX1", + "chapo": " The Samsung NX1 hybrid camera offers a 28.3Mp APS-C BSI CMOS sensor in a D-SLR style magnesium alloy shell with large handgrip and top-plate LCD for improved handling.Samsung NX1 Specification: 15fps burst shooting, 4k video and 205 AF pointsSamsung really want to push the boundaries of the hybrid camera category with the launch of the new Samsung NX1, which they claim offers cutting edge design and industry-leading camera technologies. With some specs that will catch the attention of pro shooters fed up of lugging huge and heavy cameras around, the Samsung NX1 does on the face of", + "linkReview": "https://www.dxomark.com/samsung-nx1-preview-samsung-up-the-stakes-in-the-hybrid-aps-c-game/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX1/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2014  ", + "Indicative price (USD)": "\n 1500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6496 x 4336  \n ", + "Sensor photo detectors (Mpix) ": "28.17  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "15.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Electronic / Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "15.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Samsung NX  ", + "Weight (gr)": "550", + "Battery type": "Li-ion, BP1900, 1860mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.04 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "Oled ", + "Monitor size": "3 ", + "Monitor pixel": "1036000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single, Continuous, Touch, Face Detection, Live View, MF ", + "Number of autofocus points": "205 ", + "Exposure bracketing": "+/- 3 EV (1EV steps) ", + "Exposure compensation": "-5EV - 3 EV (1/3EV steps) ", + "Drive modes": "Single, high-speed continuous, low-speed continuous, self-timer (2-30 secs) ", + "Buffer size": " ", + "Recording medium": "SD,\nSDHC\nSDXC\nUHS-I\nUHS-II ", + "Image format": "JPEG, RAW (SRW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB 3.0, HDMI, Wi-Fi, NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "4096 x 2160 24 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4 ", + "Video codec": "HEVC / H.265 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX1100.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX1100.txt new file mode 100644 index 0000000..433362d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX1100.txt @@ -0,0 +1,96 @@ +{ + "id": 873, + "price": 600, + "year": "2013", + "brand": "Samsung", + "rankDxo": 73, + "rankColor": 23, + "rankDyn": 12.5, + "rankLln": 852, + "rankDxo_ranking": 131, + "rankColor_ranking": 132, + "rankDyn_ranking": 126, + "rankLln_ranking": 137, + "name": "Samsung NX1100", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2013", + "launchDateGraph": "2013-04-11", + "sensorraw": 20.43, + "link": "/Cameras/Samsung/NX1100", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX1100/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2013  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5530 x 3694  \n ", + "Sensor photo detectors (Mpix) ": "20.43  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": "222", + "Battery type": "Li-ion, BP1030, 1030mAh ", + "Battery weight (gr)": "46.8", + "Tropicalization": "No ", + "Camera material": "plastic ", + "Mount material": "metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continous AF, Manual Focus ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "+/- 3 (3 frames at 1/3 EV, 1/2 EV steps)  ", + "Exposure compensation": "+/- 3 EV (at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous (8 or 3 fps), Burst (5M size only), Self-timer (2 sec to 30 sec) ", + "Buffer size": "11 (JPEG), 8 (RAW) ", + "Recording medium": " SD, SDHC, SDXC  ", + "Image format": "JPEG, RAW (SRW) ", + "White balance bracketing": "3 frames from +/-1 to +/-3 in either blue/amber or magenta/green axis ", + "Connectivity": "USB 2.0 (480 Mbit/sec), HDMI, Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX2000.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX2000.txt new file mode 100644 index 0000000..2801cda --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX2000.txt @@ -0,0 +1,96 @@ +{ + "id": 882, + "price": 649, + "year": "2013", + "brand": "Samsung", + "rankDxo": 75, + "rankColor": 23.4, + "rankDyn": 12.3, + "rankLln": 908, + "rankDxo_ranking": 117, + "rankColor_ranking": 115, + "rankDyn_ranking": 151, + "rankLln_ranking": 125, + "name": "Samsung NX2000", + "pixelDepth": 20.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "May. 2013", + "launchDateGraph": "2013-05-01", + "sensorraw": 20.56, + "link": "/Cameras/Samsung/NX2000", + "chapo": " Introduction Specification and Features&nbsp;Introduced in May 2013, the Samsung NX2000 is the firm’s upper entry-level mirrorless model sitting immediately above the NX1100 but beneath the new NX Mini and NX3000.The NX2000 is based around the firm’s 20.3M-Pix CMOS sensor and features the firm’s new DRIMe IV level processor permitting a doubling of the maximum sensitivity up to ISO 25,600 over the entry-level NX1100 as well as in-camera lens corrections and a HD 3D video capture option (with the appropriate lens). In terms of hardware features over the NX1100, the NX2000 gets a 3.7” 1.15M-dot LCD touchscreen", + "linkReview": "https://www.dxomark.com/samsung-nx2000-sensor-review-entry-level-contender/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX2000/vignette3.png", + "Type": "Hybrid ", + "Announced": "May. 2013  ", + "Indicative price (USD)": "\n 649  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5536 x 3714  \n ", + "Sensor photo detectors (Mpix) ": "20.56  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": "228", + "Battery type": "Li-ion, BP1130 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": "No ", + "Monitor type": "LCD ", + "Monitor size": "3.7 ", + "Monitor pixel": "1152000 ", + "Articulated screen": "No ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single AF, Continous AF, Manual Focus ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "+/- 3 (3 frames at 1/3 EV, 1/2 EV steps)  ", + "Exposure compensation": "+/- 3 EV (at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous, Burst, Self-timer ", + "Buffer size": "11 (JPEG), 8 (RAW) ", + "Recording medium": " SD, SDHC, SDXC  ", + "Image format": "JPEG, RAW (SRW) ", + "White balance bracketing": "3 frames from +/-1 to +/-3 in either blue/amber or magenta/green axis ", + "Connectivity": "USB 2.0 (480 Mbit/sec), HDMI, Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Samsung NX500.txt b/scr/模糊专家系统/scrape/scraped/Samsung NX500.txt new file mode 100644 index 0000000..d5d9116 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Samsung NX500.txt @@ -0,0 +1,96 @@ +{ + "id": 1007, + "price": 800, + "year": "2015", + "brand": "Samsung", + "rankDxo": 87, + "rankColor": 24.8, + "rankDyn": 13.9, + "rankLln": 1379, + "rankDxo_ranking": 34, + "rankColor_ranking": 27, + "rankDyn_ranking": 26, + "rankLln_ranking": 55, + "name": "Samsung NX500", + "pixelDepth": 28, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2015", + "launchDateGraph": "2015-02-05", + "sensorraw": 28.17, + "link": "/Cameras/Samsung/NX500", + "chapo": " Size doesn’t always matter, as Samsung’s NX500 squeezes in a 28Mp APS-C BSI (Backside Illuminated) sensor for high-resolution stills and 4k-video capture in a pocket-sized body.Samsung NX500 Specifications: Small shell, big heartTaking the impressive features of the large NX1 camera and stuffing them into a pocket-sized body is no mean feat, and that’s what Samsung has managed with their new NX500 mirrorless hybrid. Built around the same Backside Illuminated 28Mp APS-C sensor in the NX1, the new Samsung NX500 not only captures high-resolution 6480 x 4320 pixel stills in either JPEG or RAW format, but captures 4k", + "linkReview": "https://www.dxomark.com/samsung-nx500-preview-the-power-of-the-nx1-in-the-palm-of-your-hand/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NX500/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2015  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6496 x 4336  \n ", + "Sensor photo detectors (Mpix) ": "28.17  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Electronic / Mechanical ", + "Fastest - Slowest speed (s)": "1/6000 - 30.0  ", + "Frame rate (fps)": "9.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Samsung NX  ", + "Weight (gr)": "286", + "Battery type": "Li-Ion, BP1130, 7.6V, 8.58Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "OLED ", + "Monitor size": "3 ", + "Monitor pixel": "1036000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Active AF, Single AF, Continuous AF, MF ", + "Number of autofocus points": "209 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous, Self-timer, Bracket ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC (UHS-1 support) ", + "Image format": "JPEG, RAW (SRW), MPO (3D) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB / Wi-Fi / NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "4096x2160 / 24fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MOV, AVI ", + "Video codec": "H.265 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A3000.txt b/scr/模糊专家系统/scrape/scraped/Sony A3000.txt new file mode 100644 index 0000000..ea66ba8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A3000.txt @@ -0,0 +1,96 @@ +{ + "id": 906, + "price": 400, + "year": "2013", + "brand": "Sony", + "rankDxo": 78, + "rankColor": 23.7, + "rankDyn": 12.8, + "rankLln": 1068, + "rankDxo_ranking": 97, + "rankColor_ranking": 83, + "rankDyn_ranking": 87, + "rankLln_ranking": 100, + "name": "Sony A3000", + "pixelDepth": 20.1, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2013", + "launchDateGraph": "2013-08-27", + "sensorraw": 20.09, + "link": "/Cameras/Sony/A3000", + "chapo": " Introduction Although the A3000 looks like an Alpha SLT model with its built-in EVF and SLR layout, it’s more akin to the Sony A7 mirrorless models. Instead of full-frame it features a slightly smaller than standard 23.2 x 15.4mm APS-C type CMOS sensor and it has an E-mount intended for the firm’s range of lenses for NEX cameras.Apart from the built-in EVF and 20-Mpix sensor, the A3000 is intended as an entry-level model, much like the NEX-3N. As a result it lacks some of the refinements of recent models. Sensitivity runs from ISO100-16,000, for instance, and", + "linkReview": "https://www.dxomark.com/sony-a3000-review-entry-level-body-high-performance-sensor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A3000/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2013  ", + "Indicative price (USD)": "\n 400  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3656  \n ", + "Sensor photo detectors (Mpix) ": "20.09  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 16000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.5  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Sony E  ", + "Weight (gr)": " ", + "Battery type": "LITHIUM NP-FW50 (7.2V) (1080mAh) ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +3.5 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "230400 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": " Single-shot AF(AF-S), Continuous AF(AF-C), Auto Focus, Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 ", + "Drive modes": "Single-shot, Continuous, Speed Priority Continuous, Self-timer (10/2 sec. delay), Self-timer (Cont.) (with 10 sec. delay; 3/5 exposures), Bracketing ", + "Buffer size": "JPEG Standard (30 shots) JPEG Fine (13 shots) RAW+JPEG (5 shots) ", + "Recording medium": "Memory Stick PRO Duo, Pro-HG Duo, media, SD, SDHC and SDXC memory card ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI/RM-VPR1 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A5000.txt b/scr/模糊专家系统/scrape/scraped/Sony A5000.txt new file mode 100644 index 0000000..2c2d35d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A5000.txt @@ -0,0 +1,96 @@ +{ + "id": 929, + "price": 500, + "year": "2014", + "brand": "Sony", + "rankDxo": 79, + "rankColor": 23.8, + "rankDyn": 13, + "rankLln": 1089, + "rankDxo_ranking": 80, + "rankColor_ranking": 71, + "rankDyn_ranking": 72, + "rankLln_ranking": 92, + "name": "Sony A5000", + "pixelDepth": 20, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jan. 2014", + "launchDateGraph": "2014-01-07", + "sensorraw": 20.09, + "link": "/Cameras/Sony/A5000", + "chapo": " Introduction With the introduction of full-frame A7 mirrorless models Sony has quietly dropped the NEX naming of the APS-C format cameras, uniting all under the Alpha brand. Externally, the A5000 looks very similar to the earlier 16-Mpix NEX-5T. Inside the compact body, claimed by Sony to be the smallest and lightest of its type at 7.4oz&nbsp; (210g), it adopts a new 20.1-Mpix CMOS sensor and Bionz X processor with sensitivity up to ISO 16,000.Despite the modest increase in pixel count and new processor, the specification is in-fact more like that of a revised NEX-3. While it", + "linkReview": "https://www.dxomark.com/sony-alpha-a5000-sensor-review-seriously-small-but-big-on-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A5000/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jan. 2014  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3656  \n ", + "Sensor photo detectors (Mpix) ": "20.09  ", + "Sensor size (mm)": "15.4 x 23.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.55 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 16000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "3.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "212", + "Battery type": "Li-Ion, NP-FW50, 7.2V ", + "Battery weight (gr)": "57", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous, Speed priority continuous, Self-timer, Bracketing ", + "Buffer size": " ", + "Recording medium": " Memory Stick PRO Duo, SD, SDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "No ", + "Connectivity": "micro HDMI/USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A5100.txt b/scr/模糊专家系统/scrape/scraped/Sony A5100.txt new file mode 100644 index 0000000..a33bd4b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A5100.txt @@ -0,0 +1,96 @@ +{ + "id": 967, + "price": 550, + "year": "2014", + "brand": "Sony", + "rankDxo": 80, + "rankColor": 23.8, + "rankDyn": 12.7, + "rankLln": 1347, + "rankDxo_ranking": 72, + "rankColor_ranking": 71, + "rankDyn_ranking": 90, + "rankLln_ranking": 59, + "name": "Sony A5100", + "pixelDepth": 24.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2014", + "launchDateGraph": "2014-08-18", + "sensorraw": 24.24, + "link": "/Cameras/Sony/A5100", + "chapo": " Boasting a 24.3Mp APS-C sensor this little Sony a5100 hybrid camera might be the smallest in the world but should shoot some big and impressive picturesSony a5100 Specification: 24.3Mp APS-C sensor promises great resultsSony has really grasped the hybrid market releasing a range of different formats that all pack great image quality. Their latest release, the Sony a5100, sits in their Advanced Amateur Range and replaces its predecessor, the lower resolution 20Mp Sony a5000. Billed as the world’s smallest interchangeable lens camera, the Sony a5100 is aimed more towards the mass market than the serious amateur or", + "linkReview": "https://www.dxomark.com/sony-a5100-preview-the-world-s-smallest-interchangeable-lens-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A5100/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2014  ", + "Indicative price (USD)": "\n 550  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "224", + "Battery type": "Li-Ion, NP-FW50, 7.2V ", + "Battery weight (gr)": "57", + "Tropicalization": "No ", + "Camera material": "Plastic ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-A (Automatic AF), AF-S (Single-shot AF), AF-C ( Continuous AF), DMF (Direct Manual Focus), Manual Focus ", + "Number of autofocus points": "179 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3EV (1/3EV steps) ", + "Drive modes": "Single, Continuous, Speed priority continuous, Self-timer, Bracketing ", + "Buffer size": " ", + "Recording medium": "Memory Stick PRO Duo, Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD, SDHC (UHS-I compliant), SDXC (UHS-I compliant) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "Micro USB, HDMI (Type-D) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, AVI ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A6000.txt b/scr/模糊专家系统/scrape/scraped/Sony A6000.txt new file mode 100644 index 0000000..390e49f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A6000.txt @@ -0,0 +1,96 @@ +{ + "id": 942, + "price": 799, + "year": "2014", + "brand": "Sony", + "rankDxo": 82, + "rankColor": 24.1, + "rankDyn": 13.1, + "rankLln": 1347, + "rankDxo_ranking": 58, + "rankColor_ranking": 55, + "rankDyn_ranking": 66, + "rankLln_ranking": 58, + "name": "Sony A6000", + "pixelDepth": 24.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2014", + "launchDateGraph": "2014-02-12", + "sensorraw": 24.24, + "link": "/Cameras/Sony/A6000", + "chapo": " Introduction Sony’s re-branding of the APS-C NEX mirrorless models as Alpha has presented an opportunity to realigned the range. Although the new A6000 announced in February this year features a 24-Mpix CMOS like the technically still current NEX-7 it is seen as a replacement to the newer NEX-6.Like that model it has dedicated on-chip phase-detection AF pixels (in addition to the usual contrast detection) although the A6000 can boast 179 AF points covering a greater area, up from 50-percent of the frame on the NEX-6 to just over 90-percent.The Exmor type 24-Mpix APS-C CMOS sensor is", + "linkReview": "https://www.dxomark.com/sony-a6000-sensor-review-little-wonder/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A6000/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2014  ", + "Indicative price (USD)": "\n 799  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Sony E  ", + "Weight (gr)": " ", + "Battery type": "NP-FW50 (7.2V), 1080mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-A, AF-S, AF-C, DMF,MF ", + "Number of autofocus points": "179 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": " Single Shot, Continuous shooting (Hi/Mid/Lo selectable), Self-timer. ", + "Buffer size": " ", + "Recording medium": "SD/ SDHC/SDXC, Memory Stick Pro Duo/ Pro-HG Duo ", + "Image format": "JPEG, RAW(ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A6300.txt b/scr/模糊专家系统/scrape/scraped/Sony A6300.txt new file mode 100644 index 0000000..ef8bc39 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A6300.txt @@ -0,0 +1,96 @@ +{ + "id": 1072, + "price": 1000, + "year": "2016", + "brand": "Sony", + "rankDxo": 85, + "rankColor": 24.4, + "rankDyn": 13.7, + "rankLln": 1437, + "rankDxo_ranking": 44, + "rankColor_ranking": 44, + "rankDyn_ranking": 33, + "rankLln_ranking": 50, + "name": "Sony A6300", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2016", + "launchDateGraph": "2016-02-03", + "sensorraw": 24.24, + "link": "/Cameras/Sony/A6300", + "chapo": " Along with the 24-Mpix sensor for still shots, videographers will appreciate the UHD 4K video at up to 30 fps and the 3.0-inch 0.9m-dot tilting LCD monitor. The magnesium alloy body is weatherproof, and despite the small size, the camera has a tiny 2.3M-dot electronic viewfinder with 0.7x magnification.Key features and specifications24.2-Mpix APS-C Exmor CMOS sensorBIONZ XTM image processor3.0-inch 0.9M-dot tilting LCD monitorUHD 4K video at up to 30 fps, 1080p at 120 fps4D Focus with 425-point phase-detection systemISO up to 25,600 (51,200 extended)11 fps shooting with 21 RAW frame bufferBuilt-in Wi-Fi with NFCMagnesium alloy, weather-sealed bodyMeasurements:", + "linkReview": "https://www.dxomark.com/sony-a6300-sensor-review-sony-s-best-aps-c-sensor-to-date/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A6300/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2016  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "361", + "Battery type": "Li-ion, NP-FW50, 7.4V, 1020mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "2.95 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Automatic AF (AF-A), Single-shot AF (AF-S), Continuous AF (AF-C), Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "425 ", + "Exposure bracketing": "Single/Bracket: Cont., 3/5/9 frames selectable. With 3 or 5 frames,in 1/3, 1/2, 2/3, 1.0, 2.0 or\n3.0 EV increments, with 9 frames, in 1/3, 1/2, 2/3 or 1.0 EV increments ", + "Exposure compensation": "+/- 5.0 EV (in 1/3 EV or 1/2 EV steps) ", + "Drive modes": "Single shooting, Continuous shooting (Hi+/Hi/Mid/Lo selectable), Self-timer, Self-timer (Cont.), Bracketing (Cont., Single, White Balance, DRO) ", + "Buffer size": "44 (JPEG), 21 (RAW), 21 (RAW+JPEG) ", + "Recording medium": "Memory Stick PRO Duo, Memory Stick PRO-HG Duo, Memory Stick Micro (M2), SD, SDHC (UHS-I compliant), SDXC (UHS-I compliant), microSD, microSDHC, microSDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "3 frames, H/L selectable ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S/AVCHD format Ver. 2.0 compliant/MP4 ", + "Video codec": "XAVC S: MPEG-4 AVC/H.264, AVCHD: MPEG-4 AVC/H.264, MP4: MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A6500.txt b/scr/模糊专家系统/scrape/scraped/Sony A6500.txt new file mode 100644 index 0000000..e26e212 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A6500.txt @@ -0,0 +1,96 @@ +{ + "id": 1127, + "price": 1400, + "year": "2016", + "brand": "Sony", + "rankDxo": 85, + "rankColor": 24.5, + "rankDyn": 13.7, + "rankLln": 1405, + "rankDxo_ranking": 46, + "rankColor_ranking": 40, + "rankDyn_ranking": 35, + "rankLln_ranking": 53, + "name": "Sony A6500", + "pixelDepth": 24.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2016", + "launchDateGraph": "2016-10-06", + "sensorraw": 24.24, + "link": "/Cameras/Sony/A6500", + "chapo": " The A6500 remains the top-ranked APS-C hybrid we’ve tested, however, with class-leading Portrait and Landscape scores offering exceptional image quality for landscape, portrait, architectural, and street photographers, as well as for photojournalists after the convenience of a smaller camera body. Updates over the A6300 center around new and improved features, including a bigger buffer for longer continuous burst shooting, a LCD touchscreen, and the inclusion of Sony’s 5-axis SteadyShot INSIDE image stabilization system.Highlights Large APS-C sensorClass leading sensor scores5-axis image stabilizationLCD touchscreenLarger buffer4k videoPotential drawbacksSame image quality as the Sony A6300$400 more than Sony A6300Overall image qualityThe Sony", + "linkReview": "https://www.dxomark.com/sony-a6500-sensor-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A6500/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2016  ", + "Indicative price (USD)": "\n 1400  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 51200 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "11.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FW50, 7.4V, 1020mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-A (Automatic AF), AF-S (Single-shot AF), AF-C ( Continuous AF), DMF (Direct Manual Focus), Manual Focus ", + "Number of autofocus points": "425 ", + "Exposure bracketing": "Bracket: Cont., Bracket: Single, 3/5/9 frames selectable. With 3 or 5 frames, in 1/3, 1/2, 2/3, 1.0, 2.0, or 3.0 EV increments, with 9 frames, in 1/3, 1/2, 2/3, or 1.0 EV increments ", + "Exposure compensation": "+/- 5.0 EV (1/3 EV, 1/2 EV steps selectable) ", + "Drive modes": "Single, Continuous (Hi+/Hi/Mid/Lo selectable), Self-timer, Self-timer (Cont.), Bracket: Single, Bracket: Cont., White Balance bracket, DRO bracket ", + "Buffer size": "233 (JPEG), 107 (RAW), 100 (RAW+JPEG) ", + "Recording medium": "Memory Stick Duo,\nSD memory card ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/NFC/WIFI ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD format Ver. 2.0 compliant, MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A7 II.txt b/scr/模糊专家系统/scrape/scraped/Sony A7 II.txt new file mode 100644 index 0000000..3741dab --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A7 II.txt @@ -0,0 +1,96 @@ +{ + "id": 996, + "price": 1600, + "year": "2014", + "brand": "Sony", + "rankDxo": 90, + "rankColor": 24.9, + "rankDyn": 13.6, + "rankLln": 2449, + "rankDxo_ranking": 22, + "rankColor_ranking": 23, + "rankDyn_ranking": 39, + "rankLln_ranking": 28, + "name": "Sony A7 II", + "pixelDepth": 24.3, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Nov. 2014", + "launchDateGraph": "2014-11-20", + "sensorraw": 24.24, + "link": "/Cameras/Sony/A7-II", + "chapo": " The new Sony a7 II features the same 24.2Mp full frame sensor as its predecessor and sits alongside the 12Mp a7S and 36.3Mp a7R in the Sony a7 range of full frame hybrid camerasSony a7 II Specification: Same 24.2Mp sensor with enhanced build qualityThere’s no doubt about it that the big news on the new Sony a7 II is its new 5-axis image stabilization system. It’s a camera-based sensor shift mechanism that can move the sensor along 5 different axes to counteract camera shake when using slow shutter speeds. Sony claim the new system can offer up", + "linkReview": "https://www.dxomark.com/sony-a7-ii-preview-5-axis-image-stabilisation-for-full-frame-sony-a7-ii-hybrid/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A7_II/vignette3.png", + "Type": "Hybrid ", + "Announced": "Nov. 2014  ", + "Indicative price (USD)": "\n 1600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "23.9 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 51200 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony FE  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, NP-FW50, 7.2V, 1020mAh, 7.3Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, MF ", + "Number of autofocus points": "117 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5EV ", + "Drive modes": "Single shooting, Continuous shooting, Speed Priority Continuous shooting, Self-timer , Bracketing ", + "Buffer size": "25 (RAW+JPG) ", + "Recording medium": "Memory Stick PRO Duo, Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD, SDHC, SDXC ", + "Image format": "JPEG, RAW(ARW) ", + "White balance bracketing": " ", + "Connectivity": "Multi / Micro USB Terminal, Wi-Fi (IEEE802.11b/g/n), HDMI micro connector (Type-D) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 (60p (50p) / 60i (50i) / 24p) ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "XAVC-S ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A7.txt b/scr/模糊专家系统/scrape/scraped/Sony A7.txt new file mode 100644 index 0000000..864193b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A7.txt @@ -0,0 +1,96 @@ +{ + "id": 916, + "price": 1700, + "year": "2013", + "brand": "Sony", + "rankDxo": 90, + "rankColor": 24.8, + "rankDyn": 14.2, + "rankLln": 2248, + "rankDxo_ranking": 21, + "rankColor_ranking": 25, + "rankDyn_ranking": 14, + "rankLln_ranking": 37, + "name": "Sony A7", + "pixelDepth": 24, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-16", + "sensorraw": 24.24, + "link": "/Cameras/Sony/A7", + "chapo": " Introduction Introduced in October alongside the 36-Mpix A7R, this SLR-style mirrorless model with its 24-Mpix full-frame sensor has been eclipsed somewhat by the promise of more highly detailed files from its sibling. However, at around $600 less, the short register and the less demanding 24-Mpix sensor of the A7 sounds promising for those wishing to use legacy SLR and old rangefinder lenses with the camera.Apart from pixel count the A7 sensor differs in one other important aspect. It has a number of pixels dedicated to phase detection AF, allowing faster autofocus than A7R with the new", + "linkReview": "https://www.dxomark.com/sony-a7-review-mirrorless-marvel/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A7/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 1700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "23.9 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony FE  ", + "Weight (gr)": "417", + "Battery type": "Li-ion, NP-FW50 ", + "Battery weight (gr)": "57", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1230000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, DMF, MF ", + "Number of autofocus points": "117 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single shooting, Continuous shooting, Speed Priority Continuous shooting, Self-timer , Self-timer continuous, Bracketing ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC, Memory Stick Duo, Pro Duo, Pro-HG Duo ", + "Image format": "JPEG, RAW(ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "HDMI type D/USB 2.0 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 60fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD format Ver. 2.0 compliant, MP4 ", + "Video codec": "MPEG-4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A7R II.txt b/scr/模糊专家系统/scrape/scraped/Sony A7R II.txt new file mode 100644 index 0000000..8fc1e90 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A7R II.txt @@ -0,0 +1,96 @@ +{ + "id": 1035, + "price": 3198, + "year": "2015", + "brand": "Sony", + "rankDxo": 98, + "rankColor": 26, + "rankDyn": 13.9, + "rankLln": 3434, + "rankDxo_ranking": 5, + "rankColor_ranking": 5, + "rankDyn_ranking": 25, + "rankLln_ranking": 6, + "name": "Sony A7R II", + "pixelDepth": 42.4, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2015", + "launchDateGraph": "2015-06-10", + "sensorraw": 42.56, + "link": "/Cameras/Sony/A7R-II", + "chapo": " Introduction Specifications and FeaturesWith the original Sony A7R mirrorless camera offering a related sensor and therefore similar performance to the much larger and heavier Nikon D810 SLR, it’s perhaps unsurprising that the update to that model, the Sony A7R II, is one of the most talked-about models of the year. Although the body is a little bigger (and more durable) than its predecessor, the A7R II has potentially a lot more to offer.Along with an increase in pixel count to 42-Mpix, the full-frame sensor is the first of its kind to feature backside illuminated (BSI) architecture", + "linkReview": "https://www.dxomark.com/sony-a7r-ii-sensor-review-new-high-water-mark-in-sensor-dynamics/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A7R_II/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2015  ", + "Indicative price (USD)": "\n 3198  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8000 x 5320  \n ", + "Sensor photo detectors (Mpix) ": "42.56  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 102400 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Sony FE  ", + "Weight (gr)": " ", + "Battery type": "NP-FW50, Li-Ion, 7.3V, 1080mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.78 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +3.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Automatic AF (AF-A), Single-shot AF (AF-S), Continuous AF (AF-C) ", + "Number of autofocus points": "399 ", + "Exposure bracketing": "+/-5 (3, 5 frames at 1/3 EV, 1/2 EV, 2/3 EV, 1 EV, 2 EV steps)  ", + "Exposure compensation": "+/-5 (at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous, Self-timer (10, 5 or 2 sec delay), Self-timer (Cont.: 10, 5 or 2 sec delay 3 or 5 frames) ", + "Buffer size": "24 (JPEG Extra Fine L), 30 (JPEG Fine L), 37 (JPEG Standard L), 23 (RAW), 22 (RAW+JPEG) ", + "Recording medium": "Memory Stick Duo, Memory Stick PRO Duo, Memory Stick PRO Duo (High Speed), Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD Memory Card, SDHC Memory Card (UHS-I), SDXC Memory Card (UHS-I) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "3 frames, H/L selectable ", + "Connectivity": "USB2.0, Wi-Fi (IEEE802.11 b/g/n) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD, MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A7R III.txt b/scr/模糊专家系统/scrape/scraped/Sony A7R III.txt new file mode 100644 index 0000000..fe1407d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A7R III.txt @@ -0,0 +1,96 @@ +{ + "id": 1187, + "price": 3200, + "year": "2017", + "brand": "Sony", + "rankDxo": 100, + "rankColor": 26, + "rankDyn": 14.7, + "rankLln": 3523, + "rankDxo_ranking": 4, + "rankColor_ranking": 5, + "rankDyn_ranking": 5, + "rankLln_ranking": 4, + "name": "Sony A7R III", + "pixelDepth": 42.4, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2017", + "launchDateGraph": "2017-10-25", + "sensorraw": 42.56, + "link": "/Cameras/Sony/A7R-III", + "chapo": "The first cameras in Sony’s Alpha 7-series of mirrorless full-frame cameras were announced in October 2013 and are credited with bringing compact system cameras (CSCs) to the attention of professional photographers. Since then, they’ve proven extremely popular and helped Sony win a huge chunk of the interchangeable-lens camera market.\r\n\r\nThe Sony A7R line is the high-resolution offering, and the 42.4Mp A7R III replaces the A7R II, which itself was the replacement for the original (36Mp) A7R.\r\n\r\nWhile the A7R III and A7R II have a backlit sensor with the same pixel count, the Mark III’s sensor is augmented with a front-end LSI", + "linkReview": "https://www.dxomark.com/?p=16053", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A7R_III/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2017  ", + "Indicative price (USD)": "\n 3200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8000 x 5320  \n ", + "Sensor photo detectors (Mpix) ": "42.56  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 32000 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Sony FE  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FZ100, 7.2V, 2280mAh ", + "Battery weight (gr)": "83", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.78 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1440000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-A (Automatic AF), AF-S (Single-shot AF), AF-C ( Continuous AF), DMF (Direct Manual Focus), Manual Focus ", + "Number of autofocus points": "425 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-5 (at 1/3 EV, 1/2 EV steps)  ", + "Drive modes": "Single, Continuous (Hi+/Hi/Mid/Lo selectable), Self-timer, Self-timer (Cont.), Bracket: Single, Bracket: Cont., White Balance bracket, DRO bracket ", + "Buffer size": "76 (JPEG), 28 (RAW), 28 (RAW+JPEG) ", + "Recording medium": "Memory Stick Duo, Memory Stick PRO Duo, Memory Stick PRO Duo (High Speed), Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD Memory Card, SDHC Memory Card (UHS-I), SDXC Memory Card (UHS-I) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD format Ver. 2.0 compliant, MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A7R.txt b/scr/模糊专家系统/scrape/scraped/Sony A7R.txt new file mode 100644 index 0000000..e906fe3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A7R.txt @@ -0,0 +1,96 @@ +{ + "id": 917, + "price": 2300, + "year": "2013", + "brand": "Sony", + "rankDxo": 95, + "rankColor": 25.6, + "rankDyn": 14.1, + "rankLln": 2746, + "rankDxo_ranking": 10, + "rankColor_ranking": 11, + "rankDyn_ranking": 18, + "rankLln_ranking": 24, + "name": "Sony A7R", + "pixelDepth": 36, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-16", + "sensorraw": 36.37, + "link": "/Cameras/Sony/A7R", + "chapo": " Introduction The Sony Alpha 7R is the higher-end, higher-pixel count version of two new compact full-frame mirrorless cameras from Sony to feature the firm’s existing E-mount.The two models share the same body and many features and differ really only by their sensor. The more modestly priced of the two, the Alpha 7 has a 24-Mpix sensor but with the added capability of phase detection AF afforded by an on-chip pixel array.The A7R on the other hand has a full-frame 36-Mpix sensor without an optical low pass filter for optimal resolution and image sharpness but lacks the", + "linkReview": "https://www.dxomark.com/sony-alpha-7r-review-highest-ever-full-frame-image-quality/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A7R/vignette3.png", + "Type": "Hybrid ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 2300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 7392 x 4920  \n ", + "Sensor photo detectors (Mpix) ": "36.37  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony FE  ", + "Weight (gr)": "408", + "Battery type": "Li-ion, NP-FW50 ", + "Battery weight (gr)": "57", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1230000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, DMF, MF ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single shooting, Continuous shooting, Speed Priority Continuous shooting, Self-timer , Self-timer continuous, Bracketing ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC, Memory Stick Duo, Pro Duo, Pro-HG Duo ", + "Image format": "JPEG, RAW(ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "HDMI type D/USB 2.0 ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920x1080 / 60fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD format Ver. 2.0 compliant, MP4 ", + "Video codec": "MPEG-4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A7S II.txt b/scr/模糊专家系统/scrape/scraped/Sony A7S II.txt new file mode 100644 index 0000000..1941da8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A7S II.txt @@ -0,0 +1,96 @@ +{ + "id": 1047, + "price": 3000, + "year": "2015", + "brand": "Sony", + "rankDxo": 85, + "rankColor": 23.6, + "rankDyn": 13.3, + "rankLln": 2993, + "rankDxo_ranking": 43, + "rankColor_ranking": 91, + "rankDyn_ranking": 56, + "rankLln_ranking": 14, + "name": "Sony A7S II", + "pixelDepth": 12.2, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2015", + "launchDateGraph": "2015-09-11", + "sensorraw": 12.12, + "link": "/Cameras/Sony/A7S-II", + "chapo": " Introduction Specifications and FeaturesThe Sony A7S II is the not-unexpected update of the earlier video-centric 12-Mpix A7S. Like its predecessor, it adopts a full-frame 12.2MP Exmor CMOS sensor, but now boasts 5-axis stabilization and internal UHD 4K recording at 30 fps with full pixel read-out (without pixel-binning). In addition, there’s 1080p recording at up to 120 fps (for slow-motion footage) and all in XAVC S format. Picture Profile settings have been redeveloped, adding S-Gamut3.Cine/S-Log3 and S-Gamut3/S-Log3, which deliver what the company claims (“wide dynamic range and simple color correction”) and complement the camera’s 4K recording capabilities.The BIONZ", + "linkReview": "https://www.dxomark.com/sony-a7s-ii-sensor-review-low-light-performance-redefined/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A7S_II/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2015  ", + "Indicative price (USD)": "\n 3000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4256 x 2848  \n ", + "Sensor photo detectors (Mpix) ": "12.12  ", + "Sensor size (mm)": "23.8 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 409600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": " ", + "Mount type": "Sony FE  ", + "Weight (gr)": " ", + "Battery type": "NP-FW50 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.78 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "169 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single shooting, Continuous shooting, Speed Priority Continuous shooting, Self-timer, Self-timer (Cont.), Bracketing (Cont., Single, White Balance, DRO) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC, Memory Stick Duo/Pro Duo/Pro-HG Duo ", + "Image format": "JPEG, RAW(ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MPEG-4, AVCHD, XAVC S ", + "Video codec": " ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony A7S.txt b/scr/模糊专家系统/scrape/scraped/Sony A7S.txt new file mode 100644 index 0000000..361bf6e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony A7S.txt @@ -0,0 +1,96 @@ +{ + "id": 949, + "price": 2499, + "year": "2014", + "brand": "Sony", + "rankDxo": 87, + "rankColor": 23.9, + "rankDyn": 13.2, + "rankLln": 3702, + "rankDxo_ranking": 32, + "rankColor_ranking": 67, + "rankDyn_ranking": 63, + "rankLln_ranking": 3, + "name": "Sony A7S", + "pixelDepth": 12.2, + "sensor": "sensor_fullframe", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Apr. 2014", + "launchDateGraph": "2014-04-06", + "sensorraw": 12.21, + "link": "/Cameras/Sony/A7S", + "chapo": " Sony A7 cameras are the world's first full-frame hybrid cameras, with the recently released 12.2Mp A7S boasting 4K video output and an ISO 50-409,600 sensitivity range for stills.Sony A7S Specification – Less pixels, better light gathering?The evolution of Sony digital cameras certainly isn’t conservative as they continue to push boundaries on several fronts. In recent years we have seen mirrorless cameras with APS-C sensors in the NEX range, full-frame RX1 &amp; RX1R compacts, as well as Translucent Mirror DSLRs like the SLT A77. Not satisfied with that, their latest A7 range become the world's first mirrorless hybrid", + "linkReview": "https://www.dxomark.com/sony-a7s-preview-a-low-resolution-marvel-for-low-light-video/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/A7S/vignette3.png", + "Type": "Hybrid ", + "Announced": "Apr. 2014  ", + "Indicative price (USD)": "\n 2499  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4288 x 2848  \n ", + "Sensor photo detectors (Mpix) ": "12.21  ", + "Sensor size (mm)": "23.8 x 35.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 409600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony FE  ", + "Weight (gr)": " ", + "Battery type": "NP-FW50, Li-ion, 7.4V, 1080mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C) ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "With 3 frames in 1/3 EV, 1/2 EV, 2/3 EV, 1.0 EV, 2.0 EV or 3.0 EV increments\nWith 5 frames in 1/3 EV, 1/2 EV or 2/3 EV increments ", + "Exposure compensation": "+/-5.0 EV (in 1/3 EV or 1/2 EV steps), with exposure compensation dial +/-3.0 EV (in 1/3 EV steps) ", + "Drive modes": "Single shooting, Continuous shooting, Speed Priority Continuous shooting, Self-timer (10/2 sec. delay selectable), Self-timer (Cont.) (10 sec. delay; 3/5 exposures selectable), Bracketing (Cont., Single, White Balance, DRO) ", + "Buffer size": "65 frames (JPEG Extra Fine L), 200 frames (JPEG Fine L), 200 frames (JPEG Standard L), 30 frames (RAW), 25 frames (RAW + JPEG) ", + "Recording medium": "Memory Stick PRO Duo, Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD, SDHC (UHS-I compliant), SDXC (UHS-I compliant) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "Micro USB 2.0, Wi-Fi (IEEE802.11b/g/n 2.4GHz band), HDMI micro connector (Type-D) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD format Ver. 2.0 compliant, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 100.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 100.txt new file mode 100644 index 0000000..dc84a5a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 100.txt @@ -0,0 +1,96 @@ +{ + "id": 216, + "price": 427, + "year": "2006", + "brand": "Sony", + "rankDxo": 61, + "rankColor": 22, + "rankDyn": 11.2, + "rankLln": 476, + "rankDxo_ranking": 244, + "rankColor_ranking": 223, + "rankDyn_ranking": 249, + "rankLln_ranking": 277, + "name": "Sony Alpha 100", + "pixelDepth": 10, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jun. 2006", + "launchDateGraph": "2006-06-05", + "sensorraw": 10.12, + "link": "/Cameras/Sony/Alpha-100", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_100/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2006  ", + "Indicative price (USD)": "\n 427  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3880 x 2608  \n ", + "Sensor photo detectors (Mpix) ": "10.12  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 1600 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 200.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 200.txt new file mode 100644 index 0000000..8c87ce9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 200.txt @@ -0,0 +1,96 @@ +{ + "id": 342, + "price": 611, + "year": "2008", + "brand": "Sony", + "rankDxo": 63, + "rankColor": 22.3, + "rankDyn": 11.3, + "rankLln": 521, + "rankDxo_ranking": 226, + "rankColor_ranking": 199, + "rankDyn_ranking": 242, + "rankLln_ranking": 256, + "name": "Sony Alpha 200", + "pixelDepth": 10.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-07", + "sensorraw": 10.12, + "link": "/Cameras/Sony/Alpha-200", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_200/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 611  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3880 x 2608  \n ", + "Sensor photo detectors (Mpix) ": "10.12  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 230.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 230.txt new file mode 100644 index 0000000..f788b0f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 230.txt @@ -0,0 +1,96 @@ +{ + "id": 605, + "price": 900, + "year": "2009", + "brand": "Sony", + "rankDxo": 63, + "rankColor": 22.3, + "rankDyn": 11.4, + "rankLln": 531, + "rankDxo_ranking": 222, + "rankColor_ranking": 197, + "rankDyn_ranking": 228, + "rankLln_ranking": 248, + "name": "Sony Alpha 230", + "pixelDepth": 10.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "May. 2009", + "launchDateGraph": "2009-05-18", + "sensorraw": 10.12, + "link": "/Cameras/Sony/Alpha-230", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_230/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "May. 2009  ", + "Indicative price (USD)": "\n 900  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3880 x 2608  \n ", + "Sensor photo detectors (Mpix) ": "10.12  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 290.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 290.txt new file mode 100644 index 0000000..84500c3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 290.txt @@ -0,0 +1,96 @@ +{ + "id": 657, + "price": 499, + "year": "2010", + "brand": "Sony", + "rankDxo": 66, + "rankColor": 22.6, + "rankDyn": 11.5, + "rankLln": 615, + "rankDxo_ranking": 187, + "rankColor_ranking": 172, + "rankDyn_ranking": 218, + "rankLln_ranking": 206, + "name": "Sony Alpha 290", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jun. 2010", + "launchDateGraph": "2010-06-01", + "sensorraw": 14.13, + "link": "/Cameras/Sony/Alpha-290", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_290/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2010  ", + "Indicative price (USD)": "\n 499  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4600 x 3072  \n ", + "Sensor photo detectors (Mpix) ": "14.13  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": "1 ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 300.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 300.txt new file mode 100644 index 0000000..99b6091 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 300.txt @@ -0,0 +1,96 @@ +{ + "id": 341, + "price": 690, + "year": "2008", + "brand": "Sony", + "rankDxo": 64, + "rankColor": 22.5, + "rankDyn": 11.4, + "rankLln": 538, + "rankDxo_ranking": 216, + "rankColor_ranking": 189, + "rankDyn_ranking": 233, + "rankLln_ranking": 240, + "name": "Sony Alpha 300", + "pixelDepth": 10.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-30", + "sensorraw": 10.12, + "link": "/Cameras/Sony/Alpha-300", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_300/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 690  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3880 x 2608  \n ", + "Sensor photo detectors (Mpix) ": "10.12  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 330.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 330.txt new file mode 100644 index 0000000..5f10da0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 330.txt @@ -0,0 +1,96 @@ +{ + "id": 606, + "price": 780, + "year": "2009", + "brand": "Sony", + "rankDxo": 64, + "rankColor": 22.4, + "rankDyn": 11.5, + "rankLln": 535, + "rankDxo_ranking": 212, + "rankColor_ranking": 192, + "rankDyn_ranking": 223, + "rankLln_ranking": 245, + "name": "Sony Alpha 330", + "pixelDepth": 10.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "May. 2009", + "launchDateGraph": "2009-05-18", + "sensorraw": 10.12, + "link": "/Cameras/Sony/Alpha-330", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_330/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "May. 2009  ", + "Indicative price (USD)": "\n 780  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 3880 x 2608  \n ", + "Sensor photo detectors (Mpix) ": "10.12  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 350.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 350.txt new file mode 100644 index 0000000..c2e4f99 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 350.txt @@ -0,0 +1,96 @@ +{ + "id": 217, + "price": 700, + "year": "2008", + "brand": "Sony", + "rankDxo": 65, + "rankColor": 22.6, + "rankDyn": 11.5, + "rankLln": 595, + "rankDxo_ranking": 199, + "rankColor_ranking": 175, + "rankDyn_ranking": 221, + "rankLln_ranking": 211, + "name": "Sony Alpha 350", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Jan. 2008", + "launchDateGraph": "2008-01-30", + "sensorraw": 14.13, + "link": "/Cameras/Sony/Alpha-350", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_350/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2008  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4600 x 3072  \n ", + "Sensor photo detectors (Mpix) ": "14.13  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 380.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 380.txt new file mode 100644 index 0000000..7e37f25 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 380.txt @@ -0,0 +1,96 @@ +{ + "id": 607, + "price": 935, + "year": "2009", + "brand": "Sony", + "rankDxo": 67, + "rankColor": 22.6, + "rankDyn": 11.8, + "rankLln": 614, + "rankDxo_ranking": 178, + "rankColor_ranking": 172, + "rankDyn_ranking": 184, + "rankLln_ranking": 207, + "name": "Sony Alpha 380", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "May. 2009", + "launchDateGraph": "2009-05-18", + "sensorraw": 14.13, + "link": "/Cameras/Sony/Alpha-380", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_380/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "May. 2009  ", + "Indicative price (USD)": "\n 935  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4600 x 3072  \n ", + "Sensor photo detectors (Mpix) ": "14.13  ", + "Sensor size (mm)": "15.8 x 23.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 390.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 390.txt new file mode 100644 index 0000000..9f53a95 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 390.txt @@ -0,0 +1,96 @@ +{ + "id": 670, + "price": 620, + "year": "2010", + "brand": "Sony", + "rankDxo": 66, + "rankColor": 22.5, + "rankDyn": 11.5, + "rankLln": 607, + "rankDxo_ranking": 191, + "rankColor_ranking": 180, + "rankDyn_ranking": 214, + "rankLln_ranking": 209, + "name": "Sony Alpha 390", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Jun. 2010", + "launchDateGraph": "2010-06-09", + "sensorraw": 14.13, + "link": "/Cameras/Sony/Alpha-390", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_390/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2010  ", + "Indicative price (USD)": "\n 620  \n ", + "Sensor type ": "CCD  ", + "Resolution ": "\n 4600 x 3072  \n ", + "Sensor photo detectors (Mpix) ": "14.13  ", + "Sensor size (mm)": "15.7 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 3200 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 450.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 450.txt new file mode 100644 index 0000000..7a6a477 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 450.txt @@ -0,0 +1,96 @@ +{ + "id": 641, + "price": 680, + "year": "2010", + "brand": "Sony", + "rankDxo": 66, + "rankColor": 21.8, + "rankDyn": 11.8, + "rankLln": 769, + "rankDxo_ranking": 197, + "rankColor_ranking": 234, + "rankDyn_ranking": 182, + "rankLln_ranking": 166, + "name": "Sony Alpha 450", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jan. 2010", + "launchDateGraph": "2010-01-05", + "sensorraw": 14.2, + "link": "/Cameras/Sony/Alpha-450", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_450/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jan. 2010  ", + "Indicative price (USD)": "\n 680  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4592 x 3056  \n ", + "Sensor photo detectors (Mpix) ": "14.2  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5-7  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FM500H, 7.2V, 1600 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Plastic exterior ", + "Mount material": "mixed plastic/metal ", + "View finder type": "optical ", + "View finder magnification": "0.83 ", + "View finder coverage": "95 ", + "Mirror lockup": " ", + "View finder diopter": "-2.5 to +1.0 ", + "Monitor type": "LCD ", + "Monitor size": "2.7 ", + "Monitor pixel": "230400 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Auto AF, Continuous AF ", + "Number of autofocus points": "9 ", + "Exposure bracketing": "3 continuous or single exposures selectable, in 0.3 or 0.7-stop increment ", + "Exposure compensation": "+/- 2EV (1/3 EV increments) ", + "Drive modes": "Single, High-speed continuous (5 fps), Low-speed continuous (3 fps), Speed-Priority (7 fps), AE bracket, WB bracket, Self-timer (2 or 10 sec), Remote Commander (Wireless (SHUTTER and 2SEC ) or Wired) ", + "Buffer size": "32 (JPG Fine), 116 (JPG Standard), 14 (RAW), 7 (RAW+JPEG) ", + "Recording medium": "Memory Stick Pro Duo, Memory Stick PRO-HG Duo, SD Memory card, SDHC Memory card ", + "Image format": "JPG, RAW (ARW) ", + "White balance bracketing": "3 frames, H (+/- 20 mired)/L (+/- 10 mired) selectable ", + "Connectivity": "USB2.0 Hi-Speed (mass storage mode / PTP mode) mini B, HDMI type C mini connector, AV (NTSC or PAL) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "No ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "No ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 500.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 500.txt new file mode 100644 index 0000000..001edac --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 500.txt @@ -0,0 +1,96 @@ +{ + "id": 626, + "price": 699, + "year": "2009", + "brand": "Sony", + "rankDxo": 64, + "rankColor": 21.8, + "rankDyn": 11.6, + "rankLln": 772, + "rankDxo_ranking": 210, + "rankColor_ranking": 236, + "rankDyn_ranking": 208, + "rankLln_ranking": 165, + "name": "Sony Alpha 500", + "pixelDepth": 12.3, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2009", + "launchDateGraph": "2009-08-27", + "sensorraw": 12.17, + "link": "/Cameras/Sony/Alpha-500", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_500/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2009  ", + "Indicative price (USD)": "\n 699  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4272 x 2848  \n ", + "Sensor photo detectors (Mpix) ": "12.17  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 550.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 550.txt new file mode 100644 index 0000000..79813cf --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 550.txt @@ -0,0 +1,96 @@ +{ + "id": 624, + "price": 899, + "year": "2009", + "brand": "Sony", + "rankDxo": 66, + "rankColor": 21.9, + "rankDyn": 11.8, + "rankLln": 807, + "rankDxo_ranking": 192, + "rankColor_ranking": 233, + "rankDyn_ranking": 186, + "rankLln_ranking": 152, + "name": "Sony Alpha 550", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2009", + "launchDateGraph": "2009-08-27", + "sensorraw": 14.03, + "link": "/Cameras/Sony/Alpha-550", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_550/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2009  ", + "Indicative price (USD)": "\n 899  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4592 x 3056  \n ", + "Sensor photo detectors (Mpix) ": "14.03  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "5-7  ", + "Live view ": "yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 560.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 560.txt new file mode 100644 index 0000000..a675b95 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 560.txt @@ -0,0 +1,96 @@ +{ + "id": 686, + "price": 650, + "year": "2010", + "brand": "Sony", + "rankDxo": 70, + "rankColor": 22.5, + "rankDyn": 12.3, + "rankLln": 817, + "rankDxo_ranking": 161, + "rankColor_ranking": 188, + "rankDyn_ranking": 151, + "rankLln_ranking": 145, + "name": "Sony Alpha 560", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2010", + "launchDateGraph": "2010-08-24", + "sensorraw": 14.2, + "link": "/Cameras/Sony/Alpha-560", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_560/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2010  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4592 x 3056  \n ", + "Sensor photo detectors (Mpix) ": "14.2  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FM500H, 7.2V, 1600mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "plastic ", + "Mount material": "mixed plastic/metal ", + "View finder type": "optical ", + "View finder magnification": "0.8 ", + "View finder coverage": "95 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (Single-shot AF), AF-A (Automatic AF), AF-C (Continuous AF) ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "3 images with 0.3EV or 0.7EV steps ", + "Exposure compensation": " ", + "Drive modes": "Single, High-speed continuous (5 fps), Low-speed continuous (3 fps), Speed Priority continuous (7 fps), Self-timer (2 sec or 10 sec), Remote commander ", + "Buffer size": "47 ", + "Recording medium": " ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes: 3 frames Lo (10 mired) or Hi (20 mired) ", + "Connectivity": "USB2.0 (Hi-speed, miniB), HDMI (Type C mini) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (video with sound) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080/ 60i (59.94i Interlace recording, 29.97 progressive image sensor output) ", + "Full HD": "Yes ", + "Live autofocus": "No ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 580.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 580.txt new file mode 100644 index 0000000..51798c1 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 580.txt @@ -0,0 +1,96 @@ +{ + "id": 685, + "price": 800, + "year": "2010", + "brand": "Sony", + "rankDxo": 80, + "rankColor": 23.8, + "rankDyn": 13.3, + "rankLln": 1121, + "rankDxo_ranking": 75, + "rankColor_ranking": 75, + "rankDyn_ranking": 58, + "rankLln_ranking": 88, + "name": "Sony Alpha 580", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2010", + "launchDateGraph": "2010-08-24", + "sensorraw": 16.2, + "link": "/Cameras/Sony/Alpha-580", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_580/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2010  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4912 x 3264  \n ", + "Sensor photo detectors (Mpix) ": "16.2  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FM500H, 7.2V, 1600mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "plastic ", + "Mount material": "mixed plastic/metal ", + "View finder type": "optical ", + "View finder magnification": "0.8 ", + "View finder coverage": "95 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (Single-shot AF), AF-A (Automatic AF), AF-C (Continuous AF) ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "3 images with 0.3EV or 0.7EV steps ", + "Exposure compensation": "+ or - 2.0 EV (in 0.3 EV steps) ", + "Drive modes": "Single, High-speed continuous (5 fps), Low-speed continuous (3 fps), Speed Priority continuous (7 fps), Self-timer (2 sec or 10 sec), Remote commander ", + "Buffer size": "45 ", + "Recording medium": " ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes: 3 frames Lo (10 mired) or Hi (20 mired) ", + "Connectivity": "USB2.0 (Hi-speed, miniB), HDMI (Type C mini) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (video with sound) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080/ 60i (59.94i Interlace recording, 29.97 progressive image sensor output) ", + "Full HD": "Yes ", + "Live autofocus": "No ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 700.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 700.txt new file mode 100644 index 0000000..a1470a7 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 700.txt @@ -0,0 +1,96 @@ +{ + "id": 562, + "price": 1300, + "year": "2007", + "brand": "Sony", + "rankDxo": 66, + "rankColor": 22.3, + "rankDyn": 11.9, + "rankLln": 581, + "rankDxo_ranking": 185, + "rankColor_ranking": 200, + "rankDyn_ranking": 177, + "rankLln_ranking": 216, + "name": "Sony Alpha 700", + "pixelDepth": 12.2, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2007", + "launchDateGraph": "2007-09-06", + "sensorraw": 12.25, + "link": "/Cameras/Sony/Alpha-700", + "chapo": " When we first analyzed the Sony A700, our preliminary tests showed that it made use of green-channel RAW NR (Noise Reduction). To ensure fair ranking on dxomark.com, we only score cameras that do not exhibit any sort of spatial signal filtering, taking care to test every camera we report on. With the latest A700 firmware version (rev.4) that disables noise reduction on the green channel, it is then possible to publish all its measurement results and DxOMark ranking.Key sensor characteristicsSony acquired Konica Minolta’s DSLR division following the launch of Konica Minolta’s last high-end DSLR, the Maxxum 7D.", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-sony-alpha-700/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_700/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2007  ", + "Indicative price (USD)": "\n 1300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4288 x 2856  \n ", + "Sensor photo detectors (Mpix) ": "12.25  ", + "Sensor size (mm)": "16 x 24 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": "rev.4 ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 850.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 850.txt new file mode 100644 index 0000000..db776c0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 850.txt @@ -0,0 +1,96 @@ +{ + "id": 604, + "price": 2000, + "year": "2009", + "brand": "Sony", + "rankDxo": 79, + "rankColor": 23.8, + "rankDyn": 12.2, + "rankLln": 1415, + "rankDxo_ranking": 82, + "rankColor_ranking": 75, + "rankDyn_ranking": 160, + "rankLln_ranking": 52, + "name": "Sony Alpha 850", + "pixelDepth": 24.6, + "sensor": "sensor_fullframe", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2009", + "launchDateGraph": "2009-08-27", + "sensorraw": 24.61, + "link": "/Cameras/Sony/Alpha-850", + "chapo": " DxOMark Sensor analysis shows that as far as sensor is concerned, the two cameras are indeed very similar, if not identical. The Sony A850 obtains the same DxOMark Sensor score (78.9)Key sensor characteristics The Sony A850 features a 24.5 Mpix CMOS sensor, which is the highest resolution for full-frame sensors currently available.Key performance factorsThe global performance of the Sony A850 is comparable to the Sony Alpha 900. It remains near the top for every DxOMark Sensor metric: very high Color Depth (23.8, 8th in DxOMark rankings), Dynamic Range (12.2, 12th in DxOMark rankings), and a good Low-Light ISO", + "linkReview": "https://www.dxomark.com/dxomark-review-for-the-sony-alpha-850/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_850/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2009  ", + "Indicative price (USD)": "\n 2000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4048  \n ", + "Sensor photo detectors (Mpix) ": "24.61  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "mecanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "3  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Alpha 900.txt b/scr/模糊专家系统/scrape/scraped/Sony Alpha 900.txt new file mode 100644 index 0000000..93f9048 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Alpha 900.txt @@ -0,0 +1,96 @@ +{ + "id": 371, + "price": 3000, + "year": "2008", + "brand": "Sony", + "rankDxo": 79, + "rankColor": 23.7, + "rankDyn": 12.3, + "rankLln": 1431, + "rankDxo_ranking": 83, + "rankColor_ranking": 81, + "rankDyn_ranking": 148, + "rankLln_ranking": 51, + "name": "Sony Alpha 900", + "pixelDepth": 24.6, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Sep. 2008", + "launchDateGraph": "2008-09-09", + "sensorraw": 24.61, + "link": "/Cameras/Sony/Alpha-900", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Alpha_900/vignette3.png", + "Type": "Professional ", + "Announced": "Sep. 2008  ", + "Indicative price (USD)": "\n 3000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6080 x 4048  \n ", + "Sensor photo detectors (Mpix) ": "24.61  ", + "Sensor size (mm)": "24 x 36 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 6400 ", + "Shutter type": "Focal Plane,vertical-transversal, with electronic control ", + "Fastest - Slowest speed (s)": "1/8000 - 30  ", + "Frame rate (fps)": "5  ", + "Live view ": "no ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": "yes ", + "Mount type": "Sony Alpha  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC RX100 III.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC RX100 III.txt new file mode 100644 index 0000000..4c32b8b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC RX100 III.txt @@ -0,0 +1,96 @@ +{ + "id": 957, + "price": 800, + "year": "2014", + "brand": "Sony", + "rankDxo": 67, + "rankColor": 22.4, + "rankDyn": 12.3, + "rankLln": 495, + "rankDxo_ranking": 181, + "rankColor_ranking": 191, + "rankDyn_ranking": 153, + "rankLln_ranking": 269, + "name": "Sony Cyber-shot DSC RX100 III", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "May. 2014", + "launchDateGraph": "2014-05-16", + "sensorraw": 20.18, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX100-III", + "chapo": " Sony’s 3rd generation entry-level RX100 high-end compact utilises the same 20.1Mp 1”-type sensor as its predecessor, but with a new lens and built-in electronic viewfinder.Sony RX100 III Specification: A&nbsp;new ‘faster’ lens and a pop-up EVFAs consumer appetite for small cameras with great image quality shows no signs of abating, we get more and more options onto the shelves. Who would have thought when Sigma first squeezed a large sensor into the DP1 a few years back, we’d now have compact cameras boasting not only APS-C sensors, but also full frame chips in their small shells. Sony has", + "linkReview": "https://www.dxomark.com/sony-rx100-iii-preview-a-high-end-compact-with-all-the-trimmings/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC_RX100_III/vignette3.png", + "Type": "High-end compact ", + "Announced": "May. 2014  ", + "Indicative price (USD)": "\n 800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.18  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "125 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "263", + "Battery type": "NP-BX1, Li-Ion, 1240 mAh, 3.6 V ", + "Battery weight (gr)": "25", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Continuous AF, DMF, Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single, Continuous, Speed priority, Self-timer, Single bracket, Continuous bracket, WB bracket, DRO bracket ", + "Buffer size": " ", + "Recording medium": "SD/ SDHC/SDXC, Memory Stick Pro Duo/ Pro-HG Duo ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "Multi / Micro USB Terminal, Hi-Speed USB (USB2.0), Micro HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 50 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD format Ver.2.0 compatible, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1.txt new file mode 100644 index 0000000..ac53a3e --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1.txt @@ -0,0 +1,96 @@ +{ + "id": 833, + "price": 2800, + "year": "2012", + "brand": "Sony", + "rankDxo": 93, + "rankColor": 25.1, + "rankDyn": 14.3, + "rankLln": 2534, + "rankDxo_ranking": 15, + "rankColor_ranking": 17, + "rankDyn_ranking": 12, + "rankLln_ranking": 27, + "name": "Sony Cyber-shot DSC-RX1", + "pixelDepth": 24.3, + "sensor": "sensor_fullframe", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-12", + "sensorraw": 24.24, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX1", + "chapo": " Introduction Launched in October 2012 the Sony RX1 is the world’s first compact camera with a full-frame 24x36mm CMOS sensor. Featuring a fixed 35mm f/2 lens and 24 megapixel sensor in a petite shell the RX1 is designed for professionals after a discreet compact with excellent image quality. This places the RX1 firmly in the photojournalist and street photographer category and its unique offering of a full-frame sensor in a compact means it comes with a hefty $2,800 price tag.The second release in the RX range of fixed lens compacts the RX1 sits above the more", + "linkReview": "https://www.dxomark.com/is-the-rx1-the-compact-photojournalists-are-waiting-for/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1/vignette3.png", + "Type": "High-end compact ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 2800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "23.8 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": " ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": "453", + "Battery type": "Li-Ion, NP-BX1, 3.6 V, 1240 mAh ", + "Battery weight (gr)": "25", + "Tropicalization": "No ", + "Camera material": "Aluminum ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1229000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "\n Contrast Detect (sensor)\n Multi-area\n Center\n Selective single-point\n Tracking\n Single\n Continuous\n Face Detection\n ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "3 frames at 1/3 EV, 2/3 EV steps ", + "Exposure compensation": " ", + "Drive modes": "\n Single-frame advance\n Continuous advance\n Continuous adv Priority AE\n Speed Priority Continuous\n Self-timer\n Self Portrait Self-timer\n Continuous Self-timer\n ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC, Memory Stick Duo/Pro Duo/Pro-HG Duo ", + "Image format": "\n RAW (ARW2.3 Format)\n RAW+JPEG\n JPEG\n ", + "White balance bracketing": "No ", + "Connectivity": " USB 2.0 (480 Mbit/sec)\nHDMI: Yes (Mini)\nWireless: EyeFi\nRemote control: No ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": " ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 /60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "\n AVCHD\n ", + "Video codec": " MPEG-4 ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX10 II.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX10 II.txt new file mode 100644 index 0000000..7ba4001 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX10 II.txt @@ -0,0 +1,96 @@ +{ + "id": 1034, + "price": 1298, + "year": "2015", + "brand": "Sony", + "rankDxo": 70, + "rankColor": 23, + "rankDyn": 12.6, + "rankLln": 531, + "rankDxo_ranking": 155, + "rankColor_ranking": 130, + "rankDyn_ranking": 102, + "rankLln_ranking": 247, + "name": "Sony Cyber-shot DSC-RX10 II", + "pixelDepth": 20.2, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2015", + "launchDateGraph": "2015-06-10", + "sensorraw": 20.18, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX10-II", + "chapo": " Introduction Specifications and FeaturesAnnounced alongside the Cyber-shot DSC-RX100 IV premium compact in July, the update to the hybrid RX10 II similarly features a new 20-Mpix one-inch type “stacked,” back-illuminated (BSI) CMOS sensor. While the pixel count remains unchanged in this model, the new sensor design separates the light-sensitive layer of photodiodes, or sensels, from the supporting circuitry, which has been relocated to a layer beneath. The benefits of this new stacked design are increased pixel size (and therefore potentially increased light-gathering capabilities) as well as more room for additional electronics — and with that comes several", + "linkReview": "https://www.dxomark.com/sony-cyber-shot-rx10-ii-sensor-review-stacked-to-the-limit/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10_II/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2015  ", + "Indicative price (USD)": "\n 1298  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.18  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "64 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/32000 - 30.0  ", + "Frame rate (fps)": "14.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "770", + "Battery type": "NP-FW50, Li-Ion, 7.3V, 1080mAh ", + "Battery weight (gr)": "40", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +3.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Continuous AF ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "+/- 3.0 EV, 3 frames ", + "Exposure compensation": "+/- 3.0 EV, 1/3 EV step ", + "Drive modes": "Single, Continuous (5.5fps), Speed priority continuous (14fps), Self-timer (10sec., 5sec., 2sec. 1, 3 or 5 shots with 10sec., 5sec. or 2sec. delay), Single-bracketing, Cont.-bracketing ", + "Buffer size": "43 (JPG) ", + "Recording medium": "Memory Stick Duo, Memory Stick PRO Duo, Memory Stick PRO Duo (High Speed), Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD Memory Card, SDHC Memory Card (UHS-I), SDXC Memory Card (UHS-I) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "Multi/Micro Hi-Speed USB (USB2.0), Wi-Fi (IEEE802.11 b/g/n) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD, MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX10.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX10.txt new file mode 100644 index 0000000..6ed5823 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX10.txt @@ -0,0 +1,96 @@ +{ + "id": 918, + "price": 1300, + "year": "2013", + "brand": "Sony", + "rankDxo": 69, + "rankColor": 22.9, + "rankDyn": 12.6, + "rankLln": 474, + "rankDxo_ranking": 169, + "rankColor_ranking": 141, + "rankDyn_ranking": 105, + "rankLln_ranking": 278, + "name": "Sony Cyber-shot DSC-RX10", + "pixelDepth": 20, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Oct. 2013", + "launchDateGraph": "2013-10-16", + "sensorraw": 20.18, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX10", + "chapo": " Introduction Sony enthusiasts may remember the exceptional Cyber-shot DSC-R1 from 2005, a SLR-like bridge camera similar to this featuring a 10-Mpix APS-C size sensor with a built-in 24-120mm equivalent f2.8-4.8 Zeiss zoom. The RX10 adopts the same principle but implements a smaller 1-inch type 20-Mpix BSI CMOS sensor with a stabilized 8.8-73.3mm zoom, equivalent to 24-200mm f2.8 constant aperture Zeiss branded zoom.The lens features a direct–drive sonic type AF motor and has an optional 1/3rd click stopped or de-clicked aperture collar, while the body is a melding of the firm’s Alpha models with shooting mode and", + "linkReview": "https://www.dxomark.com/sony-cyber-shot-dsc-rx10-review-the-definitive-bridge-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX10/vignette3.png", + "Type": "High-end compact ", + "Announced": "Oct. 2013  ", + "Indicative price (USD)": "\n 1300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.18  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/3200 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "756", + "Battery type": "Li-ion, NP-FW50 ", + "Battery weight (gr)": "57", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1230000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C, DMF, MF ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single-shot, Continuous, Speed priority continuous, Self-timer, Self-portrait, Bracketing ", + "Buffer size": " ", + "Recording medium": "SD, SDHC, SDXC, Memory Stick Duo, Pro Duo, Pro-HG Duo ", + "Image format": "JPEG, RAW(ARW) ", + "White balance bracketing": "No ", + "Connectivity": "micro-HDMI/USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4, AVCHD ", + "Video codec": "MPEG-4 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 II.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 II.txt new file mode 100644 index 0000000..bf38f01 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 II.txt @@ -0,0 +1,96 @@ +{ + "id": 896, + "price": 750, + "year": "2013", + "brand": "Sony", + "rankDxo": 67, + "rankColor": 22.5, + "rankDyn": 12.4, + "rankLln": 483, + "rankDxo_ranking": 179, + "rankColor_ranking": 182, + "rankDyn_ranking": 135, + "rankLln_ranking": 274, + "name": "Sony Cyber-shot DSC-RX100 II", + "pixelDepth": 20.2, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2013", + "launchDateGraph": "2013-06-27", + "sensorraw": 20.18, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX100-II", + "chapo": " Introduction When Sony launched the Cyber-shot DSC-RX100 in June 2012 it was well received for the compact dimensions and handy 28-100mm (equivalent) zoom range, but the main attraction was the imaging performance from its much larger than usual 1-inch type sensor. As the name suggests the RX100 II is this year’s update, adding a number of useful refinements, including a hotshoe (importantly, with provision for a EVF), Wi-Fi with NFC capabilities and a pull-out rear LCD. It retains the 20-MPix pixel count of its predecessor but perhaps the most significant revision to this model is the", + "linkReview": "https://www.dxomark.com/sony-cyber-shot-dsc-rx100-ii-review-new-back-illuminated-sensor-promises-superior-low-light-performance/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_II/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2013  ", + "Indicative price (USD)": "\n 750  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.18  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "160 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "LITHIUM NP-BX1 (3.6V) 1240 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1229000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/-3 (at 1/3 EV steps) ", + "Drive modes": "Single-shot, Continuous, Speed Priority Continuous, Self-timer (10/2 sec. delay), Self-timer (Cont.), Self-portrait One-person, Self-portrait Two-person, (with 10 sec. delay; 3/5 exposures), Bracketing ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC, Memory Stick Duo/Pro Duo/Pro-HG Duo ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD ", + "Video codec": "MPEG4 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 IV.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 IV.txt new file mode 100644 index 0000000..a3e7aff --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 IV.txt @@ -0,0 +1,96 @@ +{ + "id": 1033, + "price": 948, + "year": "2015", + "brand": "Sony", + "rankDxo": 70, + "rankColor": 22.9, + "rankDyn": 12.6, + "rankLln": 562, + "rankDxo_ranking": 158, + "rankColor_ranking": 140, + "rankDyn_ranking": 108, + "rankLln_ranking": 226, + "name": "Sony Cyber-shot DSC-RX100 IV", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2015", + "launchDateGraph": "2015-06-10", + "sensorraw": 20.18, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX100-IV", + "chapo": " Introduction Specifications and Features Sony’s RX100 series of premium-quality compacts for enthusiasts has proven hugely popular and garnered worldwide acclaim. The RX100 IV is the fourth iteration, and like the model it replaces, has a stabilized Zeiss Vario Sonnar T* 24-70mm (equivalent) f1.8-2.8 zoom and pop-up EVF, but in place of the 1.44m-dot res screen, it has a new 2.35m-dot OLED.Although the pixel count remains unchanged and the image sensor utilizes the now commonplace back-side illumination, the RX100 IV uses what Sony is calling a “stacked CMOS” design. This new design incorporates recent advances in the", + "linkReview": "https://www.dxomark.com/sony-cyber-shot-dsc-rx100-iv-sensor-review-performance-stacked-in-favor/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_IV/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2015  ", + "Indicative price (USD)": "\n 948  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.18  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "125 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/32000 - 30.0  ", + "Frame rate (fps)": "16.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "NP-BX1, Li-Ion, 3.6V, 1240mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.59 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +3.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Continuous AF ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "+/- 3.0 EV, 3 frames ", + "Exposure compensation": "+/- 3.0 EV, 1/3 EV step ", + "Drive modes": "Single, Continuous (5.5fps), Speed priority continuous (16fps), Self-timer (10sec., 5sec., 2sec. 1, 3 or 5 shots with 10sec., 5sec. or 2sec. delay), Single-bracketing, Cont.-bracketing ", + "Buffer size": "43 (JPG) ", + "Recording medium": "Memory Stick Duo, Memory Stick PRO Duo, Memory Stick PRO Duo (High Speed), Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD Memory Card, SDHC Memory Card (UHS-I), SDXC Memory Card (UHS-I) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "Multi/Micro Hi-Speed USB (USB2.0), Wi-Fi (IEEE802.11 b/g/n) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD, MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 V.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 V.txt new file mode 100644 index 0000000..8241dc8 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100 V.txt @@ -0,0 +1,96 @@ +{ + "id": 1128, + "price": 1000, + "year": "2016", + "brand": "Sony", + "rankDxo": 70, + "rankColor": 22.8, + "rankDyn": 12.4, + "rankLln": 586, + "rankDxo_ranking": 165, + "rankColor_ranking": 156, + "rankDyn_ranking": 130, + "rankLln_ranking": 213, + "name": "Sony Cyber-shot DSC-RX100 V", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Oct. 2016", + "launchDateGraph": "2016-10-06", + "sensorraw": 20.18, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX100-V", + "chapo": " Sony RX100 V highlights1”-type 20.1Mp BSI-CMOS sensor315-point phase detection autofocus24fps burst shooting with full AF/AEWide ISO 80-12,800 sensitivity rangeGood dynamic range up to ISO 1600Good color sensitivity up to ISO 1600 Sony RX100 V potential drawbacksNo improvement to image quality from Mark IVNo LCD touchscreenPoor signal-to-noise ratio over ISO 800High $998 price tag Overall image qualityFeaturing a large 1”-type BSI (back-side illuminated) sensor, which is physically larger than the sensor typically used in many compact cameras, the Sony RX100 V is capable of some very good image quality. The 20.1Mp packs plenty of resolution for detailed shots, and the peak", + "linkReview": "https://www.dxomark.com/sony-rx100-v-sensor-review-high-end-compact-with-impressive-speed/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100_V/vignette3.png", + "Type": "High-end compact ", + "Announced": "Oct. 2016  ", + "Indicative price (USD)": "\n 1000  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.18  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.72 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "80 - 12800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/32000 - 30.0  ", + "Frame rate (fps)": "24.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "No ", + "Mount type": "Compact  ", + "Weight (gr)": "272", + "Battery type": "Li-Ion, NP-BX1, 3.6V, 1240mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.59 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Automatic AF, Continuous AF, DMF, Manual Focus ", + "Number of autofocus points": "315 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3.0 EV, 1/ 3 EV step ", + "Drive modes": "Single, Continuous, Self-timer, Self-timer (cont.) , Cont.-bracketing, Single-bracketing, White balance bracketing, DRO bracketing ", + "Buffer size": " ", + "Recording medium": "Memory Stick Duo, Memory Stick PRO Duo, Memory Stick PRO Duo (High Speed), Memory Stick PRO-HG Duo, Memory Stick XC-HG Duo, SD Memory Card, SDHC Memory Card (UHS-I), SDXC Memory Card (UHS-I) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/NFC/WIFI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD Ver.2.0 compatible, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100.txt new file mode 100644 index 0000000..24bb9e5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX100.txt @@ -0,0 +1,96 @@ +{ + "id": 812, + "price": 650, + "year": "2012", + "brand": "Sony", + "rankDxo": 66, + "rankColor": 22.6, + "rankDyn": 12.4, + "rankLln": 390, + "rankDxo_ranking": 184, + "rankColor_ranking": 174, + "rankDyn_ranking": 132, + "rankLln_ranking": 294, + "name": "Sony Cyber-shot DSC-RX100", + "pixelDepth": 20.2, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2012", + "launchDateGraph": "2012-06-06", + "sensorraw": 20.21, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX100", + "chapo": " Introduction 1" CMOS 20.2 Mpix sensorSony now offers a well-rounded range of compact hybrids equipped with APS-C sensors. For its expert compact with integrated zoom, Sony is not about to encroach on the NEX family’s territory, particularly since that would affect the Cyber-shot’s compactness. Sony has made a judicious compromise between array size and image quality for an optimal compactness-to-photo quality ratio. &nbsp;Even though it’s essentially the same size as the Canon PowerShot S100, the Sony Cyber-shot DSC-RX100 integrates a much larger sensor than that of its competitor: 1" in", + "linkReview": "https://www.dxomark.com/sony-dsc-rx100-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX100/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2012  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5504 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.21  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.7 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/2000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes, Optical SteadyShot (still) ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "  ", + "Weight (gr)": "213", + "Battery type": "Li-Ion, NP-BX1, 3.6 V, 1240 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Aluminum ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Contrast Detect (sensor)\nMulti-area\nCenter\nSelective single-point\nTracking\nSingle\nContinuous\nFace Detection ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "3 frames at 1/3 EV, 2/3 EV steps ", + "Exposure compensation": " ", + "Drive modes": "Single-frame advance\nContinuous advance\nContinuous adv Priority AE\nSpeed Priority Continuous\nSelf-timer\nSelf Portrait Self-timer\nContinuous Self-timer (2 or 10 sec, Portrait 1/2) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC, Memory Stick Duo/Pro Duo/Pro-HG Duo ", + "Image format": "RAW (ARW2.3 Format)\nRAW+JPEG\nJPEG ", + "White balance bracketing": "No ", + "Connectivity": "HDMI - Yes (Mini Type C) /USB 2.0 (480 Mbit/sec)/Wireless EyeFi/ Remote control - No/ ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Stereo ", + "Histogram": " ", + "GPS": "No ", + "Video": " ", + "Maximum format image video": "1920 x 1080 / 60, 24 fps ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": "MPEG-4\nAVCHD ", + "Video codec": " ", + "Video stabilisation": "Yes, Optical SteadyShot Active Mode (video) " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1R II.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1R II.txt new file mode 100644 index 0000000..366f905 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1R II.txt @@ -0,0 +1,96 @@ +{ + "id": 1049, + "price": 3300, + "year": "2015", + "brand": "Sony", + "rankDxo": 97, + "rankColor": 25.8, + "rankDyn": 13.9, + "rankLln": 3204, + "rankDxo_ranking": 7, + "rankColor_ranking": 8, + "rankDyn_ranking": 24, + "rankLln_ranking": 11, + "name": "Sony Cyber-shot DSC-RX1R II", + "pixelDepth": 42.4, + "sensor": "sensor_fullframe", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Oct. 2015", + "launchDateGraph": "2015-10-14", + "sensorraw": 42.56, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX1R-II", + "chapo": " Introduction Specifications and FeaturesThe Sony RX1R II is the not-unexpected update to the 24-Mpix RX1R. It features the same 42-Mpix full-frame CMOS sensor as the Sony A7R II, paired with the familiar Zeiss 35mm f2.0 Sonnar lens first seen on the RX1. The 42-Mpix BSI CMOS features a variable optical low-pass filter with three intensity settings to control high-frequency detail and limit color aliasing during capture, but it lacks the ability of the A7R II to record 4K (it is limited to Full HD or 720p at 120fps). It also lacks that model’s built-in stabilization. Nevertheless,", + "linkReview": "https://www.dxomark.com/sony-cyber-shot-dsc-rx1r-ii-sensor-review-take-two/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R_II/vignette3.png", + "Type": "High-end compact ", + "Announced": "Oct. 2015  ", + "Indicative price (USD)": "\n 3300  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8000 x 5320  \n ", + "Sensor photo detectors (Mpix) ": "42.56  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 102400 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-BX1, 3.6V, 1240mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.74 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "399 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single, Continuous shooting, Speed priority continuous shooting, Self-timer, Cont.-bracketing, Single-bracketing, White balance bracketing, DRO bracketing, LPF bracketing ", + "Buffer size": " ", + "Recording medium": "Memory Stick Duo, Memory Stick PRO Duo, Memory Stick PRO Duo (High Speed), Memory Stick PRO-HG Duo, Memory Stick Micro, SD Memory Card, SDHC Memory Card, SDXC Memory Card, microSD Memory Card, microSDHC Memory Card, microSDXC Memory Card ", + "Image format": "JPEG,RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WiFi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD, MPEG4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1R.txt b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1R.txt new file mode 100644 index 0000000..3ef7efb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cyber-shot DSC-RX1R.txt @@ -0,0 +1,96 @@ +{ + "id": 894, + "price": 2800, + "year": "2013", + "brand": "Sony", + "rankDxo": 91, + "rankColor": 25, + "rankDyn": 13.6, + "rankLln": 2537, + "rankDxo_ranking": 19, + "rankColor_ranking": 20, + "rankDyn_ranking": 39, + "rankLln_ranking": 26, + "name": "Sony Cyber-shot DSC-RX1R", + "pixelDepth": 24.3, + "sensor": "sensor_fullframe", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Jun. 2013", + "launchDateGraph": "2013-06-27", + "sensorraw": 24.24, + "link": "/Cameras/Sony/Cyber-shot-DSC-RX1R", + "chapo": " Introduction After the initial excitement of the RX1 with its full-frame 36x24mm CMOS sensor and high-quality Carl Zeiss 35mm f/2.0 lens the firm recently revealed a new model, the RX1R. Whereas the original model featured a 24.3 Mpix CMOS sensor with an OLPF (optical low pass filter) this new variation to the range lacks the filter for improved resolution and image sharpness, without any blurring or dispersion it’s claimed. Sony also states the camera’s image processing has been optimized for sharpness and that that moire and color artifacts may be visible as a result under certain", + "linkReview": "https://www.dxomark.com/sony-cyber-shot-dsc-rx1r-review-pushing-the-limits/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cyber-shot_DSC-RX1R/vignette3.png", + "Type": "High-end compact ", + "Announced": "Jun. 2013  ", + "Indicative price (USD)": "\n 2800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "24.7 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "5.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Compact  ", + "Weight (gr)": " ", + "Battery type": "LITHIUM NP-BX1 (3.6V) 1080 mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1229000 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": " +/- 3.0 EV, 1/3 EV step ", + "Drive modes": "Single-frame advance, Continuous advance, Continuous adv Priority AE, Speed Priority Continuous, Self-timer, Self Portrait Self-timer, Continuous Self-timer ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC, Memory Stick Duo/Pro Duo/Pro-HG Duo ", + "Image format": "Jpeg, Raw ", + "White balance bracketing": "No ", + "Connectivity": "USB/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD ", + "Video codec": "MPEG-4 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony Cybershot DSC-RX10 III.txt b/scr/模糊专家系统/scrape/scraped/Sony Cybershot DSC-RX10 III.txt new file mode 100644 index 0000000..15f2470 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony Cybershot DSC-RX10 III.txt @@ -0,0 +1,96 @@ +{ + "id": 1084, + "price": 1500, + "year": "2016", + "brand": "Sony", + "rankDxo": 70, + "rankColor": 23.1, + "rankDyn": 12.6, + "rankLln": 472, + "rankDxo_ranking": 160, + "rankColor_ranking": 126, + "rankDyn_ranking": 101, + "rankLln_ranking": 279, + "name": "Sony Cybershot DSC-RX10 III", + "pixelDepth": 20.1, + "sensor": "sensor_compact_1", + "type": "highendcompact", + "status": "TESTED", + "launchDate": "Mar. 2016", + "launchDateGraph": "2016-03-29", + "sensorraw": 20.18, + "link": "/Cameras/Sony/Cybershot-DSC-RX10-III", + "chapo": " Specifications and featuresThe addition of the new zoom certainly sets the RX10 III apart, as it also includes a subtle change to the body to accommodate the lens; however, in most other respects, the new model inherits features from the previous iterations. While they’re still impressive, the III effectively adopts the same 25-point contrast detection autofocus system, along with the same 2.36M-dot viewfinder and rear 3.0” 1.23m-dot tilting LCD panel. Nevertheless, given the emphasis these models have on video — the RX10 III can also take 4K/30p movie clips, and can capture HD 1080p at up to 960", + "linkReview": "https://www.dxomark.com/sony-cybershot-dsc-rx10-iii-sensor-review-family-perks/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Cybershot_DSC-RX10_III/vignette3.png", + "Type": "High-end compact ", + "Announced": "Mar. 2016  ", + "Indicative price (USD)": "\n 1500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3672  \n ", + "Sensor photo detectors (Mpix) ": "20.18  ", + "Sensor size (mm)": "8.8 x 13.2 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "2.73 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "64 - 128000 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/32000 - 30.0  ", + "Frame rate (fps)": "14.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Compact  ", + "Weight (gr)": "1051", + "Battery type": "Li-Ion, NP-FW50, 7.2V, 1020 mAh, 7.3W ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "Electronic ", + "View finder magnification": "0.7 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/- 3.0 EV, 1/3 EV step ", + "Drive modes": "Single, Continuous shooting, Speed priority continuous shooting, Self-timer, Self-timer (cont.), Cont.-bracketing, Single-bracketing, White balance bracketing6, DRO bracketing ", + "Buffer size": " ", + "Recording medium": "Memory Stick Duo, Memory Stick PRO Duo, Memory Stick PRO Duo (High Speed), Memory Stick PRO-HG Duo, Memory Stick Micro, Memory Stick Micro (Mark 2), SD Memory Card, SDHC Memory Card, SDXC Memory Card, microSD Memory Card, microSDHC Memory Card, microSDXC  ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "AV / USB / NFC / Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, MTS ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-3N.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-3N.txt new file mode 100644 index 0000000..4230401 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-3N.txt @@ -0,0 +1,96 @@ +{ + "id": 863, + "price": 670, + "year": "2013", + "brand": "Sony", + "rankDxo": 74, + "rankColor": 22.8, + "rankDyn": 12.5, + "rankLln": 1067, + "rankDxo_ranking": 125, + "rankColor_ranking": 145, + "rankDyn_ranking": 129, + "rankLln_ranking": 101, + "name": "Sony NEX-3N", + "pixelDepth": 16, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Feb. 2013", + "launchDateGraph": "2013-02-20", + "sensorraw": 16.14, + "link": "/Cameras/Sony/NEX-3N", + "chapo": " Introduction Announced in February 2013 at the CES in Las Vegas, the Sony NEX-3N is the replacement for the popular entry-level NEX-F3. It adopts a 16.03M-Pix APS-C (15.6mm x23.5mm) CMOS sensor with sensitivity running from ISO200-16,000 but is unashamedly aimed at novices, adding several new features to entice those users from a compact stills camera.These include a powered zoom rocker switch on the body for the bundled retractable E16-50mm f/3.5-5.6 PZ kit lens (equivalent angle of view to a 24-75mm in 35mm full-frame terms). Not only is the lens more compact (when retracted) than previous offerings,", + "linkReview": "https://www.dxomark.com/sony-nex-3n-review-stylish-replacement-to-nex-f3/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-3N/vignette3.png", + "Type": "Hybrid ", + "Announced": "Feb. 2013  ", + "Indicative price (USD)": "\n 670  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3276  \n ", + "Sensor photo detectors (Mpix) ": "16.14  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "200 - 16000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "210", + "Battery type": "Li-ion, NP-FW50, 7.2V, 1020mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic, Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460000 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF,\nContinuous AF,\nDirect Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes, (3 images with 1/3 EV, 2/3 EV increments) ", + "Exposure compensation": "+/-3.0 EV (1/3 EV steps)  ", + "Drive modes": "Single-shot,\nContinuous,\nSpeed Priority,\nSelf-timer (10/2 sec delay selectable) ", + "Buffer size": "9 (JPEG), 5 (RAW), 4 (RAW+JPEG) ", + "Recording medium": "Memory Stick PRO Duo,\nPRO-HG Duo,\nSD,\nSDHC,\nSDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": " ", + "Connectivity": "MicroUSB,\nHDMI (mini-connector type D) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 50 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-5N.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-5N.txt new file mode 100644 index 0000000..3b697eb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-5N.txt @@ -0,0 +1,96 @@ +{ + "id": 737, + "price": 860, + "year": "2011", + "brand": "Sony", + "rankDxo": 77, + "rankColor": 23.6, + "rankDyn": 12.7, + "rankLln": 1079, + "rankDxo_ranking": 103, + "rankColor_ranking": 97, + "rankDyn_ranking": 90, + "rankLln_ranking": 97, + "name": "Sony NEX-5N", + "pixelDepth": 16.1, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2011", + "launchDateGraph": "2011-08-24", + "sensorraw": 16.14, + "link": "/Cameras/Sony/NEX-5N", + "chapo": " First of all, the 5N features a brand-new sensor with specs very similar to the NEX C3’s. Note that this sensor offers a wide range of ISO—from ISO 100 to a very ambitious ISO 25,600. In term of usability, the NEX 5N is the first of the NEX series with a touch screen.Overall, the gap between the Sony NEX C3 and the Sony NEX 5N seems narrower than the one between its predecessors, the NEX and the NEX 5. Let’s see if our test results can confirm that.Sony NEX 5N: the test resultsNo surprise here: the Sony", + "linkReview": "https://www.dxomark.com/sony-nex-5n-sony-s-latest-interchangeable-lens-camera-put-to-the-test/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5N/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2011  ", + "Indicative price (USD)": "\n 860  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3276  \n ", + "Sensor photo detectors (Mpix) ": "16.14  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "4.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "269", + "Battery type": "Li-ion, NP-FH50 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal top plate, Polycarbonate ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF(AF-S), Continuous AF(AF-C) selectable, Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes, +/-5.0 EV (1/3EV steps), 3 frames ", + "Exposure compensation": "+/-5.0 EV(1/3EV steps) ", + "Drive modes": "Single-shot, Continuous, Speed Priority, Self-timer, Continuous Self-timer, Bracketing ", + "Buffer size": " ", + "Recording medium": "Memory Stick PRO Duo; Pro-HG Duo; PRO-HG HX Duo; SD, SDHC; SDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": " ", + "Connectivity": "USB 2.0 (High Speed), HDMI (mini type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes (smart accessory terminal) ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 (60 fps) ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 Visual ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-5R.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-5R.txt new file mode 100644 index 0000000..8c1cb4f --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-5R.txt @@ -0,0 +1,96 @@ +{ + "id": 826, + "price": 650, + "year": "2012", + "brand": "Sony", + "rankDxo": 78, + "rankColor": 23.7, + "rankDyn": 13.1, + "rankLln": 910, + "rankDxo_ranking": 100, + "rankColor_ranking": 89, + "rankDyn_ranking": 67, + "rankLln_ranking": 124, + "name": "Sony NEX-5R", + "pixelDepth": 16.1, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2012", + "launchDateGraph": "2012-08-29", + "sensorraw": 16.14, + "link": "/Cameras/Sony/NEX-5R", + "chapo": " Introduction With an overall DxOMark Score of 78, the NEX-5R places 28th in the DxOMark rankings. It beats its predecessor, the NEX-5N, by only one point, which clearly indicates that it uses the very same sensor.The NEX-5R jumps 5 places ahead of the Sony SLT-A57, the DSLR equipped with the same sensor but somewhat handicapped in low-light sensitivity by its use of Translucent Mirror Technology. The NEX-5R also jumps ahead of the Canon EOS 1D Mark IV by 9 places as well as the Fujifilm X100 – a camera of", + "linkReview": "https://www.dxomark.com/sony-nex-5-r-a-new-sony-nex-5n/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5R/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2012  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3276  \n ", + "Sensor photo detectors (Mpix) ": "16.14  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FW50, 7.2V, 1020mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal top plate, Polycarbonate ", + "Mount material": "Metal ", + "View finder type": "No viewfinder ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S, AF-C ", + "Number of autofocus points": "99 ", + "Exposure bracketing": "Yes, with 1/3, 2/3, 1, 2, 3EV increments, 3 frames  ", + "Exposure compensation": "+/- 3.0EV (1/3EV steps) ", + "Drive modes": "Single-shot, Continuous shooting, Speed Priority continuous shooting, Self-timer, Bracketing, Remote Cdr, Self-timer : 2s or 10s delay (single, continuous 3 or 5 frames) ", + "Buffer size": "15 (Fine JPEG), 16 (Standard JPEG), 11 (RAWs), 10 (RAW+JPEG) ", + "Recording medium": " ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0 (480 Mbit/sec), HDMI (Type C mini), Wi-Fi ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD, MP4 ", + "Video codec": " ", + "Video stabilisation": "No " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-5T.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-5T.txt new file mode 100644 index 0000000..4c988a3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-5T.txt @@ -0,0 +1,96 @@ +{ + "id": 905, + "price": 549, + "year": "2013", + "brand": "Sony", + "rankDxo": 78, + "rankColor": 23.6, + "rankDyn": 13, + "rankLln": 1015, + "rankDxo_ranking": 98, + "rankColor_ranking": 93, + "rankDyn_ranking": 72, + "rankLln_ranking": 106, + "name": "Sony NEX-5T", + "pixelDepth": 16.1, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2013", + "launchDateGraph": "2013-08-27", + "sensorraw": 16.14, + "link": "/Cameras/Sony/NEX-5T", + "chapo": " Introduction The NEX-5T is Sony’s upper entry-level APS-C mirrorless model featuring a 16-Mpix CMOS sensor and is the successor to the similarly specified NEX-5R launched a year ago. That model was a substantial upgrade over its predecessor, the NEX-5N, and incorporated an adapted 16-Mpix sensor with on-chip phase-detection pixels for a hybrid AF system.The NEX-5T then is a minor upgrade in that respect featuring a similar 16-Mpix sensor, top-plate control dial and the app-functionality of the previous iteration but adds the convenience of NFC (Near Field Communication) technology to the existing WiFi capability.Other features of note", + "linkReview": "https://www.dxomark.com/sony-nex-5t-review-minor-update-to-popular-mirrorless-model/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-5T/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2013  ", + "Indicative price (USD)": "\n 549  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3276  \n ", + "Sensor photo detectors (Mpix) ": "16.14  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Sony E  ", + "Weight (gr)": " ", + "Battery type": "Lithium-Ion NPFW50 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF(AF-S), Continuous AF(AF-C), Auto Focus, Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "99 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 3 EV ", + "Drive modes": "Single-shot, Continuous, Speed Priority Continuous, Self-timer (10/2 sec. delay), Self-timer (Cont.) (with 10 sec. delay; 3/5 exposures), Bracketing ", + "Buffer size": "JPEG Standard (11 shots)JPEG Fine (11 shots)RAW (10 shots)RAW+JPEG (9 shots) ", + "Recording medium": "SD/ SDHC/SDXC, Memory Stick Pro Duo/ Pro-HG Duo ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/WIFI/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "No ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MPEG4 ", + "Video codec": "H264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-6.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-6.txt new file mode 100644 index 0000000..7f272fd --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-6.txt @@ -0,0 +1,96 @@ +{ + "id": 832, + "price": 848, + "year": "2012", + "brand": "Sony", + "rankDxo": 78, + "rankColor": 23.7, + "rankDyn": 13.1, + "rankLln": 1018, + "rankDxo_ranking": 92, + "rankColor_ranking": 83, + "rankDyn_ranking": 68, + "rankLln_ranking": 104, + "name": "Sony NEX-6", + "pixelDepth": 16.1, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-12", + "sensorraw": 16, + "link": "/Cameras/Sony/NEX-6", + "chapo": " Even with a far less convoluted interface than the NEX-7’s, the NEX-6 doesn’t skimp on ergonomics and features, with its adjustable screen and its high-resolution OLED electronic viewfinder. The NEX-6 keeps the abundance of modes gracing recent Sony models, along with Full HD video recording in 50p, multi-shot Superior Auto mode, and as a bonus — WiFi.High-dynamic 16 Mpix sensorThe NEX-6 uses the well known and perfectly mastered 16-Mpix Exmor APS-C CMOS sensor that astonished the photo world with its dynamic range and high-sensitivity image quality, as confirmed by our tests on the NEX-5N and the SLT-A57,", + "linkReview": "https://www.dxomark.com/sony-nex-6-the-compact-hybrid-synthesis/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-6/vignette3.png", + "Type": "Hybrid ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 848  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4912 x 3264  \n ", + "Sensor photo detectors (Mpix) ": "16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "287", + "Battery type": "Li-ion, NP-FH50 ", + "Battery weight (gr)": "56", + "Tropicalization": "No ", + "Camera material": "Mixed plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.09 ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S: Single-shot AF, AF-C: Continuous AF ", + "Number of autofocus points": "99 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5 EV ", + "Drive modes": "Single-shot, Continuous shooting, Speed Priority continuous shooting, Self-timer (10/2s delay selectable), Self-timer (10/2s delay 3/5 exposures selectable), Bracketing, Remote Cdr ", + "Buffer size": "15 (JPEG), 11(RAW), 10 (RAW+JPEG) ", + "Recording medium": "MS PRO Duo, MS PRO-HG Duo, SD, SDHC, SDXC ", + "Image format": "JPEG, RAW(ARW) ", + "White balance bracketing": "No ", + "Connectivity": "USB 2.0/HDMI (Mini Type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 24 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD, MP4 ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-7.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-7.txt new file mode 100644 index 0000000..440a1b9 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-7.txt @@ -0,0 +1,96 @@ +{ + "id": 736, + "price": 1720, + "year": "2011", + "brand": "Sony", + "rankDxo": 81, + "rankColor": 24.1, + "rankDyn": 13.4, + "rankLln": 1016, + "rankDxo_ranking": 67, + "rankColor_ranking": 59, + "rankDyn_ranking": 51, + "rankLln_ranking": 105, + "name": "Sony NEX-7", + "pixelDepth": 24.3, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Aug. 2011", + "launchDateGraph": "2011-08-24", + "sensorraw": 24.24, + "link": "/Cameras/Sony/NEX-7", + "chapo": " The Sony NEX-7 has the same sensor as the Sony A77 and Sony A65, but it’s not a single-lens translucent (SLT) camera — that is, it doesn’t have a partially-translucent mirror — and that makes all the difference, because it doesn’t have to contend with mirror-related light loss. Let’s take a look at how the NEX-7 fares against different kinds of cameras, starting with its Sony SLT relatives.Comparing the Sony SLT A77 vs Sony SLT A65 vs Sony NEX-7:Overall DxOMark scores show a difference of 3 points in favor of the NEX-7 (81) over the SLT A77", + "linkReview": "https://www.dxomark.com/sony-nex-7-comparisons-and-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-7/vignette3.png", + "Type": "Hybrid ", + "Announced": "Aug. 2011  ", + "Indicative price (USD)": "\n 1720  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 16000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "400", + "Battery type": "Li-ion, NP-FW50 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal top plate, Polycarbonate ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF(AF-S), Continuous AF(AF-C) selectable, Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes, +/-5.0 EV (1/3EV steps), 3 frames ", + "Exposure compensation": "+/-5.0 EV(1/3EV steps) ", + "Drive modes": "Single-shot, Continuous, Speed Priority, Self-timer, Continuous Self-timer, Bracketing ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": " ", + "Connectivity": "USB 2.0 (High Speed), HDMI (mini type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes (smart accessory terminal) ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 (60 fps) ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 Visual ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-C3.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-C3.txt new file mode 100644 index 0000000..bf7972b --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-C3.txt @@ -0,0 +1,96 @@ +{ + "id": 715, + "price": 770, + "year": "2011", + "brand": "Sony", + "rankDxo": 73, + "rankColor": 22.7, + "rankDyn": 12.2, + "rankLln": 1083, + "rankDxo_ranking": 134, + "rankColor_ranking": 167, + "rankDyn_ranking": 160, + "rankLln_ranking": 94, + "name": "Sony NEX-C3", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "Jun. 2011", + "launchDateGraph": "2011-06-08", + "sensorraw": 16.16, + "link": "/Cameras/Sony/NEX-C3", + "chapo": " Sony NEX C-3 vs the previous Sony NEX 3 improvements in every aspect. In this comparison it is the Sony Nex C3 that takes the lead in regards to its predecessor, the Sony NEX 3DxOMark Score, on Portait, Landscape and Sport (lowlight), every metric goes a nudge up.Looking at the details, the noise is clearly better on this new camera by 1/3 TStop.See the full comparison of Sony NEX C3 vs Sony NEX 3You also can compare it with the Sony EX 5 here: Sony NEX C3 vs NEX 5Sony NEX C-3  vs Sony A580 vs Pentax K5 vs", + "linkReview": "https://www.dxomark.com/dxomark-sony-nex-c3-review-a-great-sensor-in-tiny-a-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-C3/vignette3.png", + "Type": "Hybrid ", + "Announced": "Jun. 2011  ", + "Indicative price (USD)": "\n 770  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3280  \n ", + "Sensor photo detectors (Mpix) ": "16.16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "2.5  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "225", + "Battery type": "Li-ion, NP-FW50 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "Metal top plate, Polycarbonate ", + "Mount material": " ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Continuous AF ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes, 1/3 EV or 2/3 EV increments, 3 frames ", + "Exposure compensation": "+/-2EV with 1/3EVsteps ", + "Drive modes": "Single, Continuous (2.5fps), Speed-priority Continuous (5.5fps), 10 seconds and 2 seconds Self-timer ", + "Buffer size": "14 or 18 (JPG), 6 (RAW), 6 (RAW+JPG) ", + "Recording medium": "SD\nSDHC\nSDXC\nMemory Stick Pro Duo\nMemory Stick Pro-HG Duo  ", + "Image format": "JPEG (DCF v.2.0, Exif v.2.3, MPF Baseline) compliant, DPOF compatible, RAW (Sony ARW 2.2 format), RAW & JPEG ", + "White balance bracketing": " ", + "Connectivity": "USB 2.0 (High Speed), HDMI (mini type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes (smart accessory terminal) ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 (29.97fps) ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 Visual ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX-F3.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX-F3.txt new file mode 100644 index 0000000..9ea6e9a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX-F3.txt @@ -0,0 +1,96 @@ +{ + "id": 808, + "price": 600, + "year": "2012", + "brand": "Sony", + "rankDxo": 73, + "rankColor": 22.7, + "rankDyn": 12.3, + "rankLln": 1114, + "rankDxo_ranking": 130, + "rankColor_ranking": 159, + "rankDyn_ranking": 149, + "rankLln_ranking": 90, + "name": "Sony NEX-F3", + "pixelDepth": 16.1, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "May. 2012", + "launchDateGraph": "2012-05-17", + "sensorraw": 16.14, + "link": "/Cameras/Sony/NEX-F3", + "chapo": " Introduction The NEX-F3 succeeds the NEX-C3 while keeping the latter’s&nbsp;16Mpix APS-C CMOS Exmor sensor, well-known for its qualities of excellent behavior at high sensitivities and in low-light, and for its record-breaking dynamic range.Compared to the NEX-C3, the NEX-F3 breaks through the previous limits of video resolution, offering&nbsp;Full HD recording at 50i/25p with stereo sound&nbsp;via an integrated microphone, along with permanent autofocus. Still highly compact, the NEX-F3 measures a few millimeters more than its predecessor in all dimensions, notably depth (41,3mm vs 33mm). It also puts 25 more grams on the", + "linkReview": "https://www.dxomark.com/sony-nex-f3-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX-F3/vignette3.png", + "Type": "Hybrid ", + "Announced": "May. 2012  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3276  \n ", + "Sensor photo detectors (Mpix) ": "16.14  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 16000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "6.0  ", + "Live view ": "Yes ", + "Stabilization ": "No ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": "255", + "Battery type": "NP-FW50 ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal top plate, Polycarbonate ", + "Mount material": "Metal ", + "View finder type": "No ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF(AF-S), Continuous AF(AF-C) selectable, Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "25 ", + "Exposure bracketing": "Yes, +/-0.7 EV (1/3EV or 0.7EV steps), 3 frames ", + "Exposure compensation": "+/-5.0 EV(1/3EV steps) ", + "Drive modes": "Single-shot, Continuous, Speed Priority, Self-timer, Continuous Self-timer, Bracketing ", + "Buffer size": " ", + "Recording medium": "Memory Stick PRO Duo/PRO-HG Duo/SD/SDHC/SDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": " ", + "Connectivity": "USB 2.0 (High Speed), HDMI (mini type C) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1280 x 720 29.97 ", + "Full HD": "No ", + "Live autofocus": " ", + "Video file format": "MP4 ", + "Video codec": "MPEG-4 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX3.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX3.txt new file mode 100644 index 0000000..95e5204 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX3.txt @@ -0,0 +1,96 @@ +{ + "id": 651, + "price": 550, + "year": "2010", + "brand": "Sony", + "rankDxo": 68, + "rankColor": 22.1, + "rankDyn": 12, + "rankLln": 830, + "rankDxo_ranking": 176, + "rankColor_ranking": 215, + "rankDyn_ranking": 175, + "rankLln_ranking": 141, + "name": "Sony NEX3", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "May. 2010", + "launchDateGraph": "2010-05-01", + "sensorraw": 14.16, + "link": "/Cameras/Sony/NEX3", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX3/vignette3.png", + "Type": "Hybrid ", + "Announced": "May. 2010  ", + "Indicative price (USD)": "\n 550  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3072  \n ", + "Sensor photo detectors (Mpix) ": "14.16  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3/2  ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "5 or 7  ", + "Live view ": "Yes ", + "Stabilization ": "yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Sony E  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony NEX5.txt b/scr/模糊专家系统/scrape/scraped/Sony NEX5.txt new file mode 100644 index 0000000..a842d86 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony NEX5.txt @@ -0,0 +1,96 @@ +{ + "id": 652, + "price": 650, + "year": "2010", + "brand": "Sony", + "rankDxo": 69, + "rankColor": 22.2, + "rankDyn": 12.2, + "rankLln": 796, + "rankDxo_ranking": 171, + "rankColor_ranking": 205, + "rankDyn_ranking": 165, + "rankLln_ranking": 156, + "name": "Sony NEX5", + "pixelDepth": 14.16, + "sensor": "sensor_apsc", + "type": "hybrid", + "status": "TESTED", + "launchDate": "May. 2010", + "launchDateGraph": "2010-05-01", + "sensorraw": 14.16, + "link": "/Cameras/Sony/NEX5", + "chapo": " Here are the scores for the NEX-3 and NEX-5 compared with the A450:The NEX cameras show very small improvements versus the A450 — so small that they should be hardly noticeable on final images.When compared to competitive products from Panasonic and Olympus in the same category, the NEX's larger sensor clearly makes a difference. The NEX cameras show an edge for all three DxOMark Scores, followed by the Panasonic GH1 among the different comparable products.Disclaimer: This dxomark review evaluates only the selected camera’s RAW sensor performance metrics (i.e., Color Depth, Dynamic Range, and Low-Light ISO), and should", + "linkReview": "https://www.dxomark.com/dxomark-review-for-sony-nex-3-and-nex-5/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/NEX5/vignette3.png", + "Type": "Hybrid ", + "Announced": "May. 2010  ", + "Indicative price (USD)": "\n 650  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4608 x 3072  \n ", + "Sensor photo detectors (Mpix) ": "14.16  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3/2 ", + "ISO latitude ": "200 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30  ", + "Frame rate (fps)": "7  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony E  ", + "Weight (gr)": " ", + "Battery type": " ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": " ", + "View finder type": " ", + "View finder magnification": " ", + "View finder coverage": " ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": " ", + "Monitor size": " ", + "Monitor pixel": " ", + "Articulated screen": " ", + "Touch screen": " ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": " ", + "Autofocus modes": " ", + "Number of autofocus points": " ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": " ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": " ", + "White balance bracketing": " ", + "Connectivity": " ", + "Bluetooth": " ", + "3G": " ", + "Sound recording": " ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": " ", + "Maximum format image video": " ", + "Full HD": " ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 33.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 33.txt new file mode 100644 index 0000000..610dfe5 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 33.txt @@ -0,0 +1,96 @@ +{ + "id": 673, + "price": 599, + "year": "2010", + "brand": "Sony", + "rankDxo": 70, + "rankColor": 22.8, + "rankDyn": 12.6, + "rankLln": 591, + "rankDxo_ranking": 159, + "rankColor_ranking": 148, + "rankDyn_ranking": 110, + "rankLln_ranking": 212, + "name": "Sony SLT Alpha 33", + "pixelDepth": 14.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Aug. 2010", + "launchDateGraph": "2010-08-24", + "sensorraw": 14.2, + "link": "/Cameras/Sony/SLT-Alpha-33", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_33/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2010  ", + "Indicative price (USD)": "\n 599  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4592 x 3056  \n ", + "Sensor photo detectors (Mpix) ": "14.2  ", + "Sensor size (mm)": "15.6 x 23.4 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "7.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FW50, 7.2V, 1020mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " ", + "Mount material": "mixed plastic/metal ", + "View finder type": "electronic (1152000 dots displayed) ", + "View finder magnification": "1.1 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "0 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Automatic AF, Continuous AF ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "3 shots in 0.3EV or 0.7EV step ", + "Exposure compensation": " ", + "Drive modes": "Single, High-speed continuous (6 fps), Low-speed continuous (2.5 fps), Speed Priority continuous (7 fps), Self-timer (2 sec or 10 sec), Remote commander ", + "Buffer size": "16 (JPEG Standard), 14 (JPEG Fine), 7 (RAW), 7 (RAW+JPEG) ", + "Recording medium": "SD, SDHC, SDXC, Memory Stick PRO Duo/Pro-HG Duo ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes: 3 frames Lo (10 mired) or Hi (20 mired) ", + "Connectivity": "USB 2.0 Hi-speed (mass-storage, PTP), HDMI (TypeC mini) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (stereo) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60i (59.94i Interlace recording, 29.97 progressive image sensor output) ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, AVCHD ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 35.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 35.txt new file mode 100644 index 0000000..9816dfa --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 35.txt @@ -0,0 +1,96 @@ +{ + "id": 716, + "price": 600, + "year": "2011", + "brand": "Sony", + "rankDxo": 74, + "rankColor": 23.3, + "rankDyn": 12.7, + "rankLln": 763, + "rankDxo_ranking": 120, + "rankColor_ranking": 121, + "rankDyn_ranking": 94, + "rankLln_ranking": 167, + "name": "Sony SLT Alpha 35", + "pixelDepth": 16, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Jun. 2011", + "launchDateGraph": "2011-06-08", + "sensorraw": 16.16, + "link": "/Cameras/Sony/SLT-Alpha-35", + "chapo": " This camera can be regarded as the evolution of the Sony Alpha 33 and in its interior, encased in a polycarbonate resin body we find the acclaimed Exmor CMOS sensor that that powers other Sony offerings such as the high-scoring Alpha 580.It boasts an electronic viewfinder dubbed ”Tru-Finder, (Xtra Fine)” with 1.15 million dots effective resolution and a 100% frame coverage, according to Sony’s press release. Same results as the SLT A55, better than the previous A33 No news here, this camera has given us the same test results as the SLT A55.On the other hand, when compared to the", + "linkReview": "https://www.dxomark.com/sony-slt-a35-image-quality-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_35/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Jun. 2011  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4912 x 3264  \n ", + "Sensor photo detectors (Mpix) ": "16.16  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 60.0  ", + "Frame rate (fps)": "2.5 or 5.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": " ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FH50 ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": " Polycarbonate resin ", + "Mount material": " ", + "View finder type": "electronic ", + "View finder magnification": "1.1 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Phase Detect, Multi-area, Selective single-point, Single, Continuous, Face Detection, Live View ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "3 frames in 1/3 or 2/3 ", + "Exposure compensation": "+/-2, 1/3 EV steps ", + "Drive modes": "Single, high-speed continuous (5.5 fps) , low-speed continuous (3 fps), Tele-zoom High Speed Shooting (7 fps, ) self-timer (2 sec or 10 sec) ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC/MemoryStick Pro Duo ", + "Image format": " ", + "White balance bracketing": "Yes, 3 frames, H/L selectable ", + "Connectivity": "USB 2.0 (High Speed), HDMI type C ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": " ", + "External micro": "Yes ", + "Histogram": " ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080, 59.94i (from 29.97fps sensor output) ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "MP4, AVCHD Ver. 1.0 compliant Video ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 37.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 37.txt new file mode 100644 index 0000000..4f15991 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 37.txt @@ -0,0 +1,96 @@ +{ + "id": 809, + "price": 500, + "year": "2012", + "brand": "Sony", + "rankDxo": 75, + "rankColor": 23.3, + "rankDyn": 12.9, + "rankLln": 799, + "rankDxo_ranking": 115, + "rankColor_ranking": 120, + "rankDyn_ranking": 84, + "rankLln_ranking": 155, + "name": "Sony SLT Alpha 37", + "pixelDepth": 16, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "May. 2012", + "launchDateGraph": "2012-05-17", + "sensorraw": 16.14, + "link": "/Cameras/Sony/SLT-Alpha-37", + "chapo": " Introduction Equipped with translucent mirror technology, the Alpha 37 does not have an optical viewfinder, but rather a 1440-million-point electronic viewfinder. The system permits “reflex” autofocus phase detection in video mode, thus LiveView during video recording, as well as being able to see in the viewfinder the impact of various settings (white balance, exposure, depth of field, etc.).This new generation of entry-level digital reflex SLT cameras keeps the famous 16Mpix APS-C Exmor sensor, known for its excellent behavior at high sensitivities and in low-light, and for its high dynamic range.", + "linkReview": "https://www.dxomark.com/sony-slt-a37-preview/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_37/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "May. 2012  ", + "Indicative price (USD)": "\n 500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3276  \n ", + "Sensor photo detectors (Mpix) ": "16.14  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 16000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "7 or 5.5  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha  ", + "Weight (gr)": "448", + "Battery type": "NP-FW506 ", + "Battery weight (gr)": "58", + "Tropicalization": "No ", + "Camera material": "Mixed plastic ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.04 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": " ", + "Monitor type": "LCD ", + "Monitor size": "2.7 ", + "Monitor pixel": "230400 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF(AF-S), Continuous AF(AF-C) selectable, Direct Manual Focus (DMF), Manual Focus ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "3 frames in 1/3 or 2/3 ", + "Exposure compensation": "+/-3, 1/3 EV steps ", + "Drive modes": "Single, high-speed continuous, low-speed continuous, Tele-zoom High Speed Shooting, self-timer. ", + "Buffer size": " ", + "Recording medium": "SD/SDHC/SDXC/MemoryStick Pro Duo ", + "Image format": "JPEG, RAW ", + "White balance bracketing": "Yes, 3 frames, H/L selectable ", + "Connectivity": "USB 2.0 (High Speed), HDMI type C ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Dolby Digital (AC-3) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 28 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "MP4, AVCHD Ver. 2.0 compliant Video ", + "Video codec": " ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 55.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 55.txt new file mode 100644 index 0000000..eb15a90 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 55.txt @@ -0,0 +1,96 @@ +{ + "id": 675, + "price": 750, + "year": "2010", + "brand": "Sony", + "rankDxo": 73, + "rankColor": 23, + "rankDyn": 12.4, + "rankLln": 816, + "rankDxo_ranking": 132, + "rankColor_ranking": 128, + "rankDyn_ranking": 136, + "rankLln_ranking": 146, + "name": "Sony SLT Alpha 55", + "pixelDepth": 16.2, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2010", + "launchDateGraph": "2010-08-24", + "sensorraw": 16.2, + "link": "/Cameras/Sony/SLT-Alpha-55", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_55/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2010  ", + "Indicative price (USD)": "\n 750  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4912 x 3264  \n ", + "Sensor photo detectors (Mpix) ": "16.2  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FW50, 7.2V, 1020mAh ", + "Battery weight (gr)": " ", + "Tropicalization": " ", + "Camera material": "plastic ", + "Mount material": "mixed plastic/metal ", + "View finder type": "0.46" Xtra Fine EVF (Electronic viewfinder) (1440000 pixels)  ", + "View finder magnification": "1.1 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +4.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (Single-shot AF), AF-A (Automatic AF), AF-C (Continuous AF) ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "3 images with 0.3EV or 0.7EV steps ", + "Exposure compensation": " ", + "Drive modes": "Single, High-speed continuous (6 fps), Low-speed continuous (3 fps), Speed Priority continuous (10 fps), Self-timer (2 sec or 10 sec), Remote commander ", + "Buffer size": "28 ", + "Recording medium": " ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes: 3 frames Lo (10 mired) or Hi (20 mired) ", + "Connectivity": "USB2.0 (Hi-speed, miniB), HDMI (Type C mini) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (video with sound) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "model SLT-A55V with GPS, SLT-A55 without GPS depending on country ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080/ 60i (59.94i Interlace recording, 29.97 progressive image sensor output) ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 57.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 57.txt new file mode 100644 index 0000000..9b738ba --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 57.txt @@ -0,0 +1,96 @@ +{ + "id": 798, + "price": 700, + "year": "2012", + "brand": "Sony", + "rankDxo": 75, + "rankColor": 23.4, + "rankDyn": 13, + "rankLln": 785, + "rankDxo_ranking": 111, + "rankColor_ranking": 116, + "rankDyn_ranking": 76, + "rankLln_ranking": 161, + "name": "Sony SLT Alpha 57", + "pixelDepth": 16.1, + "sensor": "sensor_apsc", + "type": "none", + "status": "TESTED", + "launchDate": "Mar. 2012", + "launchDateGraph": "2012-03-12", + "sensorraw": 16.14, + "link": "/Cameras/Sony/SLT-Alpha-57", + "chapo": " Introduction The A57 features the (refurbished) essentials of its predecessor’s spec sheet while also including progressive-scan video, artistic filtering, greatly improved battery life, and a better-crafted finish (on the same level as that of the SLT-A65).Sony SLT-A57 PreviewSony SLT-A57 Sensor performance 16Mpix Exmor APS-C sensorIf there is one single thing that can characterize the SLT-A57, it would be its Sony 16Mpix APS-C CMOS sensor, praised for its image quality at record high sensitivity and dynamic range. Still, in 2012, we rather expected Sony to implement a new", + "linkReview": "https://www.dxomark.com/sony-slt-a57-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_57/vignette3.png", + "Type": " ", + "Announced": "Mar. 2012  ", + "Indicative price (USD)": "\n 700  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4928 x 3276  \n ", + "Sensor photo detectors (Mpix) ": "16.14  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0.1 ", + "Dust cleaning": "Yes ", + "Mount type": "None  ", + "Weight (gr)": "618", + "Battery type": "Li-ion, NP-FM500H, 7.2V, 1650mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": " ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.4 ", + "View finder coverage": "100 ", + "Mirror lockup": "Yes ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF, Automatic AF, Continuous AF, Manual Focus ", + "Number of autofocus points": "15 ", + "Exposure bracketing": "0.3EV, 0.7EV Increments,\n3 frames  ", + "Exposure compensation": "+/-3 EV ", + "Drive modes": "Single-shot, Continuous shooting (Hi/Lo selectable),\nSelf-timer (10/2 sec delay selectable),\nBracket: Cont./Single,\nWhite Balance bracket,\nRemote commander (RMT-DSLR1 Sold Separately) ", + "Buffer size": "  ", + "Recording medium": "Memory Stick PRO Duo, Memory Stick PRO-HG Duo, SD, SDHC, SDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB2.0 Hi-speed, HDMI TypeC mini ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080/ 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4, MPEG-4 AVC  ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 58.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 58.txt new file mode 100644 index 0000000..7f76a4d --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 58.txt @@ -0,0 +1,96 @@ +{ + "id": 864, + "price": 735, + "year": "2013", + "brand": "Sony", + "rankDxo": 74, + "rankColor": 23.3, + "rankDyn": 12.5, + "rankLln": 753, + "rankDxo_ranking": 123, + "rankColor_ranking": 118, + "rankDyn_ranking": 124, + "rankLln_ranking": 172, + "name": "Sony SLT Alpha 58", + "pixelDepth": 20.1, + "sensor": "sensor_apsc", + "type": "entryleveldslr", + "status": "TESTED", + "launchDate": "Feb. 2013", + "launchDateGraph": "2013-02-20", + "sensorraw": 20.09, + "link": "/Cameras/Sony/SLT-Alpha-58", + "chapo": " Introduction Sony’s SLT Alpha 58 is a single lens reflex camera with an APS-C sized CMOS sensor of just over 20 Mpix. The Alpha 58 has all of the features that you would expect in a DSLR, and unlike the majority of its competitors, it also has image stabilization built into the body rather than having it as a feature of the lenses. Stills can be captured at rates up to 8 frames per second and movies in full HD. The monitor screen, at 6.7cm, with 460k dots, is slightly smaller and lower resolution than some", + "linkReview": "https://www.dxomark.com/sony-slt-alpha-58-review/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_58/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Feb. 2013  ", + "Indicative price (USD)": "\n 735  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 5496 x 3656  \n ", + "Sensor photo detectors (Mpix) ": "20.09  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 16000 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": "492", + "Battery type": "Li-ion, NP-FM500H, 7.2V, 1650mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.88 ", + "View finder coverage": "100 ", + "Mirror lockup": "NA ", + "View finder diopter": "-4 to +4 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "460800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF,\nAutomatic AF,\nContinuous AF,\nManual Focus ", + "Number of autofocus points": "15 ", + "Exposure bracketing": " ", + "Exposure compensation": "+/-3 EV ", + "Drive modes": "Single-shot, Continuous shooting (Hi/Lo selectable),\nSelf-timer (10/2 sec delay selectable) ", + "Buffer size": "16 (JPEG) ", + "Recording medium": "Memory stick Pro Duo, \nPro-HG Duo,\nSD,\nSDHC,\nSDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": " ", + "Connectivity": "MicroUSB 2.0/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD / MP4 (MPEG-4 AVC (H.264)) ", + "Video codec": "H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 65.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 65.txt new file mode 100644 index 0000000..06d0549 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 65.txt @@ -0,0 +1,96 @@ +{ + "id": 735, + "price": 1290, + "year": "2011", + "brand": "Sony", + "rankDxo": 74, + "rankColor": 23.4, + "rankDyn": 12.6, + "rankLln": 717, + "rankDxo_ranking": 119, + "rankColor_ranking": 111, + "rankDyn_ranking": 102, + "rankLln_ranking": 181, + "name": "Sony SLT Alpha 65", + "pixelDepth": 24.3, + "sensor": "sensor_apsc", + "type": "entryleveldslr, semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2011", + "launchDateGraph": "2011-08-24", + "sensorraw": 24.24, + "link": "/Cameras/Sony/SLT-Alpha-65", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_65/vignette3.png", + "Type": "Entry-level DSLR ", + "Announced": "Aug. 2011  ", + "Indicative price (USD)": "\n 1290  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "100 - 16000 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": "622", + "Battery type": "NP-FM500H ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "mixed plastic/metal ", + "Mount material": "mixed plastic/metal ", + "View finder type": "electronic ", + "View finder magnification": "1.1 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +4.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (Single-shot AF), AF-A (Automatic AF), AF-C (Continuous AF) ", + "Number of autofocus points": "19 ", + "Exposure bracketing": "3 images with 0.3EV or 0.7EV steps ", + "Exposure compensation": " ", + "Drive modes": "Single-shot, Continuous shooting (Hi/Lo selectable), Self-timer (10/2 sec delay selectable), Bracket (Continuous/Single/WB), Remote commander (RMT-DSLR1 Sold Separately) ", + "Buffer size": "JPEG Standard (18 shots) JPEG Fine (17 shots) RAW (13 shots) RAW+JPEG (11 shots) ", + "Recording medium": "SD/SDHC/SDXC/Memory Stick Pro Duo/ Pro-HG Duo ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes: 3 frames Lo (10 mired) or Hi (20 mired) ", + "Connectivity": "USB2.0 (Hi-speed, miniB), HDMI (Type C mini) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (video with sound) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 (60, 24 fps) ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 68.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 68.txt new file mode 100644 index 0000000..922b007 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 68.txt @@ -0,0 +1,96 @@ +{ + "id": 1055, + "price": 600, + "year": "2015", + "brand": "Sony", + "rankDxo": 79, + "rankColor": 24.1, + "rankDyn": 13.5, + "rankLln": 701, + "rankDxo_ranking": 90, + "rankColor_ranking": 60, + "rankDyn_ranking": 44, + "rankLln_ranking": 185, + "name": "Sony SLT Alpha 68", + "pixelDepth": 24, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Nov. 2015", + "launchDateGraph": "2015-11-05", + "sensorraw": 24.19, + "link": "/Cameras/Sony/SLT-Alpha-68", + "chapo": " Specifications and featuresThe SLT Alpha 68 also features Sony’s 4D Focus system that uses 79 autofocus detection points, 15 of which are cross type within the central area of the sensor. There’s also a dedicated f/2.8 AF sensor for improved precision with large-aperture lenses, and the AF system is sensitive in light as low as EV –2. Of course, including a fixed mirror along with the inclusion of a OLED electronic viewfinder and 2.7-inch tilting LCD at the rear is an advantage when it comes to video capture. The SLT Alpha 68 features 1080p 30/24 fps using the XAVC", + "linkReview": "https://www.dxomark.com/sony-slt-alpha-68-sensor-review-incremental-advances-over-the-high-end-alpha-65/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_68/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Nov. 2015  ", + "Indicative price (USD)": "\n 600  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4016  \n ", + "Sensor photo detectors (Mpix) ": "24.19  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.54 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/4000 - 30.0  ", + "Frame rate (fps)": "8.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": " ", + "Battery type": "Li-Ion, NP-FM500H, 7.2V, 1600mAh, 11.5Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.88 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "2.7 ", + "Monitor pixel": "460800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Automatic AF (AF-A) ", + "Number of autofocus points": "79 ", + "Exposure bracketing": "Yes (Bracket: Cont./Bracket: Single, With 1/3EV, 1/2EV, 2/3EV, 1.0EV, 2.0EV, 3.0EV increments, 3 /5 frames) ", + "Exposure compensation": "+/-5 EV (1/3EV, 1/2EV steps selectable) ", + "Drive modes": "Single Shooting, Continuous shooting (Hi/Lo selectable), Self-timer (10/2 sec delay selectable), Self-timer (Cont.) (with 10 sec delay 3/5 exposures selectable), Bracket: Cont., Bracket: Single, White Balance bracket, DRO bracket ", + "Buffer size": " ", + "Recording medium": " Memory Stick PRO-HG Duo, Memory Stick PRO Duo, Memory Stick XC-HG Duo, SD, SDHC, SDXC memory cards (UHS-I compliant) ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "3 frames, H/L selectable ", + "Connectivity": "AV, USB ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD 2.0, MP4 ", + "Video codec": "XAVC S:MPEG-4 AVC/H.264 XAVC S, AVCHD:MPEG-4 AVC/H.264, MP4:MPEG-4 AVC/H.264 ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 77 II.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 77 II.txt new file mode 100644 index 0000000..153b2fb --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 77 II.txt @@ -0,0 +1,96 @@ +{ + "id": 953, + "price": 1200, + "year": "2014", + "brand": "Sony", + "rankDxo": 82, + "rankColor": 24.4, + "rankDyn": 13.4, + "rankLln": 1013, + "rankDxo_ranking": 59, + "rankColor_ranking": 45, + "rankDyn_ranking": 49, + "rankLln_ranking": 108, + "name": "Sony SLT Alpha 77 II", + "pixelDepth": 24.3, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "May. 2014", + "launchDateGraph": "2014-05-01", + "sensorraw": 24.24, + "link": "/Cameras/Sony/SLT-Alpha-77-II", + "chapo": " Nearly 3 years on from the launch of the a77, Sony unveil it’s replacement in the form of the Sony a77 II, featuring SLT technology, a new 24.3Mp sensor and 79-point autofocus systemSony Alpha 77 II Specification: Translucent Mirror Technology offers a boost for performanceWhilst Sony have been busy releasing mirrorless cameras, such as the full-frame Alpha 7 series or Alpha a and NEX options, it’s been over a year since they launched a traditional DSLR style camera. That’s now changed with the launch of a new flagship APS-C camera, the Sony a77 II, featuring Sony’s Translucent", + "linkReview": "https://www.dxomark.com/sony-a77-ii-preview-sony-unveil-new-flagship-aps-c-slt-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77_II/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "May. 2014  ", + "Indicative price (USD)": "\n 1200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.53 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": "647", + "Battery type": "Li-Ion, NP-FM500H, 7.2V, 11.8Wth, 1650mAh ", + "Battery weight (gr)": "77", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "1.09 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (Single-shot AF), AF-A (Automatic AF), AF-C (Continuous AF), Direct Manual Focus selectable ", + "Number of autofocus points": "79 ", + "Exposure bracketing": "Bracket: Cont./Bracket: Single, With 1/3EV, 1/2EV, 2/3EV, 1.0EV, 2.0EV, 3.0EV increments, 3 /5frames ", + "Exposure compensation": " +/-5.0 EV (1/3EV,1/2EV steps selectable) ", + "Drive modes": "Single-shot, Continuous shooting (Hi/Lo selectable), Self-timer (10/2 sec delay selectable), Bracket (Continuous/Single/WB/DRO), Remote commander ", + "Buffer size": "62 (JPEG) ", + "Recording medium": "Memory Stick PRO Duo,\nMemory Stick PRO-HG Duo,\nMemory Stick XC-HG Duo,\nSD memory card,\nSDHC memory card (UHS-I compliant),\nSDXC memory card (UHS-I compliant) ", + "Image format": "JPEG, RAW (ARW ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI/HDMI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 / 60 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "MPEG-4 AVC, H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 77.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 77.txt new file mode 100644 index 0000000..7929941 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 77.txt @@ -0,0 +1,96 @@ +{ + "id": 734, + "price": 1399, + "year": "2011", + "brand": "Sony", + "rankDxo": 78, + "rankColor": 24, + "rankDyn": 13.2, + "rankLln": 801, + "rankDxo_ranking": 94, + "rankColor_ranking": 64, + "rankDyn_ranking": 64, + "rankLln_ranking": 154, + "name": "Sony SLT Alpha 77", + "pixelDepth": 24.3, + "sensor": "sensor_apsc", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Aug. 2011", + "launchDateGraph": "2011-08-24", + "sensorraw": 24.34, + "link": "/Cameras/Sony/SLT-Alpha-77", + "chapo": " First of all, as expected, Sony doesn’t propose a classic DSLR but uses its “translucent mirror” technology to enable the light passing through the lens to reach the image sensor and the auto-focus sensor simultaneously. In addition to reducing camera size, this technology enables full-time phase-detect auto-focusing and a high continuous shooting speed—up to 12 fps in full resolution.But the main innovation that everybody was looking forward to seeing in action is the 24-megapixel APS-C sensor. Sony had already shaken the industry when they were able to fit 16 MPix on an APS-C-sized sensor while offering a", + "linkReview": "https://www.dxomark.com/sony-a77-measurements-and-review-of-the-world-s-first-24-mpix-aps-c-camera/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_77/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Aug. 2011  ", + "Indicative price (USD)": "\n 1399  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6048 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.34  ", + "Sensor size (mm)": "15.6 x 23.5 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1.5 ", + "Aspect Ratio": "3:2, 16:9 ", + "ISO latitude ": "50 - 16000 ", + "Shutter type": "mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.02 ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha DT  ", + "Weight (gr)": "653", + "Battery type": "NP-FM500H ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "mixed plastic/metal ", + "Mount material": "mixed plastic/metal ", + "View finder type": "electronic ", + "View finder magnification": "1.1 ", + "View finder coverage": "100 ", + "Mirror lockup": " ", + "View finder diopter": "-4.0 to +4.0 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "921600 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (Single-shot AF), AF-A (Automatic AF), AF-C (Continuous AF) ", + "Number of autofocus points": "19 ", + "Exposure bracketing": "3 images with 0.3EV or 0.7EV steps ", + "Exposure compensation": " ", + "Drive modes": "Single-shot, Continuous shooting (Hi/Lo selectable), Self-timer (10/2 sec delay selectable), Bracket (Continuous/Single/WB/DRO), Remote commander (RMT-DSLR1 Sold Separately) ", + "Buffer size": "JPEG Standard (17 shots) JPEG Fine (17 shots) JPEG Extra Fine (13 shots) RAW (13 shots) RAW+JPEG (11 shots) ", + "Recording medium": "SD/SDHC/SDXC/Memory Stick Pro Duo/ Pro-HG Duo ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes: 3 frames Lo (10 mired) or Hi (20 mired) ", + "Connectivity": "USB2.0 (Hi-speed, miniB), HDMI (Type C mini) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (video with sound) ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080 (60, 24 fps) ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "AVCHD, MP4 ", + "Video codec": "H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 99 II.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 99 II.txt new file mode 100644 index 0000000..cb228b3 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 99 II.txt @@ -0,0 +1,96 @@ +{ + "id": 1120, + "price": 3200, + "year": "2016", + "brand": "Sony", + "rankDxo": 92, + "rankColor": 25.4, + "rankDyn": 13.4, + "rankLln": 2317, + "rankDxo_ranking": 17, + "rankColor_ranking": 12, + "rankDyn_ranking": 54, + "rankLln_ranking": 32, + "name": "Sony SLT Alpha 99 II", + "pixelDepth": 42.4, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2016", + "launchDateGraph": "2016-09-19", + "sensorraw": 42.56, + "link": "/Cameras/Sony/SLT-Alpha-99-II", + "chapo": " As a result, the A99 II displays a notable improvement in its low-light performance compared to the original A99, achieving a higher low-light ISO score of 2317 ISO. The A99 II’s headline Landscape and Portrait scores haven’t progressed, but it still offers very solid results at base ISO and improved performance in the medium-to-high ISO sensitivities for color and dynamic range, thanks to that BSI sensor. This makes the Sony SLT A99 II a great choice for photographers after a high-resolution camera with good low-light performance. Highlights42Mp BSI CMOS sensorImproved low-light performanceExcellent color depth and dynamic range at base ISOHybrid", + "linkReview": "https://www.dxomark.com/sony-slt-alpha-99-ii-sensor-review-new-super-resolution-contender/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99_II/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2016  ", + "Indicative price (USD)": "\n 3200  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 8000 x 5320  \n ", + "Sensor photo detectors (Mpix) ": "42.56  ", + "Sensor size (mm)": "24 x 35.9 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "12.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FM500H, 7.2V, 1600mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.78 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S), Continuous AF (AF-C), Automatic AF (AF-A), Direct Manual Focus, Manual focus ", + "Number of autofocus points": "399 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5.0 EV (1/3 EV, 1/2 EV steps selectable) ", + "Drive modes": "Single Shooting, Continuous shooting (Hi+/Hi/Mid/Lo selectable), Self-timer (10/5/2 sec delay selectable), Self-timer (Cont.) (with 10/5/2 sec delay 3/5 frames selectable), Bracket: Cont., Bracket: Single, White Balance bracket, DRO bracket ", + "Buffer size": " ", + "Recording medium": "SLOT1: Multi-slot for Memory Stick PRO Duo and SD cards, SLOT2: Slot for SD cards ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "3 frames, H/L selectable ", + "Connectivity": "USB/WIFI/NFC ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVCS, AVCHD, MP4 ", + "Video codec": "XAVCS: MPEG-4 AVC/H.264, AVCHD: MPEG-4 AVC/H.264, MP4: MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 99.txt b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 99.txt new file mode 100644 index 0000000..d92d32a --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony SLT Alpha 99.txt @@ -0,0 +1,96 @@ +{ + "id": 831, + "price": 2800, + "year": "2012", + "brand": "Sony", + "rankDxo": 89, + "rankColor": 25, + "rankDyn": 14, + "rankLln": 1555, + "rankDxo_ranking": 27, + "rankColor_ranking": 20, + "rankDyn_ranking": 23, + "rankLln_ranking": 45, + "name": "Sony SLT Alpha 99", + "pixelDepth": 24.3, + "sensor": "sensor_fullframe", + "type": "semiprodslr", + "status": "TESTED", + "launchDate": "Sep. 2012", + "launchDateGraph": "2012-09-12", + "sensorraw": 24.24, + "link": "/Cameras/Sony/SLT-Alpha-99", + "chapo": " Full-frame 24MP sensorAs with the Sony Cyber-shot DSC-RX1, the Sony SLT-A99 inaugurates a new 24Mpix Exmor CMOS full-frame sensor. The sensor resolution, rather more modest than that of the Nikon D800, along with its wide sensitivity range – from 50 to 25600 ISO – should deliver good low-light results as well as a good dynamic range, which we expect our tests to confirm.Also worth noting is that the SLT-A99’s sensor moves to compensate for camera shake or vibrations caused by the photographer’s motions, and provides integrated mechanical image stabilization. This is both significant and rare for a", + "linkReview": "https://www.dxomark.com/slt-a99-sony-is-back-in-full-frame-fight/", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/SLT_Alpha_99/vignette3.png", + "Type": "Semi-Pro DSLR ", + "Announced": "Sep. 2012  ", + "Indicative price (USD)": "\n 2800  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "23.9 x 35.8 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "12.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "100 - 25600 ", + "Shutter type": "Mechanical ", + "Fastest - Slowest speed (s)": "1/8000 - 30.0  ", + "Frame rate (fps)": "10.0  ", + "Live view ": " ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "Yes ", + "Mount type": "Sony Alpha  ", + "Weight (gr)": " ", + "Battery type": "InfoLITHIUM M Series, NP-FM500H, 7.2V, 1650mAh, 11.8Wh ", + "Battery weight (gr)": " ", + "Tropicalization": "Yes ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "electronic ", + "View finder magnification": "0.71 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4.0 to +3.0m-1 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1228800 ", + "Articulated screen": "Yes ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "Single-shot AF (AF-S),\nAutomatic AF (AF-A),\nContinuous AF (AF-C),\nDepth Map Assist Continuous AF (AF-D) selectable ", + "Number of autofocus points": "0 ", + "Exposure bracketing": "Bracket: Cont./Bracket: Single, With 1/3 EV, 1/2 EV, 2/3 EV, 2.0 EV, 3.0 EV increments, 3/5 frames (2.0 EV, 3.0 EV : only 3 frames) selectable ", + "Exposure compensation": "+/-5.0 EV (1/3EV, 1/2EV steps selectable) ", + "Drive modes": "Single-shot,\nContinuous shooting (Hi/Lo selectable),\nSelf-timer (10/2 sec delay selectable),\nBracket (Continuous/Single/WB/DRO),\nRemote commander (RMT-DSLR2) ", + "Buffer size": " ", + "Recording medium": " ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "3 frames, H/L selectable ", + "Connectivity": "HDMI mini connector (Type-C) BRAVIA Sync (link menu) PhotoTV HD / USB Port(s) : MiniB, Hi-speed USB (USB2.0) ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes (Built-in stereo microphone or ECM-ALST1 (with supplied shoe adaptor) / ECM-CG50 / XLR-K1M (sold separately). Built-in, monaural, Volume settings in 8 steps between 0 and 7.) ", + "External micro": "Yes (3.5 mm Stereo minijack) ", + "Histogram": "Yes ", + "GPS": "Yes ", + "Video": "Yes ", + "Maximum format image video": "1920 x 1080/60p@28Mbps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": "AVCHD Ver. 2.0 (Progressive), AVCHD, MP4 ", + "Video codec": "AVCHD Ver. 2.0 compliant / MPEG-4 AVC (H.264) ", + "Video stabilisation": " " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/Sony a9.txt b/scr/模糊专家系统/scrape/scraped/Sony a9.txt new file mode 100644 index 0000000..9df7bd0 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/Sony a9.txt @@ -0,0 +1,96 @@ +{ + "id": 1162, + "price": 4500, + "year": "2017", + "brand": "Sony", + "rankDxo": 92, + "rankColor": 24.9, + "rankDyn": 13.3, + "rankLln": 3517, + "rankDxo_ranking": 16, + "rankColor_ranking": 24, + "rankDyn_ranking": 58, + "rankLln_ranking": 5, + "name": "Sony a9", + "pixelDepth": 24.2, + "sensor": "sensor_fullframe", + "type": "professional", + "status": "TESTED", + "launchDate": "Apr. 2017", + "launchDateGraph": "2017-04-19", + "sensorraw": 24.24, + "link": "/Cameras/Sony/a9", + "chapo": " The Sony a9 is the Japanese manufacturer’s latest flagship mirrorless offering, boasting a raft of high-performance features for action photographers. The 24.2Mp stacked CMOS sensor offers up to 20x faster sensor readout times, with an electronic shutter capable of impressively quick 1/32,000-second shutter speed, and blackout-free continuous shooting.\r\n The electronic shutter and mirrorless design facilitates super-fast 20fps continuous shooting, with AF/AE tracking as well as silent camera operation. The 693-point phase detection autofocus system also boasts coverage across the entire frame, enabling easier framing and improved tracking, as well as low light autofocus", + "linkReview": "https://www.dxomark.com/?p=13253", + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/a9/vignette3.png", + "Type": "Professional ", + "Announced": "Apr. 2017  ", + "Indicative price (USD)": "\n 4500  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 6024 x 4024  \n ", + "Sensor photo detectors (Mpix) ": "24.24  ", + "Sensor size (mm)": "23.8 x 35.6 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "1 ", + "Aspect Ratio": "3:2 ", + "ISO latitude ": "50 - 204800 ", + "Shutter type": "Electronic/Mechanical ", + "Fastest - Slowest speed (s)": "1/32000 - 30.0  ", + "Frame rate (fps)": "20.0  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": "1.0 ", + "Dust cleaning": "Yes ", + "Mount type": "Sony FE  ", + "Weight (gr)": " ", + "Battery type": "Li-ion, NP-FZ100, 7.2V, 2280mAh ", + "Battery weight (gr)": "83", + "Tropicalization": "No ", + "Camera material": "Metal ", + "Mount material": "Metal ", + "View finder type": "Electronic ", + "View finder magnification": "0.78 ", + "View finder coverage": "100 ", + "Mirror lockup": "No ", + "View finder diopter": "-4 to +3 ", + "Monitor type": "LCD ", + "Monitor size": "3 ", + "Monitor pixel": "1440000 ", + "Articulated screen": "Yes ", + "Touch screen": "Yes ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "Yes ", + "Autofocus modes": "AF-S (Single-shot AF), AF-C ( Continuous AF), DMF (Direct Manual Focus), Manual Focus ", + "Number of autofocus points": "693 ", + "Exposure bracketing": "Yes ", + "Exposure compensation": "+/- 5.0EV (1/3 EV, 1/2 EV steps), (with exposure compensation dial +/- 3EV (1/3 EV steps)) ", + "Drive modes": "Single, Continuous (Hi/Mid/Lo selectable), Self-timer, Self-timer (Cont.), Bracket: Single, Bracket: Cont., White Balance bracket, DRO bracket ", + "Buffer size": "362 (JPEG), 241 (RAW), 222 (RAW+JPEG) ", + "Recording medium": "Memory Stick PRO Duo, Memory Stick PRO-HG Duo, Memory Stick Micro(M2), SD, SDHC (UHS-I/II compliant), SDXC (UHS-I/II compliant), microSD, microSDHC, microSDXC ", + "Image format": "JPEG, RAW (ARW) ", + "White balance bracketing": "Yes ", + "Connectivity": "USB/WIFI/NFC/RJ-45 ", + "Bluetooth": "Yes ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": "Yes ", + "Histogram": "Yes ", + "GPS": "No ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 / 30 fps ", + "Full HD": "Yes ", + "Live autofocus": "Yes ", + "Video file format": "XAVC S, AVCHD format Ver. 2.0 compliant, MP4 ", + "Video codec": "MPEG-4 AVC/H.264 ", + "Video stabilisation": "Yes " +} \ No newline at end of file diff --git a/scr/模糊专家系统/scrape/scraped/YUNEEC Breeze 4K.txt b/scr/模糊专家系统/scrape/scraped/YUNEEC Breeze 4K.txt new file mode 100644 index 0000000..2186c17 --- /dev/null +++ b/scr/模糊专家系统/scrape/scraped/YUNEEC Breeze 4K.txt @@ -0,0 +1,96 @@ +{ + "id": 1152, + "price": 380, + "year": "2016", + "brand": "YUNEEC", + "rankDxo": 34, + "rankColor": 19, + "rankDyn": 10.7, + "rankLln": 69, + "rankDxo_ranking": 351, + "rankColor_ranking": 346, + "rankDyn_ranking": 311, + "rankLln_ranking": 355, + "name": "YUNEEC Breeze 4K", + "pixelDepth": 13, + "sensor": "sensor_compact_1over3", + "type": "drone", + "status": "TESTED", + "launchDate": "Aug. 2016", + "launchDateGraph": "2016-08-30", + "sensorraw": 12.98, + "link": "/Cameras/YUNEEC/Breeze-4K", + "chapo": null, + "linkReview": null, + "maximum_iso": 0, + "raw_format": "no", + "autofocus": "no", + "resolutionvideo": 0, + "flash": "no", + "video": "no", + "waterproof": "no", + "image": "//cdn.dxomark.com/dakdata/xml/Breeze_4K/vignette3.png", + "Type": " ", + "Announced": "Aug. 2016  ", + "Indicative price (USD)": "\n 380  \n ", + "Sensor type ": "CMOS  ", + "Resolution ": "\n 4160 x 3120  \n ", + "Sensor photo detectors (Mpix) ": "12.98  ", + "Sensor size (mm)": "3.5 x 4.7 ", + "Color filter array": "RGB ", + "Pixel pitch (µm)": "\n  ", + "Bits per pixel": "14.0", + "Focal length multiplier": "7.38 ", + "Aspect Ratio": "4:3 ", + "ISO latitude ": "100 - 12800 ", + "Shutter type": "Electronic ", + "Fastest - Slowest speed (s)": "1/8000 - 8.0  ", + "Frame rate (fps)": "  ", + "Live view ": "Yes ", + "Stabilization ": "Yes ", + "Firmware": " ", + "Dust cleaning": "No ", + "Mount type": "Drone  ", + "Weight (gr)": " ", + "Battery type": "LiPo, 1150mAh ", + "Battery weight (gr)": " ", + "Tropicalization": "No ", + "Camera material": "Mixed Plastic/Metal ", + "Mount material": " ", + "View finder type": "No viewfinder ", + "View finder magnification": "0 ", + "View finder coverage": "0 ", + "Mirror lockup": "No ", + "View finder diopter": "No ", + "Monitor type": "No ", + "Monitor size": "0 ", + "Monitor pixel": "0 ", + "Articulated screen": "No ", + "Touch screen": "No ", + "Contrast screen": " ", + "Low-pass filter": " ", + "Focus mode": "No ", + "Autofocus modes": " ", + "Number of autofocus points": "0 ", + "Exposure bracketing": " ", + "Exposure compensation": " ", + "Drive modes": "single ", + "Buffer size": " ", + "Recording medium": "Micro-SD ", + "Image format": "JPG, RAW ", + "White balance bracketing": "No ", + "Connectivity": "USB/WI-FI ", + "Bluetooth": "No ", + "3G": "No ", + "Sound recording": "Yes ", + "External micro": " ", + "Histogram": " ", + "GPS": " ", + "Video": "Yes ", + "Maximum format image video": "3840 x 2160 30 fps ", + "Full HD": "Yes ", + "Live autofocus": " ", + "Video file format": " ", + "Video codec": " ", + "Video stabilisation": "Yes " +} \ No newline at end of file