Skip to main content

Research Essay - draft


This is what I have written in my Essay so far. I am trying to make a habit of using footnotes, which I found very useful as them can save me some space in my short piece of writing.

Essay (Without footnotes):

Recently, I have done my research, which is about Google Vision API  and a programming language, which is C# . During this term, I am looking to develop a software that will be able to recognise fruits with Vision API. In addition, there will be a comparison of making an Artificial Intelligence and using Google Cloud API as AI , furthermore, I will explain why I chose to AI provided by Google instead of making a new one. This essay will be about making a fruit recognition program with Google Cloud platform and C# and about reasons why it is better to use AI that already exist instead of making one.

Firstly, it is important to realize what is an Artificial Intelligence, before you decide to make a program using AI. Artificial Intelligence is algorithm made by a human, which is used by the processor to process data and learn from this data. Such algorithm can be trained in many possible ways and in the outcome, it can provide to user advanced recognition technics, however, it takes many hours to train complex program like this. Therefore, I decided to use Google Cloud Vision API, which is complex solution ready and easy to use by programmers.

Secondly, to design software it is necessary to use a programming language that is easy to understand for whoever wants to use it. Accordingly, I decided to use a programming language from Microsoft.Net platform, which is C#. This programming language is easy to use for someone who was using C/C++  before, as C# is a mid-level  programming language.


Comments

  1. In your footnotes, could you give the reader a little more information to show wider reading? For instance, when did the phrase AI come into existence? Who invented the term (if there was a specific person as a main associate)? This shows a much higher level of academic practice and gives you scope in your presentation to expand on your subject and theme.
    Please remember that you need to have a full set of references at the end of your essay and in your presentation that must be DMU Harvard Referencing.

    ReplyDelete

Post a Comment

Popular posts from this blog

Survey results and analysis + SWOT Analysis

In the last weeks I have created a survey to gather informations, which can potentially give me some ideas about my software and how I can improve it in order to fulfil expectations of potential clients. To analyse all of data gathered I used charts that were generated automatically in the Google Forms and SWOT Analysis of data in charts. In the first part of my survey I am asking respondents about themselves do predict if there are any chances that they are on some higher positions in companies that they are working for. The variation of both higher age and higher education - age 30+ and bachelors level of education and above makes possibilities that the respondent is currently on some higher position. I decided to use this variation instead of asking respondent directly, because I am aware of that maybe not everyone want to share such information with survey even if they are anonymous. As we are able to see on the chart there is an impressive number of people who have educati...

Back-end of application - C# and the Google Vision API

In this post I will be writing about following: Connecting the Google Cloud Vision API to C#, benefits of using this API, why I choose the Vision API, code written to make my software working, bugs that I need to solve in future versions Connecting API to C# To use Google Cloud API's we need to configure and download account credential '*.JSON' file. To work with the Google Vision API we need also to reconfigure our windows settings by adding path of JSON file to our environmental variables, which you can see below As we finish adding our environmental variable we can go further to the next step, which is preparing our programming language to work with API, in this case C#. Firstly, I have downloaded NuGet Google Cloud package to work it Secondly, after we configured everything successful we can import Google package to call it after in code. To do that in C# we need following 'using' statement With this last step I am fully configure...