image_to_pixels Subroutine

private impure subroutine image_to_pixels(this, image_name, file_name)

Type Bound

pixel

Arguments

Type IntentOptional Attributes Name
class(pixel), intent(inout) :: this
character(len=*), intent(in) :: image_name
character(len=*), intent(in) :: file_name

Called by

proc~~image_to_pixels~~CalledByGraph proc~image_to_pixels forsvd::pixel%image_to_pixels program~test5 test5 program~test5->proc~image_to_pixels

Source Code

   impure subroutine image_to_pixels(this, image_name, file_name)
      class(pixel), intent(inout) :: this
      character(*), intent(in)    :: image_name
      character(*), intent(in)    :: file_name
      integer :: i, nunit

      call execute_command_line('python pixel/image_to_pixels.py')

   end subroutine image_to_pixels