-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from msthoma/null_safety
Null safety
- Loading branch information
Showing
41 changed files
with
2,722 additions
and
3,034 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.ipynb inguist-detectable=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
# modern_art_app | ||
# Mobile app for the Cypriot National Gallery of Modern Art | ||
|
||
A Flutter application for the Cypriot National Gallery of Modern Art. | ||
The repository contains the source code for a cross-platform mobile app (built using Flutter) for | ||
the [Cypriot National Gallery of Modern Art](https://www.nicosia.org.cy/en-GB/discover/picture-galleries/state-gallery-of-contemporary-art/) | ||
in Nicosia, Cyprus. | ||
|
||
The app was built by the [BIO-SCENT](https://bioscent.cyens.org.cy/) research group at | ||
the [CYENS Centre of Excellence](https://www.cyens.org.cy), as part of the study _"A systematic | ||
approach for developing a robust artwork recognition framework using smartphone cameras"_ (currently | ||
under review). | ||
|
||
The app is able to automatically identify a number of artworks at the Gallery through the use of | ||
computer vision, and display details about them to the user. The artwork identification is performed | ||
on-device, using a Convolutional Neural Network (CNN) that trained using transfer learning on | ||
MobileNet V2. | ||
|
||
![App screenshots](assets/app_screenshots.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This file configures the analyzer to use the lint rule set from `package:lint` | ||
|
||
# For apps, use the default set | ||
include: package:lint/analysis_options.yaml | ||
|
||
# Packages, that may be distributed (i.e. via pub.dev) should use the package | ||
# version, resulting in a better pub score. | ||
# include: package:lint/analysis_options_package.yaml | ||
|
||
# You might want to exclude auto-generated files from dart analysis | ||
analyzer: | ||
exclude: | ||
#- '**.freezed.dart' | ||
|
||
# A list of all rules can be found at https://dart-lang.github.io/linter/lints/options/options.html | ||
linter: | ||
rules: | ||
# avoid_classes_with_only_static_members: false | ||
|
||
# Make constructors the first thing in every class | ||
sort_constructors_first: true | ||
|
||
# Choose wisely, but you don't have to | ||
prefer_single_quotes: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.