Skip to main content

Computer ethics

As I am making a software, which will be about artificial intelligence and also as this is software, which someone else need to download I am considering the following:


  • My software should not interfere with my potential users computer. As I am using an AI provided by google, so I do not need to save files as outcome from my program. The one and only thing I need is access to pictures and to the internet to connect with API.
  • My program should contain some sort of protection to avoid users to share the documents from the computer and other private data. Also the connection between users computer, my fruit recognition program and Google Vision API should be encrypted, however not necessarily as there are only fruits to recognise, but if for eg. I will be willing to make a program, which recognised level of someones smile, so that kind of data should be encrypted as we are using someones face.
  •  My application also should not use users data like password and users name and fortunately there is no need to store that kind of private data in my software 

Comments

  1. Great context to your own project and the issues you may face in your software development. Could you give the actual commandment that fits these points? Although you are using fruit as part of your recognition program, it is good to think about the future development, as it may then be used for facial recognition, as an example.

    ReplyDelete
  2. Thank you Carrie for your comment. I recently added a new blog post in which I am writing more information about my future app development. Also I added some information about bugs I have faced in my software. To read more check the following link - https://patryklipc.blogspot.co.uk/2018/05/fruit-recognition-simple-gui.html or simply go to my blog post called Fruit Recognition Simple GUI

    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...