Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
AmpScan
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Joshua Steer
AmpScan
Commits
71f09db4
Commit
71f09db4
authored
7 years ago
by
Joshua Steer
Browse files
Options
Downloads
Patches
Plain Diff
Updated the pip install methods
parent
8a34d936
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
AmpScan/__init__.py
+3
-0
3 additions, 0 deletions
AmpScan/__init__.py
GUIs/surrogateModelGUI_2.py
+2
-3
2 additions, 3 deletions
GUIs/surrogateModelGUI_2.py
setup.py
+5
-5
5 additions, 5 deletions
setup.py
with
10 additions
and
8 deletions
AmpScan/__init__.py
+
3
−
0
View file @
71f09db4
...
...
@@ -5,3 +5,6 @@ Created on Thu Dec 15 13:50:41 2016
@author: js22g12
"""
from
.core
import
AmpObject
from
.registration
import
*
from
.ampVis
import
vtkRenWin
,
qtVtkWindow
\ No newline at end of file
This diff is collapsed.
Click to expand it.
GUIs/surrogateModelGUI_2.py
+
2
−
3
View file @
71f09db4
...
...
@@ -5,14 +5,13 @@ Created on Tue Oct 10 16:21:12 2017
@author: js22g12
"""
import
AmpScan
import
sys
import
copy
import
numpy
as
np
from
scipy.special
import
binom
from
scipy.interpolate
import
interp1d
from
AmpScan
.core
import
AmpObject
from
AmpScan
.ampVis
import
qtVtkWindow
from
AmpScan
import
AmpObject
from
AmpScan
import
qtVtkWindow
from
PyQt5.QtWidgets
import
(
QAction
,
QApplication
,
QGridLayout
,
QMainWindow
,
QFileDialog
,
QWidget
,
QSlider
,
QGroupBox
,
QVBoxLayout
,
QHBoxLayout
,
QLabel
)
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
5
−
5
View file @
71f09db4
...
...
@@ -5,7 +5,7 @@ Created on Thu Dec 15 13:43:43 2016
@author: js22g12
"""
from
setuptools
import
setup
from
setuptools
import
setup
,
find_packages
def
readme
():
...
...
@@ -14,15 +14,15 @@ def readme():
setup
(
name
=
'
AmpScan
'
,
version
=
'
2017.1
1
'
,
version
=
'
0.
1
'
,
description
=
(
'
Package for analysis of
'
'
surface scan data of residual limbs
'
),
long_description
=
readme
(),
author
=
'
Joshua Steer
'
,
author_email
=
'
Joshua.Steer@soton.ac.uk
'
,
license
=
'
MIT
'
,
packages
=
[
'
AmpScan
'
,
],
install_requires
=
[
'
numpy
'
,
'
pandas
'
,
'
matplotlib
'
,
'
scipy
'
,
'
sphinxcontrib-napoleon
'
,
'
vtk
'
],
package_data
=
{
'
example_stl
'
:
'
01_PhantomShell_ICEM_3mm.stl
'
},
packages
=
[
'
AmpScan
'
],
install_requires
=
[
'
numpy
'
,
'
pandas
'
,
'
matplotlib
'
,
'
scipy
'
,
'
sphinxcontrib-napoleon
'
],
package_data
=
{},
include_package_data
=
True
,
zip_safe
=
False
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment